coefplot (version 1.2.7)

coefplot.rxGlm: coefplot.rxGlm

Description

Dotplot for rxGlm coefficients

Usage

# S3 method for rxGlm
coefplot(...)

Arguments

All arguments are passed on to coefplot.default. Please see that function for argument information.

Value

A ggplot object. See coefplot.lm for more information.

Details

A graphical display of the coefficients and standard errors from a fitted rxGlm 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

Examples

Run this code
# NOT RUN {
# }
# NOT RUN {
mod4 <- rxGlm(price ~ carat + cut + x, data=diamonds)
mod5 <- rxGlm(price > 10000 ~ carat + cut + x, data=diamonds, family="binomial")
coefplot(mod4)
coefplot(mod5)
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace