Returns a tibble with confidence intervals for all parameters from a bootstrapping
object estimated with the boot()
function.
tidy_boot_ci(
obj,
indices = NULL,
type = c("norm", "basic", "stud", "perc", "bca"),
conf = 0.95,
term_names = NULL,
...
)
An object of class boot
.
The column numbers of obj$t
to be used in the calculation.
if NULL
, all columns are used.
The type of confidence interval to be produced. Unlike boot.ci()
,
"all" is not an option.
The confidence level to be used for the interval.
The names of the parameters to be used as identifiers in the tibble.
Other arguments to be passed down to boot.ci()
A tibble with the term name, estimate, lower and upper confidence bounds.