2

My data contains binary outcome variable and 4 regressors. 2 regressors are binary and 2 are continuous (truncated to whole numbers).

  • Under what circumstances should the continuous variables be standardised in logistic regression?

According to this article variables should be standardised if they are not in the same scale. However, this is slightly confusing for me, we have not talked about standardisation in the context of logistic regression in class.

Michael R. Chernick
  • 39,640
  • 28
  • 74
  • 143
user1607
  • 729
  • 1
  • 5
  • 19

1 Answers1

2

You don't need to standardize for normal logistic regression as long as one keeps units in mind when interpreting the coefficients.

Standardizing can help with interpreting feature importance because then the coefficients should be apples to apples. (ie if your two standardized continuous variables have coeff of 0.01 and 0.7 then you know that the 2nd one is much more important.)

However for regularized logistic regression continuous variables should be standardized for best results.

Is standardisation before Lasso really necessary?