Tidy a cbmod object
# S3 method for cbmod
tidy(x, conf.int = FALSE, conf.level = 0.95, ...)Returns a tibble with the following columns:
term The coefficients name.
estimate The point estimates of the coefficients.
std.error Standard error of the regression coefficient estimates.
p.value P-values of the null hypothesis that the regression regression coefficient estimate is 0.
conf.low If conf.int = TRUE, the lower end of the confidence interval.
conf.highIf conf.int = TRUE, the upper end of the confidence interval.
A cbmod object.
Logical indicating whether or not to include a confidence interval in the tidied output. Defaults to FALSE.
The confidence level to use for the confidence interval if conf.int = TRUE. Defaults to 0.95, which corresponds to a 95 percent confidence interval.
Unused.