Solved – How to calculate confidence intervals for Cohen’s d

cohens-d

I've calculated Cohen's d for regression coefficients (from the t statistic), odds ratios and means differences, hoping to pool the results in a meta-analysis and see how it works. However, in Stata, it doesn't seem you're able to pool these results without confidence intervals for Cohen's d, so my question is how do I get around this? Is there a way of calculating it, or is there a way of pooling the results in Stata without this information?

I know there are several negative sides to this sort of meta-analysis, but am intrigued to see how this works in comparison to several smaller analyses of specific effect sizes.

Best Answer

According to p238 of standard text on meta-analysis in social science The Handbook of Research Synthesis, the variance of Cohen's $d$ is $$\left( \frac{n_1 + n_2}{n_1 n_2} + \frac{d^2}{2(n_1+n_2-2)}\right) \left(\frac{n_1 + n_2}{n_1+n_2-2} \right), $$ where $n_1$ and $n_2$ are the sample sizes of the two groups being compared and $d$ is Cohen's $d$.

Taking the square-root of this variance gives the standard error of $d$, needed as input by several of the user-written meta-analysis packages for Stata. (Some of them also accept confidence intervals as input, but they simply convert them to standard errors internally anyway.)

Related Question