Definition
The mixed-effects regression model (MRM) for continuous outcomes decomposes each subject's response trajectory into population-average fixed effects and individual-specific random effects: yi=Wiα+Xiβi+εi, where α are fixed effects common to all subjects, βi∼N(0,Σβ) are subject-specific random deviations, and εi∼N(0,σε2Ωi) is the within-subject error with autocorrelation structure Ωi.
Key Ideas
- Two-level structure: Level 1 = repeated measurements within subjects; Level 2 = subjects (optionally nested in clusters for three-level extensions). Fixed effects α describe population trends; random effects βi describe individual deviation from those trends.
- Empirical Bayes (EAP) estimates: Subject-specific random effects are estimated as β~i=[Xi′(σε2Ωi)−1Xi+Σβ−1]−1Xi′(σε2Ωi)−1(yi−Wiα) — a weighted average of the subject's ordinary least squares (OLS) estimate and the population mean, with shrinkage proportional to Σβ−1.
- Intraclass correlation coefficient (ICC) decomposition: For a two-level design with random intercept σb2 and residual σε2, ICC=σb2/(σb2+σε2) quantifies the proportion of total variance attributable to between-subject differences.
- Gaussian factorization: Σβ=ΛDΛ′ with lower-triangular Λ (ones on diagonal) and diagonal D with exponential-transformed entries exp(dk); avoids convergence failures when variance components near zero compared to Cholesky decomposition.
- Missing data (MAR): Likelihood-based MRM is valid under missing-at-random (MAR) dropout without imputation; the full-data likelihood marginalizes over unobserved responses given observed ones.
- Pattern-mixture extension: Nonignorable, missing-not-at-random (MNAR) dropout handled by including dropout pattern as between-subjects covariate; see Pattern-Mixture Model.
How It Works
- Marginal likelihood: h(yi)=∫N(yi;Wiα+Xiβi,σε2Ωi)⋅N(βi;0,Σβ)dβi has closed form (normal-normal conjugacy): h(yi)=N(Wiα,Vi) with Vi=XiΣβXi′+σε2Ωi.
- Fisher scoring: Marginal maximum likelihood estimator (MMLE) for α, Σβ, and σε2 via iterative reweighted least squares; closed-form gradient and Hessian available from the normal marginal.
- Autocorrelation structures: Ωi can be autoregressive (AR(1)), banded, or unstructured; MIXREG implements AR(1) as default for equally-spaced measurements.
- Three-level extension: Cluster-level (therapist/school) random effects added as a third level; conditional independence on the cluster effect reduces the subject-level integral.
- Software: MIXREG (Hedeker-Gibbons 1996b) for continuous outcomes; free download, command-line interface; superseded in practice by R's lme4 and nlme packages.
Why It Matters
- Efficiency over OLS: Joint modeling of all time points uses the full covariance structure; OLS on subject-level means discards within-subject information.
- Unbalanced designs: Subjects with different observation schedules or missing data contribute their actual observations; no imputation or case deletion required.
- Subject-specific inference: EAP estimates enable individual-level prediction (e.g., therapist performance ranking, school-level policy assessment) with appropriate shrinkage toward the population mean.
- Interaction detection: Fixed-effects analysis of variance (ANOVA) ignores between-cluster clustering, inflating Type I error; the MRM correctly attributes experience × treatment interactions invisible to marginal analyses.
- Foundation for extensions: The continuous MRM framework generalizes to binary outcomes (Random Effects Probit), ordinal outcomes (Hedeker-Gibbons 1994), multivariate outcomes (Multivariate Probit), survival data, and non-Gaussian exponential-family responses via the Generalized Linear Mixed Model.
Open Questions
- Number of random effects: deviance tests are conservative at boundary (variance = 0); information criteria preferred.
- Robustness to non-normal random effects: EAP shrinkage is optimal under normality; robust alternatives (empirical nonparametric prior, Bock-Aitkin 1981) are available but rarely used in practice.
- MNAR vs. MAR: pattern-mixture and selection models give different identifications; sensitivity analysis across dropout models recommended.
Related