change default line color order in matplotlib
September 28th, 2011 by Lawrence David
to change the default line color order (color cycle in matplotlib-speak):
ax.set_color_cycle(['green', 'orange', 'blue', 'red','brown','pink'])
note that this will also go ahead and reset the line counter.
