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

I recently encountered a problem that the HR = 0 when both arms have events. One arm has 7 subjects with 2 events, and the other arm has 8 subjects with 3 events. How come HR is 0 from Proc PHREG? 

I have posted my data and code below. Can anyone give me some clue how this happens?

 

Thank you!

 

data test;
input ID $ cnsr arm aval;
datalines;
01 0 2 2.9
01 1 1 0
03 0 1 14
04 1 2 0
05 0 1 9.6
06 1 2 5.6
07 0 2 1.1
08 1 1 0
09 0 2 2.8
10 1 2 3
11 1 2 0
12 1 1 0
13 1 1 8.5
14 1 2 0
15 1 1 0
;
run;
ods output ParameterEstimates = hazard; 
proc phreg data = test; 
class arm (ref="2"); 
model aval * cnsr(1) = arm / ties=breslow risklimits alpha=0.05 ; 
Run;

ods output quartiles=quartiles homtests=homtests_unstrat; 
proc lifetest data=test plots=survival method=km; 
time aval*cnsr(1); 
strata arm; 
run;

 

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hello @fengyuwuzu,

 

Thank you for posting complete code including usable sample data.

 

Note that the hazard ratio is not exactly zero. If you print your ODS output dataset HAZARD with more decimals,

proc print data=hazard;
format _numeric_ best16.;
run;

you'll see that both ChiSq and HazardRatio are small, but positive. The natural logarithm of the hazard ratio is the Estimate, which is -17.991..., and exp(-17.991...)=1.536...E-8. Without having checked more details I'd say that a very small hazard ratio of arm 1 vs. arm 2 is plausible, given that all uncensored patients in arm 1 were still "alive" after* all patients in arm 2 had "died" or had been censored -- a quite extreme situation. As soon as there is some overlap, e.g., change AVAL=14 of ID '03' to 5, the hazard ratio steps up (to 0.283).

 

* (of course not necessarily "after" in calendar time)

View solution in original post

2 REPLIES 2
FreelanceReinh
Jade | Level 19

Hello @fengyuwuzu,

 

Thank you for posting complete code including usable sample data.

 

Note that the hazard ratio is not exactly zero. If you print your ODS output dataset HAZARD with more decimals,

proc print data=hazard;
format _numeric_ best16.;
run;

you'll see that both ChiSq and HazardRatio are small, but positive. The natural logarithm of the hazard ratio is the Estimate, which is -17.991..., and exp(-17.991...)=1.536...E-8. Without having checked more details I'd say that a very small hazard ratio of arm 1 vs. arm 2 is plausible, given that all uncensored patients in arm 1 were still "alive" after* all patients in arm 2 had "died" or had been censored -- a quite extreme situation. As soon as there is some overlap, e.g., change AVAL=14 of ID '03' to 5, the hazard ratio steps up (to 0.283).

 

* (of course not necessarily "after" in calendar time)

fengyuwuzu
Pyrite | Level 9

Thank you so much for the explanation. It makes sense. 

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 619 views
  • 0 likes
  • 2 in conversation