quickle {aster} | R Documentation |
Penalized Quasi-Likelihood for Aster Models
Description
Evaluates the objective function for approximate maximum likelihood for an aster model with random effects. Uses Laplace approximation to integrate out the random effects analytically. The “quasi” in the title is a misnomer in the context of aster models but the acronym PQL for this procedure is well-established in the generalized linear mixed models literature.
Usage
quickle(alphanu, bee, fixed, random, obj, y, origin, zwz, deriv = 0)
Arguments
alphanu |
the parameter vector value where the function is evaluated, a numeric vector, see details. |
bee |
the random effects vector that is used as the starting point
for the inner optimization, which maximizes the penalized log likelihood
to find the optimal random effects vector matching |
fixed |
the model matrix for fixed effects. The number of rows
is |
random |
the model matrix or matrices for random effects.
The number of rows is |
obj |
aster model object, the result of a call to |
y |
response vector. May be omitted, in which case |
origin |
origin of aster model. May be omitted, in which case
default origin (see |
zwz |
A possible value of |
deriv |
Number of derivatives wanted, zero, one, or two. |
Details
Define
where is minus the log likelihood function of a saturated aster model,
where
is a known vector (the offset vector in the terminology
of
glm
but the origin in the terminology
of aster
),
where is a known matrix, the model matrix for fixed effects
(the argument
fixed
of this function),
where is a known matrix, the model matrix for random effects
(either the argument
random
of this function if it is a matrix or
Reduce(cbind, random)
if random
is a list of matrices),
where is a diagonal matrix whose diagonal is the vector
rep(nu, times = nrand)
where nrand
is sapply(random, ncol)
when random
is a list of
matrices and ncol(random)
when random
is a matrix,
where is an arbitrary symmetric positive semidefinite matrix
(
is the argument
zwz
of this function),
and where is the identity matrix.
Note that
is a function of
although the notation does not explicitly indicate this.
The argument alphanu
of this function is the concatenation
of the parameter vectors and
.
The argument
bee
of this function is a possible value of .
The length of
is the column dimension of
.
The length of
is the column dimension of
.
The length of
is the length of the argument
random
of this function if it is a list and is one otherwise.
Let denote the minimizer
of
considered as a function of
for fixed
and
, so
is a function of
and
.
This function evaluates
and its gradient vector and Hessian matrix (if requested).
Note that is a function of
and
although the notation does not explicitly indicate this.
Value
a list with some of the following components: value
, gradient
,
hessian
, alpha
, bee
, nu
. The first three are
the requested derivatives. The second three are the corresponding parameter
values: alpha
and nu
are the corresponding parts of the
argument alphanu
, the value of bee
is the result of the inner
optimization ( in the notation in details),
not the argument
bee
of this function.
Note
Not intended for use by naive users. Use summary.reaster
,
which calls it.
Examples
data(radish)
pred <- c(0,1,2)
fam <- c(1,3,2)
rout <- reaster(resp ~ varb + fit : (Site * Region),
list(block = ~ 0 + fit : Block, pop = ~ 0 + fit : Pop),
pred, fam, varb, id, root, data = radish)
alpha.mle <- rout$alpha
bee.mle <- rout$b
nu.mle <- rout$sigma^2
zwz.mle <- rout$zwz
obj <- rout$obj
fixed <- rout$fixed
random <- rout$random
alphanu.mle <- c(alpha.mle, nu.mle)
qout <- quickle(alphanu.mle, bee.mle, fixed, random, obj,
zwz = zwz.mle, deriv = 2)