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!!!
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.
Concerning the mean you included, is it the mean age of cases or controls or the entire dataset?
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.