Python Machine Learning Scale Standardscaler

[Solved] Python Machine Learning Scale Standardscaler | Scala - Code Explorer | yomemimo.com
Question : standardscaler in machine learning

Answered by : suriya-sur

# example of a standardization
from numpy import asarray
from sklearn.preprocessing import StandardScaler
# define data
data = asarray([[100, 0.001],	[8, 0.05],	[50, 0.005],	[88, 0.07],	[4, 0.1]])
print(data)
# define standard scaler
scaler = StandardScaler()
# transform data
scaled = scaler.fit_transform(data)
print(scaled)

Source : | Last Update : Sat, 08 Oct 22

Answers related to python machine learning scale standardscaler

Code Explorer Popular Question For Scala