Rubin (1976) introduced a foundational framework distinguishing missing data mechanisms: Missing Completely At Random (MCAR), Missing At Random (MAR), Missing Not At Random (MNAR)
These mechanisms differ from missing data patterns, which refer to the observed structure of which values are present or absent.
Patterns = “What” is missing
Mechanisms = “Why” it is missing
MCAR
MCAR: Missingness is unrelated to observed or unobserved data. The missing sample is a random subsample.
\[
P(M \mid Y, \phi) = P(M \mid \phi)
\]
MAR
MAR: Missingness depends on observed variables.
\[
P(M \mid Y, \phi) = P(M \mid Y_{obs}, \phi)
\]
MNAR
Missingness depends on unobserved variables (or both).
Cuijpers and colleagues collected data from 48 studies that measure depression on both a clinician rating (HRSD) and self-report scale (BDI).
The meta-analysis highlights a substantial difference between the patients’ and clinicians’ evaluations of depression, in favor of the clinician rating.
The dataset
We analyze a subset of studies that report either the HRSD (CR scale for depression) or the BDI (SR scale for depression).
Correlation between the HRSD and BDI is set at \(\rho = 0.7\) (yes, we could perform sensitivity analyses also for this…)
# A tibble: 6 × 7
Study N EstCR SECR EstSR SESR Cor.ws
<chr> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
1 Arean et al. (1993)a 49 -13.2 1.62 -5.5 1.89 0.7
2 Ayen and Hautzinger (2004)a 21 NA NA -14 1.75 NA
3 Bowers et al. (1993) 16 -3.1 1.52 -5.1 2.83 0.7
4 Bowman, Scogin, and Lyrene (1995)a 20 -7.1 3.17 -10.6 4.86 0.7
5 Brand and Clingempeel (1992) 53 -4.81 1.81 -2.6 2.58 0.7
6 Carpenter et al. (2008) 24 2.10 4.04 NA NA NA
Multivariate meta-analysis
Performed with mixmeta, comparable results also with metaSEM.
Then we imputed the missing HRSD and BDI outcomes with random draws from selected distribution (uniform, multivariate normal, normal) to reflect different assumptions on the missingness mechanisms.
The goal is to explore if the results are robust across assumptions (more or less conservative).
SPOILER!1!!1
It will be (soon) available an R package that allows the user to perform multivariate meta-analysis choices with different packages and choose her favourite distributions!