Data Scaler Selector is an open-source python library to select the appropriate data scaler (Min-Max, Robust or Standard Scaler) for your Machine Learning model.
Author: Asif Ahmed Neloy
Data Scaler is an open-source python library to select the appropriate data scaler for your Machine Learning model.
pip install DataScalerSelector
In order to run the scalerselector_regression the following must be ensured:
NULLdata must be handled- There should be no categorical variable.
- Select the
features XandTarget variable y - After selecting
Xandyrun the follwing:
from DataScalerSelector import *
scalerselector_regression(X,y)
For details see this notebook