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

Join the 2025 SAS Hackathon!

Calling all data scientists and open-source enthusiasts! Want to solve real problems that impact your company or the world? Register to hack by August 31st!

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