Skip to content
Prev 1480 / 5636 Next

[R-meta] Var-cov structure in multilevel/multivariate meta-analysis

Hi Wolfgang and mailing list,

I would like to follow up on point (3) from this old thread. Quick
refresher of the data structure: We have (approximately) 650 effects from
400 treatment-control comparisons, which come from 325 independent samples,
nested in 275 studies from 200 papers. Many of the samples include more
than one treatment-control comparison and evaluate their effect on more
than one outcome measure, resulting in correlated residuals clustered at
the level of independent samples.

First, we model the hierarchical dependence of the true effects. LRTs
indicate that model fit is improved significantly by adding random effects
for treatment-control comparisons (relative to a single-level model) and
further improved by adding random effects for papers (relative to the
two-level model). Adding random effects for samples and studies did not
improve on the two-level model. So in short, we include random effects for
papers, treatment-control comparisons, and individual estimates, skipping
studies and samples. Second, to deal with the nonindependent residuals, due
to multiple comparisons and multiple outcome measures, we use
cluster-robust variance estimation. In our data, residuals are clustered at
the level of independent samples.

As such, we could fit a model as follows:
vcv <- clubSandwich::impute_covariance_matrix(vi = data$vi, cluster =
data$sample_id, r = 0.7)
m <- metafor::rma.mv(yi, V = vcv, random = ~ 1 | paper_id/comp_id/es_id)
clubSandwich::coef_test(m, cluster = data$sample_id, vcov = "CR2")

Are there any problems with computing robust standard errors at a level of
clustering (here: samples) that does not correspond to the levels at which
hierarchical dependence of the true effects are modeled (here: papers and
treatment-control comparisons)? If so, what would be a better approach?

Many thanks!
Fabian


On Fri, Oct 5, 2018 at 11:37 AM Viechtbauer, Wolfgang (SP) <
wolfgang.viechtbauer at maastrichtuniversity.nl> wrote: