标签: python python-ggplot
无法找到将错误栏添加到Python ggplot图中的方法。 following issue被忽视了一年多。 docs。
答案 0 :(得分:1)
我遇到了同样的问题但没有找到解决办法。但是我确实找到了解决方法。你可以在ggplot的风格中使用matplotlib。从那里开始使用误差棒要容易得多。我附上了一些我用过的代码的例子。
plt.style.use('ggplot')
这是我的一个代码的摘录
df2.gLongCrFiltered['mean'].plot(kind='bar', yerr=df2.gLongCrFiltered['std'])
返回了此