BookmarkSubscribeRSS Feed
peppapig
Calcite | Level 5

PROC GENMOD DATA = TEMP;

CLASS ID  ;

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

REPEATED SUBJECT = ID /TYPE = exch;

ESTIMATE 'age'  age 30.5 / exp;

RUN;

This code does have output of exp(age), L'beta estimate.

But I do not know what value to use for age in the ESTIMATE statement, mean age??

Thank you!!!

2 REPLIES 2
Reeza
Super User

The exp(age) is your odds ratio, for every year increase in age...etc.

If you're using a specified age then that's different than the standard odds ratio.

SmritiDhakal
Calcite | Level 5

Concerning the mean you included, is it the mean age of cases or controls or the entire dataset?

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

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!

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
  • 2 replies
  • 2063 views
  • 0 likes
  • 3 in conversation