Thank you everyone for your answers. My legend is no longer defaced since
I de-faced the call to scatter() :-)
--
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and muc
Joe,
I think the problem is the edgecolor='face' in the scatter call for the
open circles. For me when I omit that, it all works. I'd also note
that calling legend after draw results in the legend showing the circles
correctly colored.
Regards,
Jon
On Wed, 2013-01-02 at 16:46 -0800, Joe Louder
I doubt there is a color called 'face', according to documentation:
In [2]: setp(mat.collections.PathCollection,'edgecolor')
edgecolor: matplotlib color arg or sequence of rgba tuples
probably because matplotlib doesn't know how rend the color 'face'?
Chao
--
View this message in cont
On Wed, Jan 2, 2013 at 4:46 PM, Joe Louderback wrote:
> import matplotlib.pyplot as plt
>
> fig = plt.figure()
> plot = fig.add_subplot(111)
>
> plot.scatter([1, 2, 3], [4, 5, 6], c = [0.2, 0.4, 0.6], label = 'one',
> cmap = 'jet', marker = 'o', edgecolor = 'face')
>
> plot.scatter([1, 2, 3],