lme4 (version 1.1-18-1)

lmResp-class: Reference Classes for Response Modules, "(lm|glm|nls|lmer)Resp"

Description

Reference classes for response modules, including linear models, "lmResp", generalized linear models, "glmResp", nonlinear models, "nlsResp" and linear mixed-effects models, "lmerResp". Each reference class is associated with a C++ class of the same name. As is customary, the generator object for each class has the same name as the class.

Arguments

Extends

All reference classes extend and inherit methods from "'>envRefClass". Furthermore, "glmResp", "nlsResp" and "lmerResp" all extend the "lmResp" class.

See Also

lmer, glmer, nlmer, '>merMod.

Examples

Run this code
# NOT RUN {
showClass("lmResp")
str(lmResp$new(y=1:4))
showClass("glmResp")
str(glmResp$new(family=poisson(), y=1:4))
showClass("nlsResp")
showClass("lmerResp")
str(lmerResp$new(y=1:4))
# }

Run the code above in your browser using DataCamp Workspace