I often plot a point on a matplotlib plot with:

x = 10
y = 100
plot(x, y, "k*", label="Global Optimum")
legend()

However, this causes the legend to put a star in the legend twice, such that it looks like:

* * Global Optimum

when I really want it to look like:

 *  Global Optimum

How do I do this?

link|improve this question

1  
I wish I could upvote this question multiple times. I HATE the default numpoints=2 convention and was relieved to see someone had already taken the time to ask about it and get an answer. – Chris Redford Aug 14 '11 at 15:33
Was about to ask the same thing. – BandGap Jan 20 at 10:46
feedback

1 Answer

up vote 7 down vote accepted

This should work:

legend(numpoints=1)

BTW, if you add the line

legend.numpoints     : 1      # the number of points in the legend line

to your matplotlibrc file, then this will be the new default.

[See also scatterpoints, depending on your plot.]

link|improve this answer
fantastic. thanks! – carl May 27 '11 at 1:33
Thanks. I ran into this today also. Why is this not the default? – saltycrane May 27 '11 at 6:45
Thanks soo much. The legend default was quite annoying to me. – Chris Redford Aug 14 '11 at 15:34
feedback

Your Answer

 
or
required, but never shown

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