I'm using the following code and obtaing the following graph
The only issue is that I am not seeing the reference lines plotted - I would like to plot reference line (green x 0.59 y 1.5) ; reference line blue (x 0.74 y 1.5)
Why is that?

The only issue is that I am not seeing the reference lines plotted - I would like to plot reference line (green x 0.59 y 1.5) ; reference line blue (x 0.74 y 1.5)
Why is that?
Code:
qnorm ratios, rlopts(lc(black) lw(medthick)) ms(none) mc(black) connect(1) lp(dash) lc(black) /// addplot(scatteri 1.5 0.59, recast(line) lc(green) /// || scatteri 1.5 0.74, recast(line) lc(blue) ) /// legend(order(3 "5th centile" 4 "INew Ratio") pos(5) row(1))
Comment