Dear All,
I am doing COX analysis, here is my syntax:
proc phreg data=a;
class HR;
model time*status(0)=sex HR age HTN / rl;
run;
Sex , HR, and HTN are binary variables, age is a continuous variable. the output of Analysis of Maximum Likelihood Estimates showed below:
Parameter DF Hazard 95% Hazard Ratio Confidence
Ratio Limits
HR low 1 16.143 5.8 79.678
age 1 0.753 0.643 0.882
sex 1 0.099 0.015 0.637
HTN 1 5100 0 .
Why HTN has this kind of 95% hazard ratio confidence limits: 0, . ?
is this related to small number of no HTN in HR low group? below is a 2X2 table:
NO HTN HTN
HRLOW 1 17
HRhigh 4 51
How can I solve this problem?
Thanks for your help.