Learn R Programming

lmeresampler (version 0.2.4)

confint.lmeresamp: Calculate confidence intervals for a lmeresamp object

Description

Calculates normal, basic, and percentile bootstrap confidence intervals from a lmeresamp object.

Usage

# S3 method for lmeresamp
confint(
  object,
  parm,
  level = 0.95,
  type = c("all", "norm", "basic", "perc"),
  ...
)

Value

A tibble with columns term, estimate, lower, upper, type, and level.

Arguments

object

The lmeresamp object for which confidence intervals should be computed.

parm

not used

level

The level at which the confidence interval should be calculated.

type

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