Get a tibble of a one-row summary of the model fit.

# S3 method for class 'bboufit'
glance(x, rhat = 1.05, ...)

Arguments

x

The object.

rhat

A number greater than 1 of the maximum rhat value required for model convergence.

...

Unused parameters.

Value

A tibble of the glance summary.

Examples

if (interactive()) {
  fit <- bb_fit_survival(bboudata::bbousurv_a)
  glance(fit)
}