Main Content

Estimating Parameters in Linear Mixed-Effects Models

A linear mixed-effects model is of the form

y=Xβfixed+Zbrandom+εerror,

where

  • y is the n-by-1 response vector, and n is the number of observations.

  • X is an n-by-p fixed-effects design matrix.

  • β is a p-by-1 fixed-effects vector.

  • Z is an n-by-q random-effects design matrix.

  • b is a q-by-1 random-effects vector.

  • ε is the n-by-1 observation error vector.

The random-effects vector, b, and the error vector, ε, are assumed to have the following independent prior distributions:

b~N(0,σ2D(θ)),ε~N(0,σI2),

where D is a symmetric and positive semidefinite matrix, parameterized by a variance component vector θ, I is an n-by-n identity matrix, and σ2 is the error variance.

In this model, the parameters to estimate are the fixed-effects coefficients β, and the variance components θ and σ2. The two most commonly used approaches to parameter estimation in linear mixed-effects models are maximum likelihood and restricted maximum likelihood methods.

Maximum Likelihood (ML)

The maximum likelihood estimation includes both regression coefficients and the variance components, that is, both fixed-effects and random-effects terms in the likelihood function.

For a linear mixed-effects model defined above, the conditional response of the response variable y given β, b, θ, and σ2 is

y|b,β,θ,σ2~N(Xβ+Zb,σ2In).

The likelihood of y given β, θ, and σ2 is

P(y|β,θ,σ2)=P(y|b,β,θ,σ2)P(b|θ,σ2)db,

where

P(b|θ,σ2)=1(2πσ2)q21|D(θ)|12exp{12σ2bTD1b}andP(y|b,β,θ,σ2)=1(2πσ2)n2exp{12σ2(yXβZb)T(yXβZb)}.

Suppose Λ(θ) is the lower triangular Cholesky factor of D(θ) and Δ(θ) is the inverse of Λ(θ). Then,

D(θ)1=Δ(θ)TΔ(θ).

Define

r2(β,b,θ)=bTΔ(θ)TΔ(θ)b+(yXβZb)T(yXβZb),

and suppose b* is the value of b that satisfies

r2(β,b,θ)b|b*=0

for given β and θ. Then, the likelihood function is

P(y|β,θ,σ2)=(2πσ2)n2|D(θ)|12exp{12σ2r2(β,b*(β),θ)}1|ΔTΔ+ZTZ|12.

P(y|β,θ2) is first maximized with respect to β and σ2 for a given θ. Thus the optimized solutions β^(θ) and σ^2(θ)are obtained as functions of θ. Substituting these solutions into the likelihood function produces P(y|β^(θ),θ,σ^2(θ)). This expression is called a profiled likelihood where β and σ2 have been profiled out. P(y|β^(θ),θ,σ^2(θ)) is a function of θ, and the algorithm then optimizes it with respect to θ. Once it finds the optimal estimate of θ, the estimates of β and σ2 are given by β^(θ) and σ^2(θ).

The ML method treats β as fixed but unknown quantities when the variance components are estimated, but does not take into account the degrees of freedom lost by estimating the fixed effects. This causes ML estimates to be biased with smaller variances. However, one advantage of ML over REML is that it is possible to compare two models in terms of their fixed- and random-effects terms. On the other hand, if you use REML to estimate the parameters, you can only compare two models, that are nested in their random-effects terms, with the same fixed-effects design.

Restricted Maximum Likelihood (REML)

Restricted maximum likelihood estimation includes only the variance components, that is, the parameters that parameterize the random-effects terms in the linear mixed-effects model. β is estimated in a second step. Assuming a uniform improper prior distribution for β and integrating the likelihood P(y|β,θ2) with respect to β results in the restricted likelihood P(y|θ2). That is,

P(y|θ,σ2)=P(y|β,θ,σ2)P(β)dβ=P(y|β,θ,σ2)dβ.

The algorithm first profiles out σ^R2 and maximizes remaining objective function with respect to θ to find θ^R. The restricted likelihood is then maximized with respect to σ2 to find σ^R2. Then, it estimates β by finding its expected value with respect to the posterior distribution

P(β|y,θ^R,σ^R2).

REML accounts for the degrees of freedom lost by estimating the fixed effects, and makes a less biased estimation of random effects variances. The estimates of θ and σ2 are invariant to the value of β and less sensitive to outliers in the data compared to ML estimates. However, if you use REML to estimate the parameters, you can only compare two models that have the identical fixed-effects design matrices and are nested in their random-effects terms.

References

[1] Pinherio, J. C., and D. M. Bates. Mixed-Effects Models in S and S-PLUS. Statistics and Computing Series, Springer, 2004.

[2] Hariharan, S. and J. H. Rogers. “Estimation Procedures for Hierarchical Linear Models.” Multilevel Modeling of Educational Data (A. A. Connell and D. B. McCoach, eds.). Charlotte, NC: Information Age Publishing, Inc., 2008.

[3] Raudenbush, S. W. and A. S. Bryk. Hierarchical Linear Models: Applications and Data Analysis Methods, 2nd ed. Thousand Oaks, CA: Sage Publications, 2002.

[4] Hox, J. Multilevel Analysis, Techniques and Applications. Lawrence Erlbaum Associates, Inc, 2002.

[5] Snidjers, T. and R. Bosker. Multilevel Analysis. Thousand Oaks, CA: Sage Publications, 1999.

[6] McCulloch, C.E., R. S. Shayle, and J. M. Neuhaus. Generalized, Linear, and Mixed Models. Wiley, 2008.

See Also

| |

Related Topics