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

I want to run a series of logistic regressions(one predictor at a time). I want to do this using macro, but I have both continuous and categorical predictors in my dataset. Doing it manually, I would specify my categorical variable in the class statement. However, I don't know how to include a class statement in the macro. 

 

Partial dataset

Pass  Score    Absent    Tardy

0         65            0            1

1         100          1            0

0          43           1            0

0          68           1            1

 

 

Current code

%macro regression(var);
proc logistic data=data DESCENDING;
 model pass = &var;
run;
%mend;
1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

No macro needed, really.

 

See https://blogs.sas.com/content/iml/2017/02/13/run-1000-regressions.html

 

Scroll down to the section entitled "The BY way for many models". Use this method on the continuous variables. Then modify the code and use it on the categorical variables.

--
Paige Miller

View solution in original post

1 REPLY 1
PaigeMiller
Diamond | Level 26

No macro needed, really.

 

See https://blogs.sas.com/content/iml/2017/02/13/run-1000-regressions.html

 

Scroll down to the section entitled "The BY way for many models". Use this method on the continuous variables. Then modify the code and use it on the categorical variables.

--
Paige Miller

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 1 reply
  • 244 views
  • 0 likes
  • 2 in conversation