Flow
sklearn.preprocessing._data.MinMaxScaler

sklearn.preprocessing._data.MinMaxScaler

Visibility: public Uploaded 25-03-2021 by Pieter Gijsbers sklearn==0.23.1 numpy>=1.6.1 scipy>=0.9 0 runs
0 likes downloaded by 0 people 0 issues 0 downvotes , 0 total downloads
  • openml-python python scikit-learn sklearn sklearn_0.23.1
Issue #Downvotes for this reason By


Loading wiki
Help us complete this description Edit
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. The transformation is given by:: X_std = (X - X.min(axis=0)) / (X.max(axis=0) - X.min(axis=0)) X_scaled = X_std * (max - min) + min where min, max = feature_range. This transformation is often used as an alternative to zero mean, unit variance scaling.

Parameters

copySet to False to perform inplace row normalization and avoid a copy (if the input is already a numpy array).default: true
feature_rangeDesired range of transformed datadefault: [0, 1]

0
Runs

List all runs
Parameter:
Rendering chart
Rendering table