summary.lme {nlme} | R Documentation |
Additional information about the linear mixed-effects fit represented
by object
is extracted and included as components of
object
. The returned object is suitable for printing with the
print.summary.lme
method.
## S3 method for class 'lme' summary(object, adjustSigma, verbose, ...)
object |
an object inheriting from class |
adjustSigma |
an optional logical value. If |
verbose |
an optional logical value used to control the amount of
output in the |
... |
some methods for this generic require additional arguments. None are used in this method. |
an object inheriting from class summary.lme
with all components
included in object
(see lmeObject
for a full
description of the components) plus the following components:
corFixed |
approximate correlation matrix for the fixed effects estimates |
tTable |
a data frame with columns |
residuals |
if more than five observations are used in the
|
AIC |
the Akaike Information Criterion corresponding to
|
BIC |
the Bayesian Information Criterion corresponding to
|
Jose Pinheiro and Douglas Bates bates@stat.wisc.edu
AIC
,
BIC
,
lme
,
print.summary.lme
fm1 <- lme(distance ~ age, Orthodont, random = ~ age | Subject) summary(fm1)