Python Pylab散点图误差条(每个点上的误差是唯一的)

时间:2014-03-12 21:46:48

标签: python matplotlib

我正在尝试2个数组的散点图,其中我有第三个数组,其中包含每个点上的绝对误差(y方向的误差)。我希望误差条介于两者之间(点a - a上的错误)和(指向a上的a +错误)。有没有办法用pylab实现这一点,如果没有任何关于我怎么做的想法呢?

2 个答案:

答案 0 :(得分:20)

这几乎与其他答案相似,但您根本不需要scatter绘图,您只需为{{3指定类似散点图的格式(fmt - 参数) }}:

import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
e = [0.5, 1., 1.5, 2.]
plt.errorbar(x, y, yerr=e, fmt='o')
plt.show()

结果:

errorbar

可以在enter image description here文档中找到可用的fmt参数列表:

character   description
'-'     solid line style
'--'    dashed line style
'-.'    dash-dot line style
':'     dotted line style
'.'     point marker
','     pixel marker
'o'     circle marker
'v'     triangle_down marker
'^'     triangle_up marker
'<'     triangle_left marker
'>'     triangle_right marker
'1'     tri_down marker
'2'     tri_up marker
'3'     tri_left marker
'4'     tri_right marker
's'     square marker
'p'     pentagon marker
'*'     star marker
'h'     hexagon1 marker
'H'     hexagon2 marker
'+'     plus marker
'x'     x marker
'D'     diamond marker
'd'     thin_diamond marker
'|'     vline marker
'_'     hline marker

答案 1 :(得分:16)

>>> import matplotlib.pyplot as plt
>>> a = [1,3,5,7]
>>> b = [11,-2,4,19]
>>> plt.pyplot.scatter(a,b)
>>> plt.scatter(a,b)
<matplotlib.collections.PathCollection object at 0x00000000057E2CF8>
>>> plt.show()
>>> c = [1,3,2,1]
>>> plt.errorbar(a,b,yerr=c, linestyle="None")
<Container object of 3 artists>
>>> plt.show()

其中a是您的x数据 b是你的y数据 c是你的y错误,如果有的话

请注意,c是每个方向的错误