Dear all
I have a bunch of different studies with measurement of a continous outcome presented by mean and se.
I like to pool the means of each study, to get to a pooled mean.
Unfortunately, Stata defines a meta-analysis as pooling of effect sizes only (in contrast to wikipedia :-)) - and so is the - meta - command structured.
Googling the issue, I found that there is a - metamean - function in R, but I wonder if there is an analogy in Stata (as to proportions the user written - metaprop - command), e.g. the metan function.
My data and naive guess would be the following.
Is this correct or is there a better/different solution?
Best wishes & thanks!
Martin
I have a bunch of different studies with measurement of a continous outcome presented by mean and se.
I like to pool the means of each study, to get to a pooled mean.
Unfortunately, Stata defines a meta-analysis as pooling of effect sizes only (in contrast to wikipedia :-)) - and so is the - meta - command structured.
Googling the issue, I found that there is a - metamean - function in R, but I wonder if there is an analogy in Stata (as to proportions the user written - metaprop - command), e.g. the metan function.
My data and naive guess would be the following.
Code:
clear all input mean_s se_s 14 4.58 13 2.58 15 1.58 16 2.86 16 1.61 end metan mean se, random
Best wishes & thanks!
Martin
Comment