I'm running a linear regression with just one IV. When I run the regression with a constant using statsmodels I get a Multi-Collinearity warning. After searching on here I can see it could be a scaling issue. the coefficents are
constant: 14.0202
IV: -0.0123
My question is how do I deal with scaling, is it as simple as scaling the IV so for example scaling it up by 100
df['IV'] = df['IV'] * 1000
or would it be better no normalise the IV
(x-mean(x))/stdev(x)