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!
class sexd Recode_changed(ref='2') / param=ref;
class sexd Recode_changed(ref='2') / param=ref;
Amazing! Thank you very much.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.
Ready to level-up your skills? Choose your own adventure.