Re: [Matplotlib-users] formatter for durations of varying units

2011-07-12 Thread C M
On Tue, Jul 12, 2011 at 3:15 AM, Maximilian Trescher wrote: > Hi, > >> I want to pick a good (dynamic, for zooming) way to format the y axis. >> There are two issues: >> Does (1) seem like the right approach?  And for 2, is there already a >> formatter that is appropriate for this or could be adap

Re: [Matplotlib-users] easy_install and pip install both fail

2011-07-12 Thread Paul Ivanov
Neacsa Bogdan Valentin, on 2011-07-12 03:00, wrote: > I'm having a problem getting matplotlib to work with either > easy_install or pip install. I've tries all sorts of options > from easy_install matplotlib, pip install matplotlib, > easy_install > http://downloads.sourceforge.net/project/matplot

[Matplotlib-users] handling pick events doesn't work for me

2011-07-12 Thread Mathew Yeates
Hi I have a GTK application with the code def on_pick(event): print "on_pick" thisline = event.artist xdata, ydata = thisline.get_data() ind = event.ind print 'on pick line:', zip(xdata[ind], ydata[ind]) cid = fig.canvas.mpl_connect('pick_event', on_pick) but the routine neve

Re: [Matplotlib-users] Matplotlib crash on Windows 2008 Server

2011-07-12 Thread Noah Aklilu
Thanks Christoph. That fixed it at my end as well. Regards, Noah. -Original Message- From: Christoph Gohlke [mailto:cgoh...@uci.edu] Sent: July-12-11 3:40 AM To: matplotlib-users@lists.sourceforge.net Subject: Re: [Matplotlib-users] Matplotlib crash on Windows 2008 Server On 7/7/201

Re: [Matplotlib-users] Failure to plot almost flat surface with matplotlib 1.0.1 on both Windows and Linux (bugreport)

2011-07-12 Thread Benjamin Root
On Tue, Jul 12, 2011 at 12:53 AM, Kirill Lapshin (Macquarie Securities) < kirill.laps...@macquarie.com> wrote: > ** > Hello, > > We've encountered a problem plotting a nearly flat surface. Interestingly > exactly flat surface can be plotted just fine, so it seems the bug is > triggered when a rang

[Matplotlib-users] Failure to plot almost flat surface with matplotlib 1.0.1 on both Windows and Linux (bugreport)

2011-07-12 Thread Kirill Lapshin (Macquarie Securities)
Hello, We've encountered a problem plotting a nearly flat surface. Interestingly exactly flat surface can be plotted just fine, so it seems the bug is triggered when a range of values on z axis is very narrow. The problem can be easily reproduced on 32-bit windows and 64-bit linux, the only platf

[Matplotlib-users] easy_install and pip install both fail

2011-07-12 Thread Neacsa Bogdan Valentin
Hello, I'm having a problem getting matplotlib to work with either easy_install or pip install. I've tries all sorts of options from easy_install matplotlib, pip install matplotlib, easy_install http://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-0.98.5/matplotlib-0.98.5.3

Re: [Matplotlib-users] Matplotlib crash on Windows 2008 Server

2011-07-12 Thread Christoph Gohlke
On 7/7/2011 3:06 PM, Noah Aklilu wrote: > Hello, > > I am using matplotlib as part of a data analysis tool, and I am having > problems with a crash on Windows 2008 server when plotting data. The > application use to run fine, though I guess there was a round of windows > updates recently (includi

Re: [Matplotlib-users] formatter for durations of varying units

2011-07-12 Thread Maximilian Trescher
Hi, > I want to pick a good (dynamic, for zooming) way to format the y axis. > There are two issues: > Does (1) seem like the right approach? And for 2, is there already a > formatter that is appropriate for this or could be adapted to it? did you try the AutoDateLocator (from matplotlib.dates)?