I have a time series of data for which I have the quantity, y, and its error, yerr. I would now like to create a plot that shows y against phase (i.e. time / period % 1) wit
You may use the ecolor optional argument in pylab.errorbar as you use the color argument in pylab.scatter:
ecolor
pylab.errorbar
color
pylab.scatter
pylab.errorbar( phase, y, yerr=err, fmt=None, marker=None, mew=0, ecolor=time )