Re: [Matplotlib-users] Thanks!

2009-08-01 Thread Michiel de Hoon
Originally, the Mac OS X backend was much faster than the other backends because of how the event loop was organized. Currently, most (I'm not sure about the wx backends) backends use the event loop in the same way as the Mac OS X backend, and are about equally fast (provided that you are using

Re: [Matplotlib-users] executing function when view interval changes

2009-08-01 Thread John Hunter
On Sat, Aug 1, 2009 at 7:32 PM, Alan G Isaac wrote: > On 8/1/2009 4:07 PM Thomas Robitaille apparently wrote: >> Since matplotlib is about to hit 0.99, > > > Which reminds me, was there a decision on subplot2grid etc? > http://sourceforge.net/mailarchive/message.php?msg_name=6e8d907b0905172009j21b5

[Matplotlib-users] Caching of canvas or canvas data?

2009-08-01 Thread Neil Pilgrim
Hi, I've developed a GTK application under linux (debian etch) which plots my simulation data really nicely. I'm now trying to implement some caching to avoid a) loading datafiles which are 'recent' and b) replotting and redrawing data which is 'recent' (assuming this would be quicker!). I hav

Re: [Matplotlib-users] executing function when view interval changes

2009-08-01 Thread Alan G Isaac
On 8/1/2009 4:07 PM Thomas Robitaille apparently wrote: > Since matplotlib is about to hit 0.99, Which reminds me, was there a decision on subplot2grid etc? http://sourceforge.net/mailarchive/message.php?msg_name=6e8d907b0905172009j21b5077fp242c7598ee9fb2c9%40mail.gmail.com> Alan Isaac ---

Re: [Matplotlib-users] clabel and bbox

2009-08-01 Thread Andres Luhamaa
Thank You, but now I have another little annoying issue. Besides clabel I add some text manually to my plot with plt.text and sometimes the clabel and plt.text overlap, and no matter in which order I plot them, the string from clabel is always above the one from plt.text, but I would like, if

[Matplotlib-users] Matplotlib.finance and yahoo data

2009-08-01 Thread David Kim
Hello, quick question about the quotes_historical_yahoo function in matplotlib.finance. Typically, you need to define a start and end date for a given ticker to pull the data. Is there a way to pull ALL of the historical data without knowing when the stock or ETF started trading? I'm new to matplot

Re: [Matplotlib-users] executing function when view interval changes

2009-08-01 Thread Thomas Robitaille
John Hunter-4 wrote: > > On Thu, Feb 12, 2009 at 2:13 PM, Ryan May wrote: >> On Wed, Feb 11, 2009 at 7:30 PM, John Hunter wrote: >>> >>> On Wed, Feb 11, 2009 at 2:49 PM, Ryan May wrote: > >> Well, I checked in an example that shows the functionality. The problem >> is >> that using these ev

Re: [Matplotlib-users] AxesGrid question

2009-08-01 Thread Jae-Joon Lee
On Sat, Aug 1, 2009 at 9:32 AM, Tommy Grav wrote: > Thanks, I downloaded and installed 0.99rc1 and that worked beautifully. > Might be good to put this explicitly on the webpages as it is very > confusing. This is not just a issue of axes_grid toolkit. The current mpl document on the home page (in

[Matplotlib-users] Backend neutral idle event won't repeat

2009-08-01 Thread Mark Rubelmann
Hi, I'm writing a script to plot data being read from a serial connection in real time. I'm trying to use an idle_event callback to continually read the incoming data and plot it. The problem is that the callback is only getting invoked once. I found this page: http://www.scipy.org/Cookbook/Mat

Re: [Matplotlib-users] AxesGrid question

2009-08-01 Thread Tommy Grav
Thanks, I downloaded and installed 0.99rc1 and that worked beautifully. Might be good to put this explicitly on the webpages as it is very confusing. Tommy On Aug 1, 2009, at 9:27 AM, Jae-Joon Lee wrote: > The axes_grid toolkit is recently added to the matplotlib, and you > need to have develo

Re: [Matplotlib-users] clabel and bbox

2009-08-01 Thread Jae-Joon Lee
The clable command returns a list of Text instances. You need call set_bbox method for each of them. tl = clabel(...) for t in tl: t.set_bbox(dict(fc="y")) For clabels, which are often rotated, it may better to use fancy box style (the default bbox is not rotated even though the text is).

[Matplotlib-users] Thanks!

2009-08-01 Thread Kaushik Ghose
Hi! I would like to thank the matplotlib team for the new release. I haven't had the courage to deploy it on my main number crunching computer it but I have it on my regular computer and it's been fine. I'm especially excited to see renewed work on the 3D plotting. I have a quick question: w

Re: [Matplotlib-users] AxesGrid question

2009-08-01 Thread Jae-Joon Lee
The axes_grid toolkit is recently added to the matplotlib, and you need to have development version of matplotlib. You may try the matplotlib 0.99rc1 released a few days ago http://www.nabble.com/matplotlib-0.99.0-rc1-%3A-call-for-testing-td24760373.html or you may try to install from the svn ht

[Matplotlib-users] clabel and bbox

2009-08-01 Thread Andres Luhamaa
Hello! Is it possible to add a bbox behind a clabel, like one can do with a plt.text or something that would look similar? Best regards, Andres -- Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-D