欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

python sklearn 数据预处理 均值移除

程序员文章站 2024-03-25 17:20:52
...

python sklearn 数据预处理 均值移除

"""
    数据预处理 均值移除
"""
import numpy as np
import sklearn.preprocessing as sp

# 准备数据
raw_samples = np.array([
    [17, 90, 4000],
    [20, 80, 5000],
    [23, 75, 5500]
])

# 均值移除
result = sp.scale(raw_samples)
print("----------均值移除结果\n", result)
print("----------列求均值\n", result.mean(axis=0))
print("----------列求方差\n", result.std(axis=0))

python sklearn 数据预处理 均值移除

相关标签: python