| summary.gls {nlme} | R Documentation | 
Additional 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 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
fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary,
           correlation = corAR1(form = ~ 1 | Mare))
summary(fm1)