Hello,
I am very new to using Stata and also to this forum so I'm hoping you can help. I am using Stata 14.0 on Windows 10 and I created a forest plot using metan which I am pretty happy with (see attached). However, I would like to make the subgroup headings (combined, dabigatran, rivaroxaban) bold so that they stand out.
I read the help documetation for metan and have managed to adjust some formatting from there and I have looked at the help documentation for graph_options and text, however I just cannot figure out what option I need to add to make the subgroups stand out.
The code I used to make the graph was: metan loghr loglci loguci, eform lcols(author year age doac_dose) second(random) favours(Favours DOAC # Favours Warfarin) sgweight by(doac) boxsca(60)
This is an example of my data:
Thank you in advance and sorry if I have added to much information! Anneka
I am very new to using Stata and also to this forum so I'm hoping you can help. I am using Stata 14.0 on Windows 10 and I created a forest plot using metan which I am pretty happy with (see attached). However, I would like to make the subgroup headings (combined, dabigatran, rivaroxaban) bold so that they stand out.
I read the help documetation for metan and have managed to adjust some formatting from there and I have looked at the help documentation for graph_options and text, however I just cannot figure out what option I need to add to make the subgroups stand out.
The code I used to make the graph was: metan loghr loglci loguci, eform lcols(author year age doac_dose) second(random) favours(Favours DOAC # Favours Warfarin) sgweight by(doac) boxsca(60)
This is an example of my data:
Code:
* Example generated by -dataex-. To install: ssc install dataex clear input str12 author float year byte(doac doac_dose age sex) float(loghr loglci loguci) "Forslund" 2017 1 1 1 1 .2546422 -.09431065 .6097656 "Forslund" 2017 1 2 1 1 .6830968 .1655144 1.1999648 "Forslund" 2017 1 3 1 1 .08617773 -.34249035 .5007753 "Bengtson" 2017 2 1 1 1 .2311117 .01980261 .4382549 "Avgil-Tsadok" 2016 2 1 1 1 .26236424 .13102825 .4054651 end label values doac doac_name_lbl label def doac_name_lbl 1 "combined", modify label def doac_name_lbl 2 "dabigatran", modify label values doac_dose doac_dose_lbl label def doac_dose_lbl 1 "all", modify label def doac_dose_lbl 2 "standard", modify label def doac_dose_lbl 3 "low", modify label values age age_lbl label def age_lbl 1 "75 and over", modify label values sex sex_lbl label def sex_lbl 1 "both", modify
Thank you in advance and sorry if I have added to much information! Anneka
Comment