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

If a variable has value ranging from 5000 to -5000, how does normalizing it to the range of 1 and -1 affect the regression model result? Will this variable become less influential?

1 ACCEPTED SOLUTION

Accepted Solutions
PaigeMiller
Diamond | Level 26

how does normalizing it to the range of 1 and -1 affect the regression model result? Will this variable become less influential?

If you are talking about ordinary least squares regression, then changing the units like this will not make the variable "less influential". If you are fitting the model with some other fitting technique (like for example partial least squares regression) then it is possible that this will make the variable "less influential".

At least, that's for my definition of "influential". Maybe you have a different definition? What do you mean by "influential"? Is there a standard mathematical description that you can provide for the meaning of "influential"? My definition would be the same sum of squares, in which case there should be no change to the sum of squares if you rescale an independent variable in ordinary least squares regression.

--
Paige Miller

View solution in original post

9 REPLIES 9
stat_sas
Ammonite | Level 13

Hi,

Do you want to standardize variable using range?

aha123
Obsidian | Level 7

Yes, standarize/normlaize variable from [-5000,5000] to [-1,1] and want to know the implication for model?

stat_sas
Ammonite | Level 13

Okay, you can use this syntax to standardize variable. Independent variables in regression usually become in different units (kgs, meters etc.) so we convert them into comaptible units by stadardizing them to have mean equal to zero and standard deviation 1. Hope this helps.

proc stdize data=have out=want method=range;

var var;

run;

aha123
Obsidian | Level 7

This is not what I am looking for. I would like to know what the effect of normalizing a variable is on model building.

stat_sas
Ammonite | Level 13

Are you normalizing dependent variable or independent variables?

PaigeMiller
Diamond | Level 26

how does normalizing it to the range of 1 and -1 affect the regression model result? Will this variable become less influential?

If you are talking about ordinary least squares regression, then changing the units like this will not make the variable "less influential". If you are fitting the model with some other fitting technique (like for example partial least squares regression) then it is possible that this will make the variable "less influential".

At least, that's for my definition of "influential". Maybe you have a different definition? What do you mean by "influential"? Is there a standard mathematical description that you can provide for the meaning of "influential"? My definition would be the same sum of squares, in which case there should be no change to the sum of squares if you rescale an independent variable in ordinary least squares regression.

--
Paige Miller
SteveDenham
Jade | Level 19

And to carry this further, are you simply rescaling, or are you in fact normalizing.  In the first, you would just divide the values by 5000.  In the second, since the values are already centered on zero (I assume), you would divide the values by the standard deviation.  As Paige points out, this should have no effect on the "influence" of the variable, EXCEPT...

If this is a multiple regression, where there are several independent variables, and you normalize only one of them, it's pretty obvious that you are going to change the (partial) covariance between that variable and the dependent variable.  If you normalize all of the variables, influence on the dependent variable is more a matter of changes in standard deviation units rather than on the original scale.

Short answer: Normalizing MAY (and probably WILL) change influence as measured by partial R squared, or by change in IC.  Rescaling should NOT change influence.

Steve Denham

PaigeMiller
Diamond | Level 26

It would help the discussion if aha123 would state the actual model used, how many independent variables are there, also are there interactions or quadratic or other polynomial terms (or is it a nonlinear model), and it would further help to know if we are discussing ordinary least squares or some other model fitting technique.

--
Paige Miller
SteveDenham
Jade | Level 19

Good call--REG, PLS, ROBUSTREG, QUANTREG and MIXED may all give different results, as they use five different algorithms for optimizing the function.  And that is just for a linear function.

Steve Denham

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

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
  • 9 replies
  • 7203 views
  • 3 likes
  • 4 in conversation