from sklearn import preprocessing
scaler = preprocessing.MinMaxScaler(feature_range=(0, 1))
rescaled = scaler.fit_transform(data)
from sklearn import preprocessing
scaler = preprocessing.StandardScaler().fit(data)
rescaled = scaler.transform(data)
from sklearn import preprocessing
scaler = preprocessing.Binarizer(threshold=0.5)
rescaled = scaler.transform(data)
pip install jupyter => Install Jupyterpip install notebook => Alternate wayjupyter notebook => Opens a server in browser, Runs notebookenter => New lineshift + enter => Runtab => Suggestion/Autocomplete!mkdir name => Create file%lsmagic => Shows magic commands%%HTML => To write html%matplotlib inline => To write matplotlib commands