Hi,
How do I include a log rank test with proc phreg?
Many thanks!
Wouldn't the Log rank test is under PROC LIFETEST?
data have;
set sashelp.bmt;
run;
proc lifetest data=have ;
time T*Status(0);
strata Group;
run;
Wouldn't the Log rank test is under PROC LIFETEST?
data have;
set sashelp.bmt;
run;
proc lifetest data=have ;
time T*Status(0);
strata Group;
run;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.
Find more tutorials on the SAS Users YouTube channel.