将预先计算的置信区间添加到seaborn tsplot

时间:2017-03-22 15:30:09

标签: python pandas seaborn

是否可以将预先计算的置信区间添加到seaborn tsplot中?例如:

df = pd.DataFrame({'value': np.random.rand(31),
                   'upper': np.random.rand(31)+1,
                   'lower': np.random.rand(31)-1,
                   'time': range(31)
                  })
df['subject'] = 0
sns.tsplot(data=df, value='value', time='time', unit='subject')

plt.show()

有没有办法指定'鞋帮'并且'降低'对于置信区间,使用seaborn内置的CI绘图仪?

0 个答案:

没有答案