BookmarkSubscribeRSS Feed
mari776
Calcite | Level 5

I defined a Cox model that evaluates the relationship between the number of diseases (x) and hospitalisations for infectious diseases (y). I would like to represent in a plot the hazard ratios, with their 95% CIs, for different values of the number of diseases (0, 1, 2, 3, ...) . Is there a way to do this?
Thank you in advance.

2 REPLIES 2
Rick_SAS
SAS Super FREQ

I think so. Can you show the code that you are running to fit the Cox model?

mari776
Calcite | Level 5

Hi Rick,

this is the code I considered:

 

proc phreg data=prova;
class id frailty (param=ref ref='0') ;
model time*ric(0)= sex age frailty n_diseases /ties=breslow rl ;
random id/dist=lognormal;
run; quit;
 
The continuous predictor I'm considering is n_diseases (number of diseases). 
 

sas-innovate-2024.png

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 102 views
  • 0 likes
  • 2 in conversation