MinMaxForm
scalation.mathstat.MinMaxForm
class MinMaxForm(x_: VecMat, centered: Boolean = ...) extends Transform
The MinMaxForm class applies the MIN-MAX-transformation to move the data into the range [l .. u] (subtract min, multiply by bounds lu range over min-max range and add lower bound). Like ''MinMaxScaler'' in sk-learn.
Value parameters
- centered
-
whether the normalization should CENTER the data (defaults to true)
- x_
-
the input vector or matrix to be transformed (needed to get w)
Attributes
- See also
-
www.geeksforgeeks.org/machine-learning/standardscaler-minmaxscaler-and-robustscaler-techniques-ml/ x -> l + (x-min)(u-l)/(max-min)
- Graph
-
- Supertypes
Members list
In this article