Hello all
I plotted a KM graph
Which produced the graph with the following scale, which is what I requested.
Questions
1. Rather than showing 0.99 consecutively, how can I tell stata to graphically present the y axis scale as 0.991, 0.992 ?
2. Should I convert this to percent?
P.S I've tried this: - added -ytick-
Still produced the same with 2 decimal places.

I plotted a KM graph
Code:
sts graph, by(procedure) ylabel(0.99(0.001)1) scheme(white_jet) plot1(color(orange_red)) plot2(color(blue)) legend(order(1 "old treatment" 2 "New treatment"))
Questions
1. Rather than showing 0.99 consecutively, how can I tell stata to graphically present the y axis scale as 0.991, 0.992 ?
2. Should I convert this to percent?
P.S I've tried this: - added -ytick-
Code:
sts graph, by(procedure) ylabel(0.99(0.001)1) ytick(0.991(0.001)1) scheme(white_jet) plot1(color(orange_red)) plot2(color(blue)) legend(order(1 "old treatment" 2 "New treatment"))
Comment