Is there a way to add an additional vertical line to a forest plot?
For example, in this plot (purely for illustration purposes), to obtain a vertical line up from the x-axis value 0.5 to go alongside the existing vertical line that goes up from 0.0?
With thanks
For example, in this plot (purely for illustration purposes), to obtain a vertical line up from the x-axis value 0.5 to go alongside the existing vertical line that goes up from 0.0?
Code:
use http://fmwww.bc.edu/repec/bocode/m/metan_example_data, clear gen logOR = log(OR) gen logORlci = log(ORlci) gen logORuci = log(ORuci) forestplot logOR logORlci logORuci

Comment