ranef(object, ...)
## S3 method for class 'lmer':
ranef(object, postVar, \dots)
FALSE
. If postVar
is TRUE
each of the data frames has an
attribute called "postVar"
which is a three-dimensional array
with symmetric faces.
ranef
is a data frame with k
rows and j columns. If postVar
is TRUE
the
"postVar"
attribute is an array of dimension j by j by k. The
kth face of this array is a positive definite symmetric j by j
matrix. If there is only one grouping factor in the model the
variance-covariance matrix for the entire random effects vector,
conditional on the estimates of the model parameters and on the data
will be block diagonal and this j by j matrix is the kth diagonal block.
With multiple grouping factors the faces of the "postVar"
attributes are still the diagonal blocks of this conditional
variance-covariance matrix but the matrix itself is no longer block
diagonal.data(sleepstudy)
fm1 <- lmer(Reaction ~ Days + (Days|Subject), sleepstudy)
fm2 <- lmer(Reaction ~ Days + (1|Subject) + (0+Days|Subject), sleepstudy)
ranef(fm1)
str(rr1 <- ranef(fm1, postVar = TRUE))
qqmath(rr1)
str(ranef(fm2, postVar = TRUE))
Run the code above in your browser using DataLab