Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to NOT specify a color for each plotted line:

for i in range(20):
   ax1.plot(x, y)

If you look at the image for this, matplotlib attempts to pick colors for each line that are different, but eventually it re-uses colors. I just want to stop it from repeating already used colors AND/OR feed it a list of colors to use.

share|improve this question

3 Answers

up vote 9 down vote accepted

In 1.0+ versions of matplotlib you can use axes.color_cycle (see, example), and in older versions, Axes.set_default_color_cycle (see, example).

share|improve this answer
More along the lines of what I was looking for... Any chance you can add information on how to use a colormap to generate list of N colors? – dlamotte Feb 11 '11 at 16:27
4  
@xyld - Not to plug my own answer too much, but there's an example at the bottom of this answer: stackoverflow.com/questions/4805048/… Basically you just do this: [colormap(i) for i in np.linspace(0, 0.9, num_plots)], where colormap is one of the colormaps in matplotlib.pyplot.cm and numplots is the number of unique colors that you want. Beware that this can result in colors that are hard to distinguish from each other, though!! – Joe Kington Feb 11 '11 at 16:44
2  
Nice answer Joe, and it seems to answer xyld's question, so I'll just leave it at this. Also, though, it's worth noting that there are some good answers to question on generating distinct colors, such as stackoverflow.com/questions/470690/… – tom10 Feb 11 '11 at 16:50
Thanks a lot guys, pointed me in the right direction... definitely some hard to determine colors in there, but I'll read up on the last comment, looks good – dlamotte Feb 11 '11 at 16:58
Interesting (and useful) stuff! Thanks! – Joe Kington Feb 11 '11 at 17:01

Here's an answer to a similar question:
How do I make bar plots automatically cycle across different colors?

share|improve this answer
I liked your answer too, +1 – dlamotte Feb 11 '11 at 16:57

I don't know if you can automatically change the color, but you could exploit your loop to generate different colors:

for i in range(20):
   ax1.plot(x, y, color = (0, i / 20.0, 0, 1)

In this case, colors will vary from black to 100% green, but you can tune it if you want.

See the matplotlib plot() docs and look for the color keyword argument.

If you want to feed a list of colors, just make sure that you have a list big enough and then use the index of the loop to select the color

colors = ['r', 'b', ...., 'w']

for i in range(20):
   ax1.plot(x, y, color = colors[i])
share|improve this answer
Yeah, I kind of wanted to avoid doing something like this. I looked into Color Maps, but I'm quite confused how to use them. – dlamotte Feb 11 '11 at 16:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.