lme4 (version 1.0-4)

mkdevfun: Create a deviance evaluation function from a predictor and a response module

Description

From an merMod object create an R function that takes a single argument, which is the new parameter value, and returns the deviance.

Usage

mkdevfun(rho, nAGQ = 1L, verbose = 0, control = list())

Arguments

rho
an environment containing pp, a prediction module, typically of class merPredD and resp, a response module, e.g., of class lmerResp.
nAGQ
scalar integer - the number of adaptive Gauss-Hermite quadrature points. A value of 0 indicates that both the fixed-effects parameters and the random effects are optimized by the iteratively reweighted least squares algorithm.
verbose
Logical: print verbose output?
control
list of control parameters, a subset of those specified by lmerControl (tolPwrss and compDev for GLMMs, tolPwrss for NLMMs)

Value

  • A function of one numeric argument.

Details

The function returned by mkdevfun evaluates the deviance of the model represented by the predictor module, pp, and the response module, resp.

For lmer model objects the argument of the resulting function is the variance component parameter, theta, with lower bound. For glmer or nlmer model objects with nAGQ = 0 the argument is also theta. However, when nAGQ > 0 the argument is c(theta, beta).

See Also

lmer, glmer and nlmer

Examples

Run this code
(dd <- lmer(Yield ~ 1|Batch, Dyestuff, devFunOnly=TRUE))
dd(0.8)
minqa::bobyqa(1, dd, 0)

Run the code above in your browser using DataCamp Workspace