VarCorr.LmME {tramME} | R Documentation |
Variances and correlation matrices of random effects of an LmME object
Description
The returned parameters are the transformed versions of the original parameters that correspond to the normal linear mixed model parameterization.
Usage
## S3 method for class 'LmME'
VarCorr(x, sigma = 1, as.lm = FALSE, ...)
Arguments
x |
An |
sigma |
Standard deviation of the error term in the LMM parameterization (should not be set manually, only for consistency with the generic method) |
as.lm |
If |
... |
Optional arguments (for consistency with generic) |
Details
The function only returns the correlation matrices that belong to actual random effects
(defined for groups in the data) and ignores the random effects parameters of the smooth
shift terms. To extract these, the user should use varcov
with full = TRUE
.
Value
A list of vectors with variances and correlation matrices corresponding to the various grouping variables.
Examples
data("sleepstudy", package = "lme4")
fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy)
VarCorr(fit) ## tranformation model parameterization
VarCorr(fit, as.lm = TRUE) ## LMM parameterization