I'm having a problem deciding how best to present my data (correlations), as heterogeneity precludes meta-analysis. One way I'm considering is using forest plots more descriptively. At the minute my code looks like this:
clear
input str12 study str12 time str12 biomech e n p
Azus 6months vGRF 0.285 46 0.08
Azus 6months vGRF 0.051 46 0.76
ErhartHledik 2years vGRF -0.396 28 0.037
ErhartHledik 2years vGRF -0.584 28 0.009
Pietrosimone 6months vGRF 0.42 25 0.001
Pietrosimone 6months vGRF 0.09 25 0.139
Azus 6months KFM -0.237 46 0.15
Azus 6months KFM -0.187 46 0.26
Azus 6months KFM 0.078 46 0.65
Azus 6months KFM 0.137 46 0.42
ErhartHledik 2years KFM -0.57 16 0.026
ErhartHledik 2years KAM -0.74 16 0.002
ErhartHledik 2years IRmoment -0.82 16 0.001
Azus 6months MedialGRF -0.28 46 0.08
Azus 6months MedialGRF -0.286 46 0.08
Azus 6months MedialGRF -0.28 46 0.09
Azus 6months MedialGRF -0.335 46 0.05
Azus 6months MedialGRF -0.35 46 0.03
Azus 6months MedialGRF -0.342 46 0.04
end
* Calculate standard error
gen SE = sqrt((1 - e^2) / (n - 2))
* Display the data including standard error
list
At this point I get that you would normally declare the data as meta and then can use the forestplot command, but is there a way of doing this without running meta-analysis? I have looked online and I'm finding that most suggestions lead me to using the twoway command but I can't seem to get this to work.
Thanks in advance for any help!!
Matt
clear
input str12 study str12 time str12 biomech e n p
Azus 6months vGRF 0.285 46 0.08
Azus 6months vGRF 0.051 46 0.76
ErhartHledik 2years vGRF -0.396 28 0.037
ErhartHledik 2years vGRF -0.584 28 0.009
Pietrosimone 6months vGRF 0.42 25 0.001
Pietrosimone 6months vGRF 0.09 25 0.139
Azus 6months KFM -0.237 46 0.15
Azus 6months KFM -0.187 46 0.26
Azus 6months KFM 0.078 46 0.65
Azus 6months KFM 0.137 46 0.42
ErhartHledik 2years KFM -0.57 16 0.026
ErhartHledik 2years KAM -0.74 16 0.002
ErhartHledik 2years IRmoment -0.82 16 0.001
Azus 6months MedialGRF -0.28 46 0.08
Azus 6months MedialGRF -0.286 46 0.08
Azus 6months MedialGRF -0.28 46 0.09
Azus 6months MedialGRF -0.335 46 0.05
Azus 6months MedialGRF -0.35 46 0.03
Azus 6months MedialGRF -0.342 46 0.04
end
* Calculate standard error
gen SE = sqrt((1 - e^2) / (n - 2))
* Display the data including standard error
list
At this point I get that you would normally declare the data as meta and then can use the forestplot command, but is there a way of doing this without running meta-analysis? I have looked online and I'm finding that most suggestions lead me to using the twoway command but I can't seem to get this to work.
Thanks in advance for any help!!
Matt
Comment