nlme (version 3.1-1)

summary.nlsList: Summarize an nlsList Object

Description

The summary.nls method is applied to each nls component of object to produce summary information on the individual fits, which is organized into a list of summary statistics. The returned object is suitable for printing with the print.summary.nlsList method.

Usage

summary(object, pool)

Arguments

object
an object inheriting from class nlsList, representing a list of nls fitted objects.
pool
an optional logical value indicating whether a pooled estimate of the residual standard error should be used. Default is attr(object, "pool").

Value

  • a list with summary statistics obtained by applying summary.nls to the elements of object, inheriting from class summary.nlsList. The components of value are:
  • calla list containing an image of the nlsList call that produced object.
  • parametersa three dimensional array with summary information on the nls coefficients. The first dimension corresponds to the names of the object components, the second dimension is given by "Value", "Std. Error", "t value", and "Pr(>|t|)", corresponding, respectively, to the coefficient estimates and their associated standard errors, t-values, and p-values. The third dimension is given by the coefficients names.
  • correlationa three dimensional array with the correlations between the individual nls coefficient estimates. The first dimension corresponds to the names of the object components. The third dimension is given by the coefficients names. For each coefficient, the rows of the associated array give the correlations between that coefficient and the remaining coefficients, by nls component.
  • cov.unscaleda three dimensional array with the unscaled variances/covariances for the individual lm coefficient estimates (giving the estimated variance/covariance for the coefficients, when multiplied by the estimated residual errors). The first dimension corresponds to the names of the object components. The third dimension is given by the coefficients names. For each coefficient, the rows of the associated array give the unscaled covariances between that coefficient and the remaining coefficients, by nls component.
  • dfan array with the number of degrees of freedom for the model and for residuals, for each nls component.
  • df.residualthe total number of degrees of freedom for residuals, corresponding to the sum of residuals df of all nls components.
  • poolthe value of the pool argument to the function.
  • RSEthe pooled estimate of the residual standard error.
  • sigmaa vector with the residual standard error estimates for the individual lm fits.

See Also

nlsList, summary.nls

Examples

Run this code
data(Loblolly)
fm1 <- nlsList(SSasymp, Loblolly)
summary(fm1)

Run the code above in your browser using DataLab