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

Dear all,

 

I need to run tonnes of cox model. I want to get the hazard ratio for expo_&var. below. Ideally i would like to output the hazard ratios into a dataset. Do correct me if i am wrong:  I read the guide for PROC SURVEYPHREG, the keyword for output statement is quite limited and there are no options to save the hazard ratios into a dataset?  Any input would be greatly appreciated.

 

Here are the codes:

PROC SURVEYPHREG DATA = new2;
       CLUSTER clus;
        STRATA str;
        WEIGHT &weight;        
        MODEL (start,stop)*censor_&var.(0)      =      &country    
                                                age18_29      age30_44        age45_59
                                                sexf
                                                expo_&var./ RISKLIMIT TIES = EFRON;
RUN;

 

      
 

1 ACCEPTED SOLUTION

Accepted Solutions
Astounding
PROC Star

Add this statement before you run the PROC step:

 

ods trace on;

 

This will name all the pieces of output that could be available if you choose to capture them.  Whichever one looks right, use an ODS OUTPUT statement to transfer the values to a SAS data set.  It may take some fiddling, but all pieces of output are available and can be captured in a SAS data set if you use ODS.  (You will need to re-run the program, once you have added the proper ODS OUTPUT statement.)

View solution in original post

2 REPLIES 2
Astounding
PROC Star

Add this statement before you run the PROC step:

 

ods trace on;

 

This will name all the pieces of output that could be available if you choose to capture them.  Whichever one looks right, use an ODS OUTPUT statement to transfer the values to a SAS data set.  It may take some fiddling, but all pieces of output are available and can be captured in a SAS data set if you use ODS.  (You will need to re-run the program, once you have added the proper ODS OUTPUT statement.)

clim072
Fluorite | Level 6
Thanks it works now. 🙂

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 991 views
  • 1 like
  • 2 in conversation