Re: [Matplotlib-users] [Bug] : yaxis presentation going wrong if ymin/ymax < .000x (x~ 5)

2012-04-23 Thread Eric Firing
On Tue, Apr 24, 2012 at 12:21 AM, Tony Yu wrote: > > > On Mon, Apr 23, 2012 at 5:09 AM, jul tayon wrote: >> >> Hello list >> >> matplotlib website says this mailing  is the prefered way to report >> bug, so here I am : >> >> System : >> python ; 2.7.2+ >> matplotlib 1.1.0 >> ubuntu TLS amd64 >> m

Re: [Matplotlib-users] [Bug] : yaxis presentation going wrong if ymin/ymax < .000x (x~ 5)

2012-04-23 Thread Tony Yu
On Mon, Apr 23, 2012 at 5:09 AM, jul tayon wrote: > Hello list > > matplotlib website says this mailing is the prefered way to report > bug, so here I am : > > System : > python ; 2.7.2+ > matplotlib 1.1.0 > ubuntu TLS amd64 > matplotlib Backend : TkAgg > > > How to reproduce (on my pf) > Code S

Re: [Matplotlib-users] dates for x-axis

2012-04-23 Thread questions anon
thanks for all the responses. still finding it very confusing!! but got it to work (without having to import in the loop). I used: from datetime import datetime as dt but I also had to call: from datetime import timedelta and now it seems to work nicely. thank you On Fri, Apr 20, 2012 at 3:36 A

Re: [Matplotlib-users] Can't render the \dagger LaTex symbol

2012-04-23 Thread Michael Droettboom
On 04/21/2012 06:35 PM, Ariel Rokem wrote: > > > ParseFatalException: Expected end of math '$' > $rac{S}{S_0}$ (at char 0), (line:1, col:1) > > Should this have been resolved already? Does it relate to this issue? > > https://github.com/matplotlib/matplotlib/issues/659 > The improved error messages

Re: [Matplotlib-users] matplotlib for Mac OS 10.7 (Lion)

2012-04-23 Thread Russell E. Owen
In article , C M wrote: > Trying to help a Mac friend running OSX 10.7 (Lion) easily set up to test > scripts I send him, and have some questions: > > 1) Can Matplotlib 1.1 run on the Python 2.7.2 version that comes with > Lion? Yes. You can easily build it yoursef as long as you have XCode

Re: [Matplotlib-users] [Bug] : yaxis presentation going wrong if ymin/ymax < .000x (x~ 5)

2012-04-23 Thread jul tayon
Sorry, I thougt I used the wrong address for mailing and resent. :'( -- For Developers, A Lot Can Happen In A Second. Boundary is the first to Know...and Tell You. Monitor Your Applications in Ultra-Fine Resolution. Try it

[Matplotlib-users] [Bug] : yaxis presentation going wrong if ymin/ymax < .000x (x~ 5)

2012-04-23 Thread jul tayon
Hello list matplotlib website says this mailing is the prefered way to report bug, so here I am : System : python ; 2.7.2+ matplotlib 1.1.0 ubuntu TLS amd64 matplotlib Backend : TkAgg How to reproduce (on my pf) Code Snippet : ##CODE import matplotlib import matplotlib.pyplot as p import

[Matplotlib-users] [bug] triggering a quite unreadable yaxis labelling

2012-04-23 Thread julien tayon
Hello list matplotlib website says this mailing is the prefered way to report bug, so here I am : System : python ; 2.7.2+ matplotlib 1.1.0 ubuntu TLS amd64 matplotlib Backend : TkAgg How to reproduce (on my pf) Code Snippet : ##CODE import matplotlib import matplotlib.pyplot as p import

Re: [Matplotlib-users] Help needed with FuncAnimation

2012-04-23 Thread Clare Soh
Hi, I managed to figure this out. I need to pass an init function to FuncAnimation. Quoting from the MatPlotLib API documentation: *init_func* is a function used to draw a clear frame. If not given, the results of drawing from the first item in the frames sequence will be used. So just in case s