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
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
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
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
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
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
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
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
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)?