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

  Hello, 

 

I am a new SAS user and I need help with clarifying any of the following concepts:

 

1. When conducting multiple linear regression using mostly continuous predictors, and one categorical predictor that was coded as 0/1 (for instance Sex: 0= male and 1=female), can you use proc reg (since the indicator variable is already created) or do you have to use proc glm with a class statement?

 

Can I use a code like this:

proc reg data=new;

model BMI = Sex Age Height Weight;

run;

 

2. Is there a difference between stepwise selection and lasso selection when trying to identify the best fit model?

 

I appreciate any insight you can offer for any of the questions. 

1 ACCEPTED SOLUTION

Accepted Solutions
WarrenKuhfeld
Ammonite | Level 13

Yes you can use PROC REG with a 0/1 variable.

 

Lasso is one of many variable selection methods.  If you are interested in variable selection, see proc glmselect.

View solution in original post

2 REPLIES 2
WarrenKuhfeld
Ammonite | Level 13

Yes you can use PROC REG with a 0/1 variable.

 

Lasso is one of many variable selection methods.  If you are interested in variable selection, see proc glmselect.

KachiM
Rhodochrosite | Level 12

You may remember:

Since your dependent variable, BMI, is computed using Height and Weight, the inclusion of the latter as independent variables,

will be highly correlated.

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
  • 1561 views
  • 2 likes
  • 3 in conversation