Skip to content
Prev 4956 / 5636 Next

[R-meta] Correcting Hedges' g vs. Log response ratio in nested studies

Thank you, James and Wolfang,

James,

Regarding your first message, it looks like the correction factor for SMD
is: sqrt( 1-((2*(n-1)*icc)/(N-2)) ) where n is the average cluster size for
each comparison in a study, and N is the sum of the two groups' sample
sizes. So, I wonder how the number of clusters is impacting the correction
factor for SMD as you indicated?

Regarding my initial question, my hunch was that for SMD, the SMD estimate
and its sampling variance are (non-linearly) related to one another.
Therefore, correcting the sampling variance for a design issue will
necessitate correcting the SDM estimate as well.

On the other hand, the LRR estimate and its sampling variance are not as
much related to one another. Therefore, correcting the sampling variance
for a design issue will not necessitate correcting the LRR estimate as well.


vi_g <- function(gi, n1i, n2i) { ((n1i + n2i)/(n1i * n2i)) + ((gi^2)/(2 *
(n1i+n2i))) }

vi_lrr <- function(m1,m2,n1,n2,sd1,sd2) { (sd1 / sqrt(n1))^2 / m1^2 + (sd2
/ sqrt(n2))^2 / m2^2 }

curve(vi_g(x, 30,30), 0, 1, xlab="g", ylab = "sampling variance")

curve(vi_lrr(x, 1,30,30,.1,.1), 0, 1, xlab="LRR", ylab = "sampling
variance")
On Thu, Nov 2, 2023 at 8:41?AM James Pustejovsky <jepusto at gmail.com> wrote: