summary.gls
Summarize a Generalized Least Squares 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 [email protected]
fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary, correlation = corAR1(form = ~ 1 | Mare)) summary(fm1) coef(summary(fm1)) # "the matrix"
Copyright (©) 1999–2012 R Foundation for Statistical Computing.
Licensed under the GNU General Public License.