BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
bhr-q
Pyrite | Level 9

When we perform regression analysis with categorical independent variables in SAS, if I let SAS choose the reference group, what is the default setting for that? 

 

I know the sas code

 

Thanks,

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26


Example:

proc glm data=sashelp.class;
class sex(ref='F');
model height=sex weight age;
run; quit;

 

 

Documentation for the CLASS statement in PROC GLM

https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glm_syntax04.htm

--
Paige Miller

View solution in original post

4 REPLIES 4
StatDave
SAS Super FREQ
It uses the last level when internally sorted in alphanumeric order. So, with levels A, B, and C, it will use C as the reference level.
bhr-q
Pyrite | Level 9
Thanks so much for your answer, is there any way to set the reference category in proc GLM by ourselves?
PaigeMiller
Diamond | Level 26


Example:

proc glm data=sashelp.class;
class sex(ref='F');
model height=sex weight age;
run; quit;

 

 

Documentation for the CLASS statement in PROC GLM

https://documentation.sas.com/doc/en/pgmsascdc/9.4_3.4/statug/statug_glm_syntax04.htm

--
Paige Miller

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

What is ANOVA?

ANOVA, or Analysis Of Variance, is used to compare the averages or means of two or more populations to better understand how they differ. Watch this tutorial for more.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 4 replies
  • 1732 views
  • 8 likes
  • 3 in conversation