tidy.bboufit | R Documentation |
Get a tidy tibble of the coefficient estimates and confidence intervals from Bayesian model fit.
## S3 method for class 'bboufit'
tidy(
x,
conf_level = 0.95,
estimate = median,
sig_fig = 3,
include_random_effects = TRUE,
...
)
x |
The object. |
conf_level |
A number between 0 and 1 of the confidence level. |
estimate |
A function to calculate the estimate. |
sig_fig |
A whole number of the significant figures to round estimates by. |
include_random_effects |
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.
coef.bboufit()
Other generics:
augment.bboufit()
,
augment.bboufit_ml()
,
glance.bboufit()
,
glance.bboufit_ml()
,
tidy.bboufit_ml()
if (interactive()) {
fit <- bb_fit_survival(bboudata::bbousurv_a)
tidy(fit)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.