[Matplotlib-users] Fwd: Possible to change MPL color scheme?

2012-07-21 Thread klo uo
On Sat, Jul 21, 2012 at 7:37 PM, Felix Patzelt wrote: Have you ever been in a talk where someone uses 100% green on a slide? The result is usually that no one can see what is shown unless it is a really large green area. No, but I would have expected in that case appropriate bg. I've seen a

Re: [Matplotlib-users] Fwd: Possible to change MPL color scheme?

2012-07-21 Thread Felix Patzelt
You want this? import matplotlib as mpl mpl.rcParams['axes.color_cycle'] = ['#FF', '#00FF00', '#FF', '#00', 'FF00FF', '00', '00'] # test it from pylab import * import matplotlib.cm as cm x = linspace(0, 2*pi, num=100, endpoint=True) for i in range(1, 10): plot(x,

Re: [Matplotlib-users] Fwd: Possible to change MPL color scheme?

2012-07-21 Thread klo uo
Ah all right, thanks for the tips :) I somehow missed that setting while browsing matplotlibrc Cheers On Sat, Jul 21, 2012 at 9:33 PM, Felix Patzelt wrote: You want this? import matplotlib as mpl mpl.rcParams['axes.color_cycle'] = ['#FF', '#00FF00', '#FF', '#00',