在ggplot Python中添加错误栏

时间:2015-10-06 10:29:32

标签: python python-ggplot

无法找到将错误栏添加到Python ggplot图中的方法。 following issue被忽视了一年多。 docs

中没有任何内容

1 个答案:

答案 0 :(得分:1)

我遇到了同样的问题但没有找到解决办法。但是我确实找到了解决方法。你可以在ggplot的风格中使用matplotlib。从那里开始使用误差棒要容易得多。我附上了一些我用过的代码的例子。

plt.style.use('ggplot')

这是我的一个代码的摘录

df2.gLongCrFiltered['mean'].plot(kind='bar', yerr=df2.gLongCrFiltered['std'])

返回了此enter image description here