Re: [Matplotlib-users] per-element marker - possible? how to?

2009-08-22 Thread John Owens
Jouni K. Seppänen j...@... writes: John Owens john_ow...@... writes: plot([1,2,3], [1,4,9], markerlist=['A', 'B', 'C']) and have it draw the first point with a rendered letter 'A', the second with a 'B', and the third with a 'C'. You could do text(1,1,'A') text(2,4,'B') text

[Matplotlib-users] per-element marker - possible? how to?

2009-08-21 Thread John Owens
So I can do: plot([1,2,3], [1,4,9], marker='+') and it'll draw 3 points each with a + marker. What I'd really like to do is plot([1,2,3], [1,4,9], markerlist=['A', 'B', 'C']) and have it draw the first point with a rendered letter 'A', the second with a 'B', and the third with a 'C'. 1) Not

Re: [Matplotlib-users] Two questions regarding axis scaling

2008-11-23 Thread John Owens
Jeff Whitaker wrote: Jeremy Conlin wrote: Thanks for that information, that is what I needed. But now I come up with a separate problem. I have the following in my code: pylab.plot(n, S, 'b.', label='x') pylab.legend() ax2 = pylab.twinx()