confint_adjust
objectPrint an object of class confint_adjust
produced
by the confint_adjust
function.
# S3 method for confint_adjust
print(x, ...)
A data.frame
with columns term
,
lwr
, and upr
, which are the coefficients
for which inference is being made, and the lower and
upper bounds of the confidence intervals for each
coefficient, respectively.
An confint_adjust
object produced by the
confint_adjust
function.
Additional arguments to the
print.data.frame
function, such as
digits
.
Joshua French
fit <- lm(100/mpg ~ disp + hp + wt + am, data = mtcars)
(cia <- confint_adjust(fit))
print(cia, digits = 3)
Run the code above in your browser using DataLab