extract.coef | R Documentation |
Extract Coefficient Information from glm Models
extract.coef(model, ...)
model |
Model object to extract information from. |
... |
Further arguments |
Gets the coefficient values and standard errors, and variable names from a glm model.
A data.frame
containing the coefficient, the standard
error and the variable name.
Jared P. Lander
## Not run: library(ggplot2) data(diamonds) library(coefplot) mod1 <- lm(price ~ carat + cut + x, data=diamonds) mod2 <- glm(price > 10000 ~ carat + cut + x, data=diamonds, family=binomial(link="logit")) mod3 <- lm(price ~ carat*cut + x, data=diamonds) extract.coef(mod1) extract.coef(mod2) extract.coef(mod3) mod4 <- rxLinMod(price ~ carat*cut + x, diamonds) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.