Rev 2136 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% $Id: glsControl.Rd,v 1.8 2002/03/05 14:59:39 bates Exp $\name{glsControl}\title{Control Values for gls Fit}\usage{glsControl(maxIter, msMaxIter, tolerance, msTol, msScale, msVerbose,singular.ok, qrTol, returnObject, apVar, .relStep,nlmStepMax, minAbsParApVar, natural)}\alias{glsControl}\arguments{\item{maxIter}{maximum number of iterations for the \code{gls}optimization algorithm. Default is 50.}\item{msMaxIter}{maximum number of iterationsfor the optimization step inside the \code{gls}optimization. Default is 50.}\item{tolerance}{tolerance for the convergence criterion in the\code{gls} algorithm. Default is 1e-6.}\item{msTol}{tolerance for the convergence criterion in \code{ms},passed as the \code{rel.tolerance} argument to the function (seedocumentation on \code{ms}). Default is 1e-7.}\item{msScale}{scale function passed as the \code{scale} argument tothe \code{ms} function (see documentation on that function). Defaultis \code{lmeScale}.}\item{msVerbose}{a logical value passed as the \code{trace} argument to\code{ms} (see documentation on that function). Default is\code{FALSE}.}\item{singular.ok}{a logical value indicating whether non-estimablecoefficients (resulting from linear dependencies among the columns ofthe regression matrix) should be allowed. Default is \code{FALSE}.}\item{qrTol}{a tolerance for detecting linear dependencies among thecolumns of the regression matrix in its QR decomposition. Default is\code{.Machine$single.eps}.}\item{returnObject}{a logical value indicating whether the fittedobject should be returned when the maximum number of iterations isreached without convergence of the algorithm. Default is\code{FALSE}.}\item{apVar}{a logical value indicating whether the approximatecovariance matrix of the variance-covariance parameters should becalculated. Default is \code{TRUE}.}\item{.relStep}{relative step for numerical derivativescalculations. Default is \code{.Machine$double.eps^(1/3)}.}\item{nlmStepMax}{stepmax value to be passed to nlm. See\code{\link{nlm}} for details. Default is 100.0}\item{minAbsParApVar}{numeric value - minimum absolute parameter valuein the approximate variance calculation. The default is \code{0.05}.}\item{natural}{logical. Should the natural parameterization be usedfor the approximate variance calculations? Default is \code{TRUE}.}}\description{The values supplied in the function call replace the defaults and alist with all possible arguments is returned. The returned list isused as the \code{control} argument to the \code{gls} function.}\value{a list with components for each of the possible arguments.}\author{Jose Pinheiro \email{Jose.Pinheiro@pharma.novartis.com} and Douglas Bates \email{bates@stat.wisc.edu}}\seealso{\code{\link{gls}}, \code{\link{lmeScale}}}\examples{# decrease the maximum number iterations in the optimization call and# request that information on the evolution of the ms iterations be printedglsControl(msMaxIter = 20, msVerbose = TRUE)}\keyword{models}