Hi there,
I have been struggling with this problem for a while.
I run the PROC LIFETEST procedure below to get the KM plot. See the plot in the attachement. However, you will find that the time points along the x-axis are 0, 10, 20, 30, 40, 50, and 60. But I want the time interval to be 12, which can made the time points to be 0,12,24,36,48, and 60, so that the time points along x-axis is same as the time points for the number of at risk listing...I tried many options, even trying to revise PROC TEMPLATE. But none of them works......Does any one have resolved similar problem? Thanks in advance.
proc lifetest data=master1 intervals= 0 to 60 by 12 plots=survival(test atrisk(outside)=0 to 60 by 12); by period; strata location; time surv_time*Censor(0); run;
... View more