confint.LmME | R Documentation |
Confidence intervals for model parameters on their original scale,
optionally consistent with the linear mixed-model specification.
When as.lm = TRUE
, only Wald CIs are available.
## S3 method for class 'LmME'
confint(
object,
parm = NULL,
level = 0.95,
as.lm = FALSE,
pargroup = c("all", "fixef", "ranef"),
type = c("Wald", "wald", "profile"),
estimate = FALSE,
...
)
object |
An |
parm |
Names of the parameters to extract. |
level |
Confidence level. |
as.lm |
Logical. If |
pargroup |
The name of the parameter group to extract. With
|
type |
Type of the CI: either Wald or profile. |
estimate |
Logical, add the point estimates in a thrid column. |
... |
Optional parameters passed to |
A matrix with lower and upper bounds.
data("sleepstudy", package = "lme4")
fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy)
confint(fit) ## transformation model parameterization
confint(fit, as.lm = TRUE) ## LMM parameterization
confint(fit, as.lm = TRUE, pargroup = "fixef", estimate = TRUE)
confint(fit, as.lm = TRUE, parm = "(Sigma)") ## error SD
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.