Skip to content
Prev 2525 / 5636 Next

[R-meta] converting escalc ROM outputs to the log-2 scale

Dear Divya,

That's just how variances change under multiplicative transformations. The same works with raw data:

x <- rnorm(10)
var(x)
var(2*x)
2^2 * var(x)

Best,
Wolfgang