ranef.LmME {tramME} | R Documentation |
Extract the conditional modes of random effects of an LmME model
Description
The condVar
option is not implemented for ranef.LmME
.
Setting raw=TURE
will return the raw random effects estimates from
the transformation model parameterization.
Usage
## S3 method for class 'LmME'
ranef(object, as.lm = FALSE, ...)
Arguments
object |
A fitted LmME object. |
as.lm |
If |
... |
Optional parameters passed to |
Value
A numeric vector or a ranef.tramME
object depending on the inputs.
Examples
data("sleepstudy", package = "lme4")
fit <- LmME(Reaction ~ Days + (Days | Subject), data = sleepstudy)
ranef(fit, raw = TRUE) ## transformation model parameterization!
ranef(fit, as.lm = TRUE)
[Package tramME version 1.0.6 Index]