buildModelCI {coefplot} | R Documentation |
buildModelCI
Description
Construct Confidence Interval Values
Usage
buildModelCI(model, ...)
Arguments
model |
A Fitted model such as from lm, glm |
... |
Arguments passed on onto other methods |
Details
Takes a model and builds a data.frame holding the coefficient value and the confidence interval values.
Value
A data.frame
listing coefficients and confidence bands.
Author(s)
Jared P. Lander
See Also
Examples
data(diamonds)
model1 <- lm(price ~ carat + cut, data=diamonds)
coefplot:::buildModelCI(model1)
coefplot(model1)
[Package coefplot version 1.2.8 Index]