summary.gls | R Documentation |
gls
ObjectAdditional information about the linear model fit represented
by object
is extracted and included as components of
object
.
## S3 method for class 'gls'
summary(object, verbose, ...)
object |
an object inheriting from class |
verbose |
an optional logical value used to control the amount of
output when the object is printed. Defaults to |
... |
some methods for this generic require additional arguments. None are used in this method. |
an object inheriting from class summary.gls
with all components
included in object
(see glsObject
for a full
description of the components) plus the following components:
corBeta |
approximate correlation matrix for the coefficients estimates |
tTable |
a matrix 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
|
José Pinheiro and Douglas Bates bates@stat.wisc.edu
AIC
,
BIC
,
gls
,
summary
fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary,
correlation = corAR1(form = ~ 1 | Mare))
summary(fm1)
coef(summary(fm1)) # "the matrix"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.