autoplot.feglm | R Documentation |
Extracts the estimated coefficients and their confidence intervals.
Extracts the estimated coefficients and their confidence
## S3 method for class 'feglm'
autoplot(object, ...)
## S3 method for class 'felm'
autoplot(object, ...)
object |
A fitted model object. |
... |
Additional arguments passed to the method. In this case,
the additional argument is |
A ggplot object with the estimated coefficients and their confidence intervals.
A ggplot object with the estimated coefficients and their confidence intervals.
mod <- fepoisson(mpg ~ wt + drat | cyl, mtcars)
autoplot(mod, conf_level = 0.99)
mod <- felm(mpg ~ wt + drat | cyl, mtcars)
autoplot(mod, conf_level = 0.90)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.