gpt4 book ai didi

python - 绘制 95% 置信区间 errorbar python pandas dataframes

转载 作者:太空狗 更新时间:2023-10-30 00:23:58 25 4
gpt4 key购买 nike

我想用 Python pandas、matpolib 显示 95% 的置信区间...但我坚持了下来,因为对于通常的 .std() 我会这样做:

import pandas as pd
import numpy as np

import matplotlib

matplotlib.use('Agg')

import matplotlib.pyplot as plt
import math

data = pd.read_table('output.txt',sep=r'\,', engine='python')
Ox = data.groupby(['Ox'])['Ox'].mean()
Oy = data.groupby(['Ox'])['Oy'].mean()
std = data.groupby(['Ox'])['Oy'].std()

plt.plot(Ox, Oy , label = 'STA = '+ str(x))
plt.errorbar(Ox, Oy, std, label = 'errorbar', linewidth=2)

plt.legend(loc='best', prop={'size':9.2})

plt.savefig('plot.pdf')
plt.close()

但是我还没有在 pandas 方法中找到可以帮助我的东西。有人知道吗?

最佳答案

使用 2 * std 估计 95% 区间

在正态分布中,区间 [μ - 2σ, μ + 2σ] 覆盖 95.5%,所以您可以使用 2 * std 来估计 95% 区间:

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt

df = pd.DataFrame()
df['category'] = np.random.choice(np.arange(10), 1000, replace=True)
df['number'] = np.random.normal(df['category'], 1)

mean = df.groupby('category')['number'].mean()
std = df.groupby('category')['number'].std()

plt.errorbar(mean.index, mean, xerr=0.5, yerr=2*std, linestyle='')
plt.show()

结果:

result

使用百分位数

如果您的分布偏斜,最好使用不对称误差线并从百分位数中获取 95% 的区间。

import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from scipy.stats import skewnorm

df = pd.DataFrame()
df['category'] = np.random.choice(np.arange(10), 1000, replace=True)
df['number'] = skewnorm.rvs(5, df['category'], 1)

mean = df.groupby('category')['number'].mean()
p025 = df.groupby('category')['number'].quantile(0.025)
p975 = df.groupby('category')['number'].quantile(0.975)

plt.errorbar(
mean.index,
mean,
xerr=0.5,
yerr=[mean - p025, p975 - mean],
linestyle='',
)
plt.show()

结果:

enter image description here

关于python - 绘制 95% 置信区间 errorbar python pandas dataframes,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44603615/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com