Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Pyplot errorbar keeps connecting my points with lines?

I am having trouble getting these lines between my data points to go away! It seems to be whenever I try to add error bars it does this. If you look at the graphs, the first is without the errorbar line, and the second is with it. Is this a usual side effect of pyplot errorbar? Does anyone know why it does this, or how to make it go away?

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

enter image description here enter image description here

like image 945
Emma Smith Avatar asked Oct 13 '16 11:10

Emma Smith


1 Answers

You can set the line style (ls) to 'none' (caution: ls=None does not work):

import numpy as np
import matplotlib.pylab as plt

x = np.arange(10)
y = np.arange(10)
yerr = np.random.random(10)
xerr = np.random.random(10)

plt.figure()
plt.subplot(121)
plt.scatter(x, y, label = 'blah')
plt.errorbar(x, y, yerr = None, xerr = xerr) 

plt.subplot(122)
plt.scatter(x, y, label = 'blah')
plt.errorbar(x, y, yerr = None, xerr = xerr, ls='none') 

enter image description here

like image 115
Bart Avatar answered Sep 24 '22 11:09

Bart