Z-Score 标准化
这种方法基于原始数据的均值(mean)和标准差(standard deviation)进行数据的标准化。经过处理的数据符合标准正态分布,即均值为0,标准差为1。
转化函数为: Z=(x−)/s
A |
|
1 |
=T("D://house_prices_train.csv") |
2 |
=A1.avg(LotArea) |
3 |
=sqrt(var@s(A1.(LotArea))) |
4 |
=A1.run(LotArea=(LotArea-A2)/A3) |
Z-Score标准化后: