标签: pandas statistics normalization data-science
我正在这样规范我的数据: df =(df-df.mean())/ df.std()
然后继续 stats = df.describe()
为什么我得到非零平均值,但std = 1?
答案 0 :(得分:1)
您的均值非常接近零,因为您的标准差非常接近1。Python会以有限的精度保存计算值,这将使您的答案精确到一定的精度。
引用documentation:
存储的值是原始十进制的近似值 分数