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-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

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.

SAS Training: Just a Click Away

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

Browse our catalog!

Discussion stats
  • 2 replies
  • 492 views
  • 0 likes
  • 2 in conversation