Answers for "normalization function in python datascience"

0

data normalization python

from sklearn import preprocessing
normalizer = preprocessing.Normalizer().fit(X_train)  
X_train = normalizer.transform(X_train)
X_test = normalizer.transform(X_test)
Posted by: Guest on January-30-2021

Code answers related to "normalization function in python datascience"

Python Answers by Framework

Browse Popular Code Answers by Language