Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
找不到将误差线添加到 Python ggplot 图中的方法。以下问题被忽视了一年多。文档中没有任何内容。
我遇到了同样的问题,但没有找到解决方案。但是我确实找到了解决方法。您可以使用 ggplot 风格的 matplotlib。从那里使用误差线要容易得多。我附上了我使用的一些代码的示例。
plt.style.use('ggplot')
这是我的一个代码的摘录
df2.gLongCrFiltered['mean'].plot(kind='bar', yerr=df2.gLongCrFiltered['std'])
它返回了这个