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.
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;
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;
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
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.
Ready to level-up your skills? Choose your own adventure.