Minmaksnormalisering
Minmaksnormalisering (min-max normalization) is a data preprocessing technique used to rescale numerical features to a fixed range, typically [0, 1]. It preserves the relative ordering of values and the shape of the distribution while constraining the scale of each feature, which can improve the performance of many machine learning algorithms.
The standard formula for a value x in a feature with minimum xmin and maximum xmax is
Applications of minmaksnormalisering include algorithms that rely on distance measurements or gradient-based optimization, such as k-nearest
Advantages of minmaksnormalisering include its simplicity, the preservation of relationships among values, and the production of
Variants and considerations: scaling to [-1, 1] can be achieved with a small modification to the formula.