powered by
coef_matrix
Print an object of class coef_matrix produced by the coef_matrix function.
# S3 method for coef_matrix print(x, digits = 2, ...)
A \(p \times 4\) matrix with columns for the estimated coefficient, its standard error, t-statistic and corresponding (two-sided) p-value.
An coef_matrix object produced by the coef_matrix function.
the minimum number of significant digits to be used: see print.default.
print.default
Additional arguments to the print.data.frame function, such as digits.
print.data.frame
digits
Joshua French
fit <- lm(100/mpg ~ disp + hp + wt + am, data = mtcars) (coefm <- coef_matrix(fit)) # print more digits print(coefm, digits = 8)
Run the code above in your browser using DataLab