是否可以将预先计算的置信区间添加到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绘图仪?