Dear all, I should do a meta-analysis of randomized studies.
The outcome is a proportion (of antibiotic prescriptions) measured at baseline and follow-up, in two groups of doctors, experimental (educational intervention) and control.
How would you approach this meta-analysis?
I would be interested in expressing the results as difference in differences (DiD).
I find it difficult to implement this approach in STATA.
More than anything, I wonder how to take into account the pre-post correlation in order to correctly estimate the standard errors of the DiD.
Does anyone have an idea about this?
I thank you in advance!
The outcome is a proportion (of antibiotic prescriptions) measured at baseline and follow-up, in two groups of doctors, experimental (educational intervention) and control.
How would you approach this meta-analysis?
I would be interested in expressing the results as difference in differences (DiD).
I find it difficult to implement this approach in STATA.
More than anything, I wonder how to take into account the pre-post correlation in order to correctly estimate the standard errors of the DiD.
Does anyone have an idea about this?
I thank you in advance!
Code:
* Example generated by -dataex-. For more info, type help dataex clear input byte studyid double(baselinectrl followupctrl baselineexp followupexp) byte(nctrl nexp) float(DiD se_DiD) 1 .23 .22 .24 .12 50 51 -.11 .11234348 2 .14 .14 .15 .13 78 78 -.02 .07856077 3 .21 .23 .21 .17 67 67 -.06 .09849615 4 .24 .22 .23 .22 54 55 .01 .1135586 5 .14 .13 .15 .12 13 13 -.02 .18945265 6 .17 .16 .18 .12 43 43 -.05 .1108844 end
Comment