Hello,
I want to know if there is a way that I can elimnate refrence option in class statement using genmod procedure?
Because when I run my model, it gives me the last category of each variable in the class as a reference to that variable.
There are multiple ways to paramaterize class variables. You can change the paramaterization in the CLASS statement with the PARAM option.
e.g.:
PROC GENMOD data=data;
class treatment / param=X;
model outcome = treatment;
run;
where X is any of the options detailed here (e.g. ref, effect, glm, etc.). The default is the glm parameterization:
PROC GENMOD: CLASS Variable Parameterization
You can also use the REF option to specify the reference level.
e.g.:
PROC GENMOD data=data;
class treatment(ref='Control');
model outcome = treatment;
run;
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.