Customizing the Kaplan-Meier Survival Plot


Suppressing the Censored Observations

You can use the PLOTS=SURVIVAL(NOCENSOR) option to suppress the display of censored observations as follows:

proc lifetest data=sashelp.BMT
              plots=survival(nocensor test atrisk(maxlen=13));
   time T * Status(0);
   strata Group;
run;

The results are displayed in FigureĀ 23.15.

Figure 23.15: Censored Values Not Displayed

Censored Values Not Displayed