Calculates normal, basic, and percentile bootstrap confidence intervals
from a lmeresamp
object.
# S3 method for lmeresamp
confint(
object,
parm,
level = 0.95,
type = c("all", "norm", "basic", "perc"),
...
)
A tibble with columns term, estimate, lower, upper, type, and level.
The lmeresamp object for which confidence intervals should be computed.
not used
The level at which the confidence interval should be calculated.
A character string giving the type of confidence intervals that should be calculated.
This should be a subset of c("norm", "basic", "perc")
(for normal, basic, and percentile
bootstrap confidence intervals, respectively), or "all"
.
not used