A crucial problem for inference about non-linear models with random effects is that the likelihood function for such models involves integrals for which no analytical solution exists.
For given values b of the random effects the likelihood function of a conditional logit model (and therefore also of a baseline-logit model) can be written in the form
$$ \mathcal{L}_{\text{cpl}}(\boldsymbol{y},\boldsymbol{b}) = \exp\left(\ell_{\text{cpl}}(\boldsymbol{y},\boldsymbol{b})\right) =\exp \left( \ell(\boldsymbol{y}|\boldsymbol{b};\boldsymbol{\alpha}) -\frac12\ln\det(\boldsymbol{\Sigma}) -\frac12\boldsymbol{b}'\boldsymbol{\Sigma}^{-1}\boldsymbol{b} \right) $$
However, this “complete data” likelihood function cannot be used for inference, because it depends on the unobserved random effects. To arrive at a likelihood function that depends only on observed data, one needs to used the following integrated likelihood function:
$$ \mathcal{L}_{\text{obs}}(\boldsymbol{y}) = \int \exp\left(\ell_{\text{cpl}}(\boldsymbol{y},\boldsymbol{b})\right) \partial \boldsymbol{b} = \int \exp \left( \ell(\boldsymbol{y}|\boldsymbol{b};\boldsymbol{\alpha}) -\frac12\ln\det(\boldsymbol{\Sigma}) -\frac12\boldsymbol{b}'\boldsymbol{\Sigma}^{-1}\boldsymbol{b} \right) \partial \boldsymbol{b} $$
In general, this integral cannot be “solved”, i.e. eliminated from the formula by analytic means (it is “analytically untractable”). Instead, one will compute it either using numeric techniques (e.g. using numerical quadrature) or approximate it using analytical techniques. Unless there is only a single level of random effects numerical quadrature can become computationally be demanding, that is, the computation of the (log-)likelihood function and its derivatives can take a lot of time even on modern, state-of-the-art computer hardware. Yet approximations based on analytical techniques hand may lead to biased estimates in particular in samples where the number of observations relative to the number of random offects is small, but at least they are much easier to compute and sometimes making inference possible after all.
The package “mclogit” supports to kinds of analytical approximations, the Laplace approximation and what one may call the Solomon-Cox appoximation. Both approximations are based on a quadratic expansion of the integrand so that the thus modified integral does have a closed-form solution, i.e. is analytically tractable.
The (first-order) Laplace approximation is based on the quadratic expansion the logarithm of the integrand, the complete-data log-likelihood
$$ \ell_{\text{cpl}}(\boldsymbol{y},\boldsymbol{b})\approx \ell(\boldsymbol{y}|\tilde{\boldsymbol{b}};\boldsymbol{\alpha}) - \frac12 (\boldsymbol{b}-\tilde{\boldsymbol{b}})' \tilde{\boldsymbol{H}} (\boldsymbol{b}-\tilde{\boldsymbol{b}}) -\frac12\ln\det(\boldsymbol{\Sigma}) -\frac12(\boldsymbol{b}-\tilde{\boldsymbol{b}})'\boldsymbol{\Sigma}^{-1}(\boldsymbol{b}-\tilde{\boldsymbol{b}}) $$
where $\tilde{\boldsymbol{b}}$ is the solution to
$$ \frac{\partial\ell_{\text{cpl}}(\boldsymbol{y},\boldsymbol{b})}{\partial\boldsymbol{b}} = 0 $$
and $\tilde{\boldsymbol{H}}=\boldsymbol{H}(\tilde{\boldsymbol{b}})$ is the value of the negative Hessian with respect to b
$$ \boldsymbol{H}(\boldsymbol{b})=-\frac{\partial^2\ell(\boldsymbol{y}|\boldsymbol{b};\boldsymbol{\alpha})}{\partial\boldsymbol{b}\partial\boldsymbol{b}'} $$
for $\boldsymbol{b}=\tilde{\boldsymbol{b}}$.
Since this quadratic expansion—let us call it ℓLapl*(y, b)—is a (multivariate) quadratic function of b, the integral of its exponential does have a closed-form solution (the relevant formula can be found in Harville (1997)).
For purposes of estimation, the resulting approximate log-likelihood is more useful:
$$ \ell^*_{\text{Lapl}} = \ln\int \exp(\ell_{\text{Lapl}}(\boldsymbol{y},\boldsymbol{b})) \partial\boldsymbol{b} = \ell(\boldsymbol{y}|\tilde{\boldsymbol{b}};\boldsymbol{\alpha}) - \frac12\tilde{\boldsymbol{b}}'\boldsymbol{\Sigma}^{-1}\tilde{\boldsymbol{b}} - \frac12\ln\det(\boldsymbol{\Sigma}) - \frac12\ln\det\left(\tilde{\boldsymbol{H}}+\boldsymbol{\Sigma}^{-1}\right). $$
If one disregards the dependence of $\tilde{\boldsymbol{H}}$ on α and b, then $\tilde{\boldsymbol{b}}$ maximizes not only ℓcpl(y, b) but also ℓLapl*. This motivates the following IWLS/Fisher scoring equations for $\hat{\boldsymbol{\alpha}}$ and $\tilde{\boldsymbol{b}}$ (see Breslow and Clayton (1993) and this page):
$$ \begin{aligned} \begin{bmatrix} \boldsymbol{X}'\boldsymbol{W}\boldsymbol{X} & \boldsymbol{X}'\boldsymbol{W}\boldsymbol{Z} \\ \boldsymbol{Z}'\boldsymbol{W}\boldsymbol{X} & \boldsymbol{Z}'\boldsymbol{W}\boldsymbol{Z} + \boldsymbol{\Sigma}^{-1}\\ \end{bmatrix} \begin{bmatrix} \hat{\boldsymbol{\alpha}}\\ \tilde{\boldsymbol{b}}\\ \end{bmatrix} = \begin{bmatrix} \boldsymbol{X}'\boldsymbol{W}\boldsymbol{y}^*\\ \boldsymbol{Z}'\boldsymbol{W}\boldsymbol{y}^* \end{bmatrix} \end{aligned} $$
where
y* = Xα + Zb + W−(y − π)
is the IWLS “working dependend variable” with α, b, W, and π computed in an earlier iteration.
Substitutions lead to the equations:
$$ (\boldsymbol{X}\boldsymbol{V}^-\boldsymbol{X})\hat{\boldsymbol{\alpha}} = \boldsymbol{X}\boldsymbol{V}^-\boldsymbol{y}^* $$
and
(Z′WZ + Σ−1)b = Z′W(y* − Xα)
which can be solved to compute $\hat{\boldsymbol{\alpha}}$ and $\tilde{\boldsymbol{b}}$ (for given Σ)
Here
V = W− + ZΣZ′
and
V− = W − WZ′(Z′WZ + Σ−1)−1ZW
Following Breslow and Clayton (1993) the variance parameters in Σ are estimated by minimizing
q1 = det (V) + (y* − Xα)V−(y* − Xα)
or the “REML” variant:
q2 = det (V) + (y* − Xα)V−(y* − Xα) + det (X′V−X)
This motivates the following algorithm, which is strongly inspired by
the glmmPQL()
function in Brian Ripley’s R package
MASS (Venables and Ripley 2002):
This algorithm is a modification of the IWLS algorithm used to fit conditional
logit models without random effects. Instead of just solving a linear
requatoin in step 3, it estimates a weighted linear mixed-effects model.
In contrast to glmmPQL()
it does not use the
lme()
function from package nlme (Pinheiro and Bates 2000) for this, because the
weighting matrix W is
non-diagonal. Instead, q1 or q2 are minimized using
the function nlminb
from the standard R package
“stats” or some other optimizer chosen by the user.
The (first-order) Solomon approximation (Solomon and Cox 1992) is based on the quadratic expansion the integrand
$$ \ell_{\text{cpl}}(\boldsymbol{y},\boldsymbol{b})\approx \ell(\boldsymbol{y}|\boldsymbol{0};\boldsymbol{\alpha}) + \boldsymbol{g}_0' \boldsymbol{b} - \frac12 \boldsymbol{b}' \boldsymbol{H}_0 \boldsymbol{b} -\frac12\ln\det(\boldsymbol{\Sigma}) -\frac12\boldsymbol{b}'\boldsymbol{\Sigma}^{-1}\boldsymbol{b} $$
where g_0 = g(0) is the gradient of ℓ(y∥b; α)
$$ \boldsymbol{g}(\boldsymbol{b})=-\frac{\partial\ell(\boldsymbol{y}|\boldsymbol{b};\boldsymbol{\alpha})}{\partial\boldsymbol{b}} $$
at b = 0, while H_0 = H(0) is the negative Hessian at b = 0.
Like before, the integral of the exponential this quadratic expansion (which we refer to as ℓSC(y, b)) has a closed-form solution, as does its logarithm, which is:
$$ \ln\int \exp(\ell_{\text{SC}}(\boldsymbol{y},\boldsymbol{b})) \partial\boldsymbol{b} = \ell(\boldsymbol{y}|\boldsymbol{0};\boldsymbol{\alpha}) - \frac12\boldsymbol{g}_0'\left(\boldsymbol{H}_0+\boldsymbol{\Sigma}^{-1}\right)^{-1}\boldsymbol{g}_0 - \frac12\ln\det(\boldsymbol{\Sigma}) - \frac12\ln\det\left(\boldsymbol{H}_0+\boldsymbol{\Sigma}^{-1}\right). $$
The resulting estimation technique is very similar to PQL (again, see Breslow and Clayton 1993 for a discussion). The only difference is the construction of the “working dependent” variable y*. With PQL it is constructed as y* = Xα + Zb + W−(y − π) while the MQL working dependent variable is just
y* = Xα + W−(y − π)
so that the algorithm has the following steps: