Re: [Matplotlib-users] Legend Marker Color Bug

2012-09-05 Thread Sterling Smith
On Sep 4, 2012, at 5:33PM, Jae-Joon Lee wrote: > On Wed, Sep 5, 2012 at 6:05 AM, Sterling Smith wrote: >> I still do not get black markers. Furthermore, if you try to make a new >> legend with the result of leg.get_lines(), you will get lines without >> markers, which leads me to the conclusio

Re: [Matplotlib-users] Legend Marker Color Bug

2012-09-04 Thread Jae-Joon Lee
On Wed, Sep 5, 2012 at 6:05 AM, Sterling Smith wrote: > I still do not get black markers. Furthermore, if you try to make a new > legend with the result of leg.get_lines(), you will get lines without > markers, which leads me to the conclusion I stated in my previous email > (which you did not

Re: [Matplotlib-users] Legend Marker Color Bug

2012-09-04 Thread Sterling Smith
On Aug 31, 2012, at 11:29AM, Goyo wrote: > 2012/8/30 Sterling Smith : > >> Thank you for taking the time to consider my question. I'm sorry that I >> didn't pose my question correctly. I should have said: 'Consider the >> _results_ of the following script:' I originally tried to attach the

Re: [Matplotlib-users] Legend Marker Color Bug

2012-08-31 Thread Goyo
2012/8/30 Sterling Smith : > Thank you for taking the time to consider my question. I'm sorry that I > didn't pose my question correctly. I should have said: 'Consider the > _results_ of the following script:' I originally tried to attach the results > I obtained, which showed no change in c

Re: [Matplotlib-users] Legend Marker Color Bug

2012-08-30 Thread Sterling Smith
On Aug 30, 2012, at 12:35PM, Benjamin Root wrote: > > > On Thu, Aug 30, 2012 at 3:26 PM, Goyo wrote: > 2012/8/28 Sterling Smith : > > List, > > > > Consider the following script: > > > > import pylab > > pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='') > > pylab.plot(pylab.lin

Re: [Matplotlib-users] Legend Marker Color Bug

2012-08-30 Thread Benjamin Root
On Thu, Aug 30, 2012 at 3:26 PM, Goyo wrote: > 2012/8/28 Sterling Smith : > > List, > > > > Consider the following script: > > > > import pylab > > pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='') > > pylab.plot(pylab.linspace(0,1,100),label='Test2',marker='o',ls='-') > > leg=pyl

Re: [Matplotlib-users] Legend Marker Color Bug

2012-08-30 Thread Goyo
2012/8/28 Sterling Smith : > List, > > Consider the following script: > > import pylab > pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='') > pylab.plot(pylab.linspace(0,1,100),label='Test2',marker='o',ls='-') > leg=pylab.legend(loc='best') > line=leg.get_lines() > line[0].set_color(

[Matplotlib-users] Legend Marker Color Bug

2012-08-28 Thread Sterling Smith
List, Consider the following script: import pylab pylab.plot(pylab.linspace(0,1,100),label='Test',marker='o',ls='') pylab.plot(pylab.linspace(0,1,100),label='Test2',marker='o',ls='-') leg=pylab.legend(loc='best') line=leg.get_lines() line[0].set_color('black') line[1].set_color('black') pylab.dra