from sklearn.preprocessing import PowerTransformer
参数说明
属性
from sklearn.preprocessing import PowerTransformer power = PowerTransformer(method=‘box-cox‘, standardize=False, copy=True)
X_lognormal = np.random.RandomState(616).lognormal(size=(3, 3))
power.fit(X_lognormal).transform(X_lognormal)
数据预处理第6讲:正态变换
https://blog.csdn.net/wong2016/article/details/104495470
Python sklearn学习之数据预处理——非线性转换
https://blog.csdn.net/qq_38958113/article/details/98051207
box-cox 转换
https://www.cnblogs.com/king-lps/p/7843395.html
box-cox变换 - 百度百科
https://baike.baidu.com/item/box-cox变换/10278422?fr=aladdin
原文:https://www.cnblogs.com/andylhc/p/14060027.html