danfo.MinMaxScaler
Transform features by scaling each feature to a range of max and min values.
Last updated
Was this helpful?
Transform features by scaling each feature to a range of max and min values.
Last updated
Was this helpful?
class danfo.MinMaxScaler
danfo.js provides the MinMaxScaler class for standardization of DataFrame and Series. This estimator scales and translates each feature individually such that it is in the given range on the training set, e.g. between zero and one.
This transformation is often used as an alternative to zero mean, unit variance scaling like .
The API is similar to sklearn's , and provides a fit and transform method.
See also