Rev 6562 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/summary.nlsList.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{summary.nlsList}\title{Summarize an nlsList Object}\usage{\method{summary}{nlsList}(object, \dots)}\alias{summary.nlsList}\arguments{\item{object}{an object inheriting from class \code{"\link{nlsList}"},representing a list of \code{nls} fitted objects.}\item{\dots}{optional arguments to the \code{summary.lmList} method.One such optional argument is \code{pool}, a logical value indicatingwhether a pooled estimate of the residual standard error should beused. Default is \code{attr(object, "pool")}.}}\description{The \code{summary} function is applied to each \code{nls} component of\code{object} to produce summary information on the individual fits,which is organized into a list of summary statistics. The returnedobject is suitable for printing with the \code{print.summary.nlsList}method.}\value{a list with summary statistics obtained by applying \code{summary}to the elements of \code{object}, inheriting from class\code{summary.nlsList}. The components of \code{value} are:\item{call}{a list containing an image of the \code{nlsList} call thatproduced \code{object}.}\item{parameters}{a three dimensional array with summary informationon the \code{nls} coefficients. The first dimension corresponds tothe names of the \code{object} components, the second dimension isgiven by \code{"Value"}, \code{"Std. Error"}, \code{"t value"},and \code{"Pr(>|t|)"}, corresponding, respectively, to thecoefficient estimates and their associated standard errors,t-values, and p-values. The third dimension is given by thecoefficients names.}\item{correlation}{a three dimensional array with thecorrelations between the individual \code{nls} coefficientestimates. The first dimension corresponds to the names of the\code{object} components. The third dimension is given by thecoefficients names. For each coefficient, the rows of the associatedarray give the correlations between that coefficient and theremaining coefficients, by \code{nls} component.}\item{cov.unscaled}{a three dimensional array with the unscaledvariances/covariances for the individual \code{lm} coefficientestimates (giving the estimated variance/covariance for thecoefficients, when multiplied by the estimated residual errors). Thefirst dimension corresponds to the names of the \code{object}components. The third dimension is given by thecoefficients names. For each coefficient, the rows of the associatedarray give the unscaled covariances between that coefficient and theremaining coefficients, by \code{nls} component.}\item{df}{an array with the number of degrees of freedom for the modeland for residuals, for each \code{nls} component.}\item{df.residual}{the total number of degrees of freedom forresiduals, corresponding to the sum of residuals df of all \code{nls}components.}\item{pool}{the value of the \code{pool} argument to the function.}\item{RSE}{the pooled estimate of the residual standard error.}\item{sigma}{a vector with the residual standard error estimates forthe individual \code{lm} fits.}}\author{José Pinheiro and Douglas Bates \email{bates@stat.wisc.edu}}\seealso{\code{\link{nlsList}}, \code{\link{summary}}}\examples{fm1 <- nlsList(SSasymp, Loblolly)summary(fm1)}\keyword{models}