BookmarkSubscribeRSS Feed
djohn051
Fluorite | Level 6

PROC GENMOD DATA = TEMP;

CLASS ID AGE_GROUP(REF='0');

MODEL Y (EVENT = '1')  = AGE_GROUP/dist=bin link = logit;

REPEATED SUBJECT = ID /TYPE = exch;

ESTIMATE 'AGE_GROUP EFFECT' AGE_GROUP 1 -1/EXP;

RUN;

 

Say I use the above syntax and want to know the odds of being in AGE_GROUP 1 relative to 0, as well as AGE_GROUP 2 relative to 0. Is there a way to compute that without producing a dummy variable?

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
  • 0 replies
  • 808 views
  • 0 likes
  • 1 in conversation