Skip to content
Prev 4535 / 5632 Next

[R-meta] SMD Metric

Thank you, James.

I think we usually treat items on a test/instrument to be equivalent (all
other things equal), if they differ from one another by some additive and
multiplicative constants. We can probably extend this inter-item
equivalency concept to equate different tests (all other things equal).

It seems some effect sizes (e.g., SMD and correlation coef.) take this into
account and 'work best' if such equivalence holds and work less well as
this equivalence weakens.

But other effect sizes seem to be somewhat insensitive to such equivalency.
ROM seems to be one of them. But do you think that it is desirable for ROM
to not give the same estimates for when such an equivalence, in fact,
exists:

x1 <- rnorm(50, 36, 6)
x2 <- rnorm(50, 33, 6)

library(metafor)
escalc(measure="ROM", m1i=mean(x1), sd1i=sd(x1), n1i=length(x1),
       m2i=mean(x2), sd2i=sd(x2), n2i=length(x2))

x1 <- 40 + x1 * 3
x2 <- 40 + x2 * 7

escalc(measure="ROM", m1i=mean(x1), sd1i=sd(x1), n1i=length(x1),
       m2i=mean(x2), sd2i=sd(x2), n2i=length(x2))

Many thanks,
Yuhang

PS. With a lack of linear equatability, ROM may probably be preferred over
SMD. However, I wonder what to replace COR with, when there is a lack of
linear equatability? I would think in that case there is no alternative to
COR and we need to resort to adding methodological moderators.
On Sun, Apr 2, 2023 at 3:18?PM James Pustejovsky <jepusto at gmail.com> wrote: