extract.coef.rxLinMod.Rd
Extract Coefficient Information from rxLinMod Models
# S3 method for rxLinMod extract.coef(model, ...)
model | Model object to extract information from. |
---|---|
... | Further arguments |
A data.frame
containing the coefficient, the standard error and the variable name.
Gets the coefficient values and standard errors, and variable names from an rxLinMod model.
if (FALSE) { require(ggplot2) data(diamonds) mod3 <- rxLinMod(price ~ carat + cut + x, data=diamonds) extract.coef(mod3) }