cat_bayes
ModelThis function prints a formatted summary of a cat_bayes
model object, displaying
key parameters and settings of the fitted model, including the formula,
covariate dimensions, tau (if applicable), family, and algorithm settings,
as well as the coefficients' summary.
# S3 method for cat_bayes
print(x, digit = 3, detail = TRUE, ...)
The x
object is returned invisibly.
An object of class cat_tune
, typically resulting from a tuning process, including
cat_glm_bayes
, cat_glm_bayes_joint
, cat_cox_bayes
and cat_cox_bayes_joint
.
An integer indicating the number of decimal places for printing coefficient estimates. Default is 3.
A logical value indicating whether to include additional detailed output at the end of the summary.
If TRUE
, it will print additional interpretation help.
Additional parameters to pass to other functions.
This function provides an organized printout of essential details from a Bayesian
model fit. It includes the model formula, dimensionality of covariates, model
family, Stan algorithm settings, and summary of the model coefficients. If
detail
is set to TRUE
, additional information on interpreting the
output is included.