Class "lmList4"
is an S4 class with basically a
list
of objects of class lm
with a common
model (but different data); see lmList()
which returns
these.
Package nlme's lmList()
returns objects of
S3 class "lmList"
and provides methods for them, on which our
methods partly build.
Objects can be created by calls of the form
new("lmList4", ...)
or, more commonly, by a call to
lmList()
.
A dozen methods
are provided. Currently, S4
methods for show
, coercion (as(.,.)
) and
others inherited via "list"
, and S3 methods for
coef
, confint
, fitted
,
fixef
, formula
, logLik
,
pairs
, plot
, predict
,
print
, qqnorm
, ranef
,
residuals
, sigma
, summary
,
and update
.
returns the standard deviation
pool = FALSE
was used in the fit).
# NOT RUN {
if(getRversion() >= "3.2.0") {
(mm <- methods(class = "lmList4"))
## The S3 ("not S4") ones :
mm[!attr(mm,"info")[,"isS4"]]
}
## For more examples: example(lmList) i.e., ?lmList
# }
Run the code above in your browser using DataLab