I am using the following code to generate a forest plot after using meta summarize to meta-analyze proportions (new in Stata 18):
The plot looks good, the heading over the second column is "Number of successes". But the events are relapses, so I don't want to call them successes! I know there must be an option to change the text in the column headings, but I have not found it yet. Can anyone point me in the right direction or provide an example? Thanks.
PS- The new default graphics scheme in Stata 18 is stcolor. I see no stmono option, which is why I used s2mono in my code above. For bubble plots, on the other hand, I like s1mono better than s2mono. But I am left wondering why there is no stmono!
Code:
meta forestplot, scheme(s2mono) noosigtest /// title("Relapse (any type)") name(Fig2a, replace) /// transform("Proportion":invlogit)
PS- The new default graphics scheme in Stata 18 is stcolor. I see no stmono option, which is why I used s2mono in my code above. For bubble plots, on the other hand, I like s1mono better than s2mono. But I am left wondering why there is no stmono!
Comment