Skip to content
Prev 285 / 5632 Next

[R-meta] Meta-analysis with R, use treatment effect as input instead of 2 groups?

Am 17.10.17 um 17:57 schrieb Felix M:
I assume that you have the following information for each study:
delta = mean difference between experimental and control group
SEM = standard error of delta
SD = standard deviation of delta

In order to conduct a meta-analysis you only need delta and SEM.

You can use, for example, metagen() in R package meta in the following way:
metagen(delta, SEM)

Similarly, you can use rma() in R package metafor:
rma(yi = delta, sei = SEM)

See the corresponding help pages for more information, e.g. help(metagen).

Best wishes,
Guido