2014-03-05 21:13 GMT+01:00 Adam Hughes <hughesada...@gmail.com>:
> Thanks Andreas.  That is correct; however, I'd rather not make this change
> global.  I only want a subset of my plots to have this behavior.  I feel
> like changing the rcparams would change this globally and probably confuse
> users who don't know this is being called.

Try using rc_context:

with plt.rc_context(rc={'axes.color_cycle': ['orange', default_cycle[1::]]}):
    plt.plot(...)

This should change the color cycle only within the scope of the with
clause (not tested with this particular rcparam).

Goyo

------------------------------------------------------------------------------
Subversion Kills Productivity. Get off Subversion & Make the Move to Perforce.
With Perforce, you get hassle-free workflows. Merge that actually works. 
Faster operations. Version large binaries.  Built-in WAN optimization and the
freedom to use Git, Perforce or both. Make the move to Perforce.
http://pubads.g.doubleclick.net/gampad/clk?id=122218951&iu=/4140/ostg.clktrk
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to