Rev 6562 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File nlme/man/allCoef.Rd% Part of the nlme package for R% Distributed under GPL 2 or later: see nlme/LICENCE.note\name{allCoef}\title{Extract Coefficients from a Set of Objects}\usage{allCoef(\dots, extract)}\alias{allCoef}\arguments{\item{\dots}{objects to which \code{extract} will be applied. Generallythese will be model components, such as \code{corStruct} and\code{varFunc} objects.}\item{extract}{an optional extractor function. Defaults to \code{coef}.}}\description{The extractor function is applied to each object in \code{\dots}, withthe result being converted to a vector. A \code{map} attribute isincluded to indicate which pieces of the returned vector correspond tothe original objects in \code{dots}.}\value{a vector with all elements, generally coefficients, obtained byapplying \code{extract} to the objects in \code{\dots}.}\author{José' Pinheiro and Douglas Bates}\seealso{\code{\link{lmeStruct}},\code{\link{nlmeStruct}}}\examples{cs1 <- corAR1(0.1)vf1 <- varPower(0.5)allCoef(cs1, vf1)}\keyword{models}