BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
DIZJ
Calcite | Level 5

Hello, I need to compute the 90 and 95% CI for the hazard ratio estimate. In order to not perform the same computations twice, I was wondering if there is a way to specify more than one alpha level in the same proc phreg. The closest solution I found was to specify 2 hazardratio statements:

 

proc phreg data = test;
  class trt01p;
  model aval*cnsr(1) = trt01p / ties = exact;
  hazardratio trt01p / alpha=0.05;
  hazardratio trt01p / alpha=0.10;

  ods output HazardRatios =hr;
run;

 

The output dataset looks like this:

 

Description        HazardRatio      WaldLower      WaldUpper

trt A vs trt B       x                        y1                    y2

trt A vs trt B       x                        y3                    y4

 

The problem is that in the output dataset there is no variable to distinguish between which alpha it is used to compute each CI, as description is the same for each alpha.

 

Thank you in advance.

 

1 ACCEPTED SOLUTION

Accepted Solutions
FreelanceReinh
Jade | Level 19

Hello @DIZJ and welcome to the SAS Support Communities!

 

If you specify a label in the HAZARDRATIO statement, then this will be included (in variable Label) in the output dataset as well.

Example:

hazardratio 'alpha=0.05' trt01p / alpha=0.05;
hazardratio 'alpha=0.10' trt01p / alpha=0.10;

 

View solution in original post

1 REPLY 1
FreelanceReinh
Jade | Level 19

Hello @DIZJ and welcome to the SAS Support Communities!

 

If you specify a label in the HAZARDRATIO statement, then this will be included (in variable Label) in the output dataset as well.

Example:

hazardratio 'alpha=0.05' trt01p / alpha=0.05;
hazardratio 'alpha=0.10' trt01p / alpha=0.10;

 

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1 reply
  • 1209 views
  • 0 likes
  • 2 in conversation