print.summary.gls {nlme}R Documentation

Print a summary.gls Object

Description

Information summarizing the fitted linear model represented by x is printed. This includes the AIC, BIC, and log-likelihood at convergence, the coefficient estimates and their respective standard errors, correlation and variance function parameters, if any are present, and the residual standard error.

Usage

print(x, verbose, digits, ...)

Arguments

x an object inheriting from class summary.gls, representing a summarized gls object.
verbose an optional logical value used to control the amount of printed output. Defaults to FALSE.
digits an optional integer value specifying the number of significant digits to print for numeric values. Defaults to options("digits"). Probably not used.
... optional arguments passed to print.default; see the documentation on that method function.

Author(s)

Jose Pinheiro Jose.Pinheiro@pharma.novartis.com and Douglas Bates bates@stat.wisc.edu

See Also

summary.gls, gls

Examples

data(Ovary)
fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary,
           correlation = corAR1(form = ~ 1 | Mare))
print(summary(fm1))

[Package Contents]