📜  标准缩放器与最小最大缩放器 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:16.330000             🧑  作者: Mango

代码示例1
StandardScaler()
# the mean value in each column is assigned a value of 0.0 if present
# and the values are centered around 0.0 with values both positive and negative.

MinMaxScaler()
# the largest raw value for each column now has the value 1.0 
# and the smallest value for each column now has the value 0.0.

# for more information and examples :
# https://machinelearningmastery.com/standardscaler-and-minmaxscaler-transforms-in-python/