如何格式化matplotlib中的错误栏

时间:2015-08-07 19:57:35

标签: python matplotlib graph errorbar

我正在将数据从文件导入到pandas DataFrame中,我想用错误栏来绘制数据。这是我的代码:

FormatNumber()

但是,我得到的图表看起来像enter image description here

如您所见,图表上错误栏的格式全部搞砸了。我不确定为什么它不像普通的错误栏那样绘图,而是随机放置线条。

1 个答案:

答案 0 :(得分:3)

您的问题与Nx1数组的形状有关。 unique-together表示数组应该是2xN数组或yerr数组。您的Nx2数组的形状为# create a 2xN array for the error bars yerr = np.array([df['negative error!'],df['positive error!']])

替换你的第二行
{{1}}

你应该没问题