I am working my way through Normalization (data transformation) of data and was curious about four methods:
- min-max normalization, 2. z-score, 3. z-score mean absolute deviation, and 4. decimal scaling.
I am reading through a book so this is difficult to understand but it seems to me that the first three normalization methods output to a value range between 0 and 1 and the last with a range of -1 to 1.
Am I understanding this correctly or is the range of values different?
Reference: Data Mining Concepts and Techniques In the book it mentions:
To help avoid dependence on the choice of measurement units, the data should be normalized. This involves transforming the data to fall within a smaller or common range such as [-1,1] or [0.0-1.0].
As you can see it says "common range" so I am not sure if that means what i mentioned above for the different methods or if it can actually be "anything"