Good morning/afternoon everyone,
I am currently performing the statistical analysis part to my Thesis exploring the association of recreational use of cannabis and depression among adolescents. I have copied and pasted the codes I use to run my meta-analysis below but would like to confirm with experts here that 1) My interpretation is correct and 2) Whether I am missing any crucial elements when I ran this meta-analysis that I should include.
The Meta inferential statistics, the metafunnel and metatrim did not work
(I'm not expert in this, so I would greatly appreciate if someone may explain why (if applicable), they are required for meta-analysis and 2) why they didn't work for my set of data).
Thank you very much!
My data is presented below:
I am currently performing the statistical analysis part to my Thesis exploring the association of recreational use of cannabis and depression among adolescents. I have copied and pasted the codes I use to run my meta-analysis below but would like to confirm with experts here that 1) My interpretation is correct and 2) Whether I am missing any crucial elements when I ran this meta-analysis that I should include.
The Meta inferential statistics, the metafunnel and metatrim did not work
(I'm not expert in this, so I would greatly appreciate if someone may explain why (if applicable), they are required for meta-analysis and 2) why they didn't work for my set of data).
Thank you very much!
Code:
generate logor=log(OR)
Code:
generate selogor=(log(UpperCI)-log(LowerCI))/1.96
Code:
metan logor selogor, fixedi second(random)
Code:
metainf logor selogor
Code:
metafunnel logor selogor eform xtitle("Odd Ratio-Log Scale")
Code:
metatrim logor selogor
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input byte StudyNumber str21 StudyName double(OR LowerCI UpperCI) float(logor selogor _LCI _UCI _WT) 1 "Geogiades" 3.779 2.38 5.99 1.3294594 .4709137 .4064855 2.2524333 1.9647503 2 "Gage" 1.34 1.18 1.51 .29266962 .12581389 .04607894 .5392603 27.525354 3 "Fergusson" 3.0219 2.3 3.97 1.1058857 .27849844 .5600388 1.6517327 5.617519 4 "Gilder" 3 1.45 6.2 1.0986123 .7413192 -.3543467 2.5515714 .792829 5 "Harder" .74205 .53 1.03 -.29833865 .3389985 -.9627635 .3660862 3.791356 6 "Kleinman" 1.1517 .63 2.12 .1412391 .619108 -1.0721902 1.3546684 1.13673 7 "Rey" 2.9546 1.98 4.42 1.0833633 .4097157 .2803352 1.8863914 2.5955224 8 "Boys" 6.55 3.87 11.1 1.879465 .53759724 .8257939 2.933136 1.507565 9 "Rasic" 1.24 1.06 1.5 .21511137 .1771409 -.13207845 .5623012 13.885205 10 "Saluja" 2.6568 2.39 2.95 .9771224 .10740398 .7666144 1.1876303 37.770206 11 "Rossow" 1 1 1 0 0 0 0 0 12 "Fergusson and Horwood" 1.403357 .9888 1.9918 .3388672 .3572969 -.36142185 1.0391563 3.412963 end
Comment