bigframes.ml.preprocessing.MinMaxScaler#
- class bigframes.ml.preprocessing.MinMaxScaler[source]#
Transform features by scaling each feature to a given range.
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.
Methods
__init__()fit(X[, y])Compute the minimum and maximum to be used for later scaling.
fit_transform(X[, y])Fit to data, then transform it.
get_params([deep])Get parameters for this estimator.
to_gbq(model_name[, replace])Save the transformer as a BigQuery model.
transform(X)Scale the data.