BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
lmyers2
Obsidian | Level 7

Hello,

 

I'm using SAS 9.4 full edition through a server. I will be running a logistic regression model with a very large data set (2700 observations in smaller group and 50000 observations in larger group). I have several categorical variables and am not sure how you program using the class statement and choosing the reference group for each, since I've only run a logistic regression model with 1 categorical variable. Can you help?

 

Thanks

Laura

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Refer to the second example in the documentation which covers regression with categorical variables. 

Make sure to set the PARAM=REF on your model.

View solution in original post

2 REPLIES 2
stat_sas
Ammonite | Level 13

Hi,

 

This can be extended for multiple categorical variables in class statement. Assuming var1 and var2 are two classification variables.

 

proc logistic data=have;

class var1 (param=ref ref='A') var2 (param=ref ref=first);

model dep_var (event='1')= var1 var2;

run;

Reeza
Super User

Refer to the second example in the documentation which covers regression with categorical variables. 

Make sure to set the PARAM=REF on your model.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 2 replies
  • 1470 views
  • 1 like
  • 3 in conversation