我无法让我的数据点之间的这些线消失!似乎每当我尝试添加错误栏时,它都会这样做。如果你看图表,第一个是没有误差线的,第二个是有它的。这是 pyplot errorbar 的常见副作用吗?有谁知道它为什么这样做,或者如何让它消失?
plt.figure()
plt.scatter(x, y, label = 'blah')
plt.errorbar(x, y, yerr = None, xerr = x_err)
plt.plot(x, f) #this is a line of best fit