coefplot.glm.Rd
Dotplot for glm coefficients
# S3 method for glm coefplot(...)
... | All arguments are passed on to |
---|
A ggplot object. See coefplot.lm
for more information.
A graphical display of the coefficients and standard errors from a fitted glm model
coefplot
is the S3 generic method for plotting the coefficients from a fitted model.
For more information on this function and it's arguments see coefplot.default
model2 <- glm(price > 10000 ~ carat + cut*color, data=diamonds, family=binomial(link="logit")) coefplot(model2)coefplot(model2, trans=invlogit)