1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
\name{clmm.control}
\alias{clmm.control}
%- Also NEED an '\alias' for EACH other topic documented here.
\title{
Set control parameters for cumulative link mixed models
}
\description{
Set control parameters for cumulative link mixed models
}
\usage{
clmm.control(method = c("nlminb", "ucminf", "model.frame"), ..., trace = 0,
maxIter = 50, gradTol = 1e-4, maxLineIter = 50, useMatrix = FALSE,
innerCtrl = c("warnOnly", "noWarn", "giveError"),
checkRanef = c("warn", "error", "message"))
}
%- maybe also 'usage' for other objects documented here.
\arguments{
\item{method}{
the optimizer used to maximize the marginal likelihood function.
}
\item{\dots}{control arguments passed on to the optimizer; see
\code{\link[ucminf]{ucminf}} for details.
\code{ucminf} for details.
}
\item{trace}{numerical, if > 0 information is printed about and during
the outer optimization process, if < 0 information is also printed
about the inner optimization process. Defaults to \code{0}.
}
\item{maxIter}{the maximum number of Newton updates of the inner
optimization. \code{50}.
}
\item{gradTol}{the maximum absolute gradient of the inner
optimization.
}
\item{maxLineIter}{the maximum number of step halfings allowed if
a Newton(-Raphson) step over shoots during the inner optimization.
}
\item{useMatrix}{if \code{TRUE}, a general implementation of the
Laplace approximation using the Matrix package is used, while if
\code{FALSE} (default), a C implementation of the Laplace
approximation valid only for models with a single random effects
term is used when possible.
\code{TRUE} is not valid for models fitted with quadrature methods.
}
\item{innerCtrl}{the use of warnings/errors if the inner optimization
fails to converge.
}
\item{checkRanef}{the use of message/warning/error if there are more random
effects than observations.
}
}
\value{
a list of control parameters
}
\author{
Rune Haubo B Christensen
}
\seealso{
\code{\link{clmm}}
}
\keyword{models}
|