Hi, I ran below code per your suggestion: ods output survivalPlotData = survGraphData; proc lifetest data=two plots=survival ; time Survive_year*death(0); strata AKI; run; But it gave me the error message: NOTE: The LOGLOG transform is used to compute the confidence limits for the quartiles of the survivor distribution. To suppress using this transform, specify CONFTYPE=LINEAR in the PROC LIFETEST statement. NOTE: Graph's name, LIFETEST, changed to LIFETES1. LIFETEST is already used or not a valid SAS name. NOTE: Graph's name, LIFETEST, changed to LIFETES1. LIFETEST is already used or not a valid SAS name. NOTE: 29352 bytes written to C:\Users\LinI1\AppData\Local\Temp\SAS Temporary Files\_TD7508_WBSTE046_\lifetest1.png. WARNING: Output 'survivalPlotData' was not created. Make sure that the output object name, label, or path is spelled correctly. Also, verify that the appropriate procedure options are used to produce the requested output object. For example, verify that the NOPRINT option is not used. NOTE: PROCEDURE LIFETEST used (Total process time): real time 0.56 seconds cpu time 0.46 seconds
... View more