An optional vector of parameter values in the structure
(beta, theta).
newdata
An optional data.frame of new observations for which the
new random effects values are predicted.
condVar
If TRUE, include the conditional variances as attributes.
raw
Return the unformatted RE estimates as fitted by the model.
...
Optional arguments (for consistency with generic)
Value
Depending on the value of raw, either a numeric vector or a
ranef.tramME object which contains the conditional mode and variance
estimates by grouping factors.
# NOT RUN {data("sleepstudy", package = "lme4")
fit <- BoxCoxME(Reaction ~ Days + (Days | Subject), data = sleepstudy, order = 5)
ranef(fit, raw = TRUE)
ranef(fit)
# }