Last active
March 30, 2021 07:39
-
-
Save bkaankuguoglu/9c9c90f041c0eaea3c8148dc288d886e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sklearn.preprocessing import MinMaxScaler, StandardScaler, MaxAbsScaler, RobustScaler | |
def get_scaler(scaler): | |
scalers = { | |
"minmax": MinMaxScaler, | |
"standard": StandardScaler, | |
"maxabs": MaxAbsScaler, | |
"robust": RobustScaler, | |
} | |
return scalers.get(scaler.lower())() | |
scaler = get_scaler('robust') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment