pd.describe returns非零是什么意思?
pd.describe returns non-zero mean?
我正在规范化我的数据:
df = (df-df.mean())/df.std()
然后继续
统计数据 = df.describe()
为什么我得到的是非零均值,但 std=1?
您的均值非常接近于零,因为您的标准差非常接近于 1。Python 以有限的精度保存计算值,这将使您的答案精确到一定的精度.
the stored value is an approximation to the original decimal
fraction
我正在规范化我的数据: df = (df-df.mean())/df.std()
然后继续 统计数据 = df.describe()
为什么我得到的是非零均值,但 std=1?
您的均值非常接近于零,因为您的标准差非常接近于 1。Python 以有限的精度保存计算值,这将使您的答案精确到一定的精度.
the stored value is an approximation to the original decimal fraction