I found the following online, but realize "loglogs=logh" that is supposed to
give log cumulative hazard output does not work...
"proc phreg data='c:\alda\rearrest' noprint;
strata personal;
model months*censor(1)= /ties=efron;
baseline out=strata covariates=null logsurv=lsurv loglogs=logh /method=pl
nomean;
run;
"
??
thanks for help~
y***n 发帖数: 51
2
try this:
proc lifetest data='c:\alda\rearrest' plot=(lls); % some version is plot=
loglogsurv
model months*censor(1)=treat;
run;
h******3 发帖数: 190
3
Thank you!
【在 y***n 的大作中提到】 : try this: : proc lifetest data='c:\alda\rearrest' plot=(lls); % some version is plot= : loglogsurv : model months*censor(1)=treat; : run;