Print a gls Object
Usage
print(x, ...)
Arguments
x
|
an object inheriting from class gls, representing
a generalized least squares fitted linear model.
|
...
|
optional arguments passed to print.default; see
the documentation on that method function.
|
Description
Information describing the fitted linear model represented by x
is printed. This includes the coefficients, correlation and variance
function parameters, if any are present, and the residual standard
error.Author(s)
Jose Pinheiro and Douglas BatesSee Also
gls, print.summary.glsExamples
library(lme)
data(Ovary)
fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary,
correlation = corAR1(form = ~ 1 | Mare))
print(fm1)