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

Hello,

 

I am trying to change the y-axis parameter (i.e. probability of death30)  from 0-1 to 0-0.2 in the following regression model. I would appreciate your help. Thank you!

 

proc genmod data=ADRD(where=(ownership1 in (0 1))) DESCENDING;
class mcrnum;
class ownership1 (ref= "0") / param = ref;
class BENE_SEX_CD (ref = "1")/param = ref;
class bedsize (ref = "1")/param = ref;
class teachst (ref = "0")/param = ref;
class hightech (ref = "1")/param = ref;
model death30 = ownership1| h_nwi_nosra BENE_AGE_CNT BENE_SEX_CD bedsize teachst hightech/link=logit dist=bin ;
effectplot slicefit(x=h_nwi_nosra sliceby=ownership1 );
repeated subject=mcrnum / type=ind modelse;
run;

1 ACCEPTED SOLUTION
2 REPLIES 2

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