Rev 6563 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/summary.gls.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{summary.gls}\title{Summarize a Generalized Least Squares \code{gls} Object}\alias{summary.gls}%\alias{coef.summary.gls}\usage{\method{summary}{gls}(object, verbose, \dots)}\arguments{\item{object}{an object inheriting from class \code{"\link{gls}"}, representinga generalized least squares fitted linear model.}\item{verbose}{an optional logical value used to control the amount ofoutput when the object is printed. Defaults to \code{FALSE}.}\item{\dots}{some methods for this generic require additionalarguments. None are used in this method.}}\description{Additional information about the linear model fit representedby \code{object} is extracted and included as components of\code{object}.}\value{an object inheriting from class \code{summary.gls} with all componentsincluded in \code{object} (see \code{\link{glsObject}} for a fulldescription of the components) plus the following components:\item{corBeta}{approximate correlation matrix for the coefficientsestimates}\item{tTable}{a matrix with columns \code{Value},\code{Std. Error}, \code{t-value}, and \code{p-value} representingrespectively the coefficients estimates, their approximate standarderrors, the ratios between the estimates and their standard errors,and the associated p-value under a \eqn{t} approximation. Rowscorrespond to the different coefficients.}\item{residuals}{if more than five observations are used in the\code{gls} fit, a vector with the minimum, first quartile, median, thirdquartile, and maximum of the residuals distribution; else theresiduals.}\item{AIC}{the Akaike Information Criterion corresponding to\code{object}.}\item{BIC}{the Bayesian Information Criterion corresponding to\code{object}.}}\author{José Pinheiro and Douglas Bates \email{bates@stat.wisc.edu}}\seealso{\code{\link{AIC}},\code{\link{BIC}},\code{\link{gls}},\code{\link{summary}}}\examples{fm1 <- gls(follicles ~ sin(2*pi*Time) + cos(2*pi*Time), Ovary,correlation = corAR1(form = ~ 1 | Mare))summary(fm1)coef(summary(fm1)) # "the matrix"}\keyword{models}