Skip to content
Prev 3551 / 5632 Next

[R-meta] rma.mv: why some var components change but others don't across 2 models

Oops. I was referring to your linked post:
https://stat.ethz.ch/pipermail/r-sig-meta-analysis/2018-July/000896.html

study  outcome  measure study.outcome.measure
1        A              1               1.A.1
1        B              1               1.B.1
2        A              1               2.A.1
3        A              2               3.A.2
3        B             1                3.B.1
3        C             2                3.C.2
4        B             1                4.B.1

list(~ 1 | study, ~1|outcome, ~ 1 | measure) would mean that rows that
share a study, share an outcome, and share a measure, separately can
get their own similar random effects.

list(~ 1 | study/outcome, ~ 1 | measure) would mean that rows that
share a study, and then within each study, rows that share an outcome,
can separately get their own similar random effects. Additionally,
rows that share a measure can get their own similar random effects.

Am I correctly describing the differences?

So, when "~1|outcome" from `res` model, and "study/outcome" component
from `res2` ONLY NUMERICALLY are similar, then that means that the
amount of variance estimated for these two completely different types
of random-effects is the same; completely by coincidence.

Thanks very much,
Stefanou

On Sat, Oct 30, 2021 at 12:35 PM Stefanou Revesz
<stefanourevesz at gmail.com> wrote: