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
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
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
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
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
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
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(
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