【发布时间】:2020-10-02 12:12:21
【问题描述】:
我们必须使用什么公式在 print(X_train) 中获得这些数字? enter image description here
【问题讨论】:
-
我知道我们为此使用 sklearn 库,但我想知道它是如何通过公式计算的
标签: python machine-learning methods scikit-learn transform
我们必须使用什么公式在 print(X_train) 中获得这些数字? enter image description here
【问题讨论】:
标签: python machine-learning methods scikit-learn transform
这就是 Standardscaler 函数的计算方式:
如果你想深入挖掘,请参考 - http://sebastianraschka.com/Articles/2014_about_feature_scaling.html#standardization-and-min-max-scaling
【讨论】: