Get a tidy tibble of the coefficient estimates and confidence intervals from Maximum Likelihood model fit.
# S3 method for class 'bboufit_ml'
tidy(x, conf_level = 0.95, sig_fig = 3, include_random_effects = TRUE, ...)
The object.
A number between 0 and 1 of the confidence level.
A whole number of the significant figures to round estimates by.
A flag indicating whether to include random effects in coefficient table. Standard deviation estimates will always be included.
Unused parameters.
A tibble of the tidy coefficient summary.
Other generics:
augment.bboufit()
,
augment.bboufit_ml()
,
glance.bboufit()
,
glance.bboufit_ml()
,
tidy.bboufit()
if (interactive()) {
fit <- bb_fit_survival_ml(bboudata::bbousurv_a)
tidy(fit)
}