You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`MinMaxScaler` transforms a dataset of `Vector` rows, rescaling each feature to a specific range (often [0, 1]). It takes parameters:
912
+
913
+
*`min`: 0.0 by default. Lower bound after transformation, shared by all features.
914
+
*`max`: 1.0 by default. Upper bound after transformation, shared by all features.
915
+
916
+
`MinMaxScaler` is a `Model` which can be `fit` on a dataset to produce a `MinMaxScalerModel`; this amounts to computing summary statistics. The model can then transform each feature individually such that it is in the given range.
917
+
918
+
The rescaled value for a feature E is calculated as,
`Bucketizer` transforms a column of continuous features to a column of feature buckets, where the buckets are specified by users. It takes a parameter:
0 commit comments