Free Access Week-  Data Engineering + BI
Data engineering and BI courses are free!
Free AI Access Week from June 2-8

api2lm (version 0.2)

print.confint_adjust: Print confint_adjust object

Description

Print an object of class confint_adjust produced by the confint_adjust function.

Usage

# S3 method for confint_adjust
print(x, ...)

Value

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.

Arguments

x

An confint_adjust object produced by the confint_adjust function.

...

Additional arguments to the print.data.frame function, such as digits.

Author

Joshua French

Examples

Run this code
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