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

Hi,
I am undertaking competing risk analysis. One of the explanatory variables called "Recode_changed" is categorical with 11 levels/ categories (ranging from 1 to 11). SAS by default chooses 11 as reference. Does anyone know how to change this to for example 2 or 3? 

 

My code:

proc phreg data=LIB.'COMPETING RISK SET UP 7 CAT1S'n;
class sexd Recode_changed / param=ref;
model Follow_time*Status(0)=sexd Recode_changed age Decrease_med_TOTAL
Increase_med_TOTAL / eventcode=1;
run;

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
Rick_SAS
SAS Super FREQ

See this example in the doc.

class sexd Recode_changed(ref='2') / param=ref;

View solution in original post

2 REPLIES 2
Rick_SAS
SAS Super FREQ

See this example in the doc.

class sexd Recode_changed(ref='2') / param=ref;

nmas
Calcite | Level 5

Amazing! Thank you very much.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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