normalization

The goal of normalization is to transform features to be on a similar scale. For example, consider the following two features:

  1. Feature X spans the range 154 to 24,917,482.
  2. Feature Y spans the range 5 to 22.

These two features span very different ranges.

Normalization might manipulate X and Y so that they span a similar range, perhaps 0 to 1.

Normalization provides the following benefits:

Linear scaling

Z-score scaling

Log scaling

Clipping