BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
pink_poodle
Barite | Level 11

Hi,

How do I include a log rank test with proc phreg?

Many thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Ksharp
Super User

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;

Ksharp_0-1699333767579.png

 

View solution in original post

2 REPLIES 2
Ksharp
Super User

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;

Ksharp_0-1699333767579.png

 

OsoGris
SAS Employee
There is no log-rank test with PROC PHREG. You can get a log-rank test in PROC LIFETEST with the STRATA statement.

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

What is ANOVA?

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.

Discussion stats
  • 2 replies
  • 691 views
  • 2 likes
  • 3 in conversation