Hi,
I just read the basic theory (introductory) about meta-analysis. Stata could do meta-analysis by -metan-. The meta-analysis uses some methods to combine the individual studies. Of course, fixed-effect and random-effects models are different. With each individual study, there is its observed mean, the standard deviation of observations, and the sample size. With these three data, the meta-analysis could compute a summary effect size (the summary difference in mean), and the standard deviation of the summary difference in mean.
However, it's summary effect size, not the true effect size. Why the summary effect size could be used to estimate the true effect size? The book I read did not tell the theory behind this procedure.
Tom
PS: Use some online data, I did a simple meta-analysis, both in fixed-effect and random-effects models, respectively.
I just read the basic theory (introductory) about meta-analysis. Stata could do meta-analysis by -metan-. The meta-analysis uses some methods to combine the individual studies. Of course, fixed-effect and random-effects models are different. With each individual study, there is its observed mean, the standard deviation of observations, and the sample size. With these three data, the meta-analysis could compute a summary effect size (the summary difference in mean), and the standard deviation of the summary difference in mean.
However, it's summary effect size, not the true effect size. Why the summary effect size could be used to estimate the true effect size? The book I read did not tell the theory behind this procedure.
Tom
PS: Use some online data, I did a simple meta-analysis, both in fixed-effect and random-effects models, respectively.
Code:
. metan samplesizeoftreatedgroup meanintreatedgroup sdintreatedgroup samplesizeofcontrolgroup meanincontrolgroup sdincontrolgroup, fixed Study | SMD [95% Conf. Interval] % Weight ---------------------+--------------------------------------------------- 1 | 0.095 -0.263 0.453 12.39 2 | 0.279 -0.067 0.624 13.30 3 | 0.370 -0.072 0.812 8.13 4 | 0.666 0.464 0.867 39.16 5 | 0.466 0.057 0.874 9.53 6 | 0.186 -0.115 0.487 17.49 ---------------------+--------------------------------------------------- I-V pooled SMD | 0.417 0.291 0.543 100.00 ---------------------+--------------------------------------------------- Heterogeneity chi-squared = 11.93 (d.f. = 5) p = 0.036 I-squared (variation in SMD attributable to heterogeneity) = 58.1% Test of SMD=0 : z= 6.48 p = 0.000 . metan samplesizeoftreatedgroup meanintreatedgroup sdintreatedgroup samplesizeofcontrolgroup meanincontrolgroup sdincontrolgroup, random Study | SMD [95% Conf. Interval] % Weight ---------------------+--------------------------------------------------- 1 | 0.095 -0.263 0.453 15.75 2 | 0.279 -0.067 0.624 16.28 3 | 0.370 -0.072 0.812 12.63 4 | 0.666 0.464 0.867 23.26 5 | 0.466 0.057 0.874 13.80 6 | 0.186 -0.115 0.487 18.27 ---------------------+--------------------------------------------------- D+L pooled SMD | 0.360 0.153 0.567 100.00 ---------------------+--------------------------------------------------- Heterogeneity chi-squared = 11.93 (d.f. = 5) p = 0.036 I-squared (variation in SMD attributable to heterogeneity) = 58.1% Estimate of between-study variance Tau-squared = 0.0373 Test of SMD=0 : z= 3.41 p = 0.001 .
Comment