[Matplotlib-users] updating embedded plots using Tkinter (this time with text)

2011-04-21 Thread Michael Schmidt
Hi Everyone, I'm running into a problem with updating a plot that I've embedded into a Tk application.  I'm attaching the code with this email (and pasting it at the end, in a hopefully un-gmail-formatted-form).  This is a very simple program, with one canvas embedded into a window, with one menu

[Matplotlib-users] updating embedded plots using Tkinter

2011-04-21 Thread Michael Schmidt
Hi Everyone, I'm running into a problem with updating a plot that I've embedded into a Tk application. I'm attaching the code with this email (so hopefully that will show up at the end of the email). This is a very simple program, with one canvas embedded into a window, with one menu and one but

Re: [Matplotlib-users] Increase max polygons/patches

2011-04-21 Thread Daniel Welling
While trying to recreate this outside of my work code, I found that I cannot do it in a simple manner- that is, just creating a ton of points and plotting them doesn't reproduce the problem. I'm going to revisit this and make sure it isn't a problem in my working program versus what I thought it w

Re: [Matplotlib-users] Crash using twin axis label with PyGTK

2011-04-21 Thread Paul Ivanov
Jason Heeris, on 2011-04-21 12:23, wrote: > I'm playing around with using Matplotlib in my PyGTK app, and keep > triggering a crash. I've narrowed it down to this bit of code: ... > Am I doing something obviously wrong? (Apart from the lack of plots, I > mean... I removed them because they didn't

Re: [Matplotlib-users] Memory leakage in matplotlib 1.0.1 with wx 2.8.11.0

2011-04-21 Thread Michael Droettboom
The repository is now on github, so if you want the very latest, you should get it from here: https://github.com/matplotlib/matplotlib (We haven't done a terribly good job of advertising that change). I'm not seeing any leak myself with your script with matplotlib HEAD plus this pull request:

[Matplotlib-users] How do I make the radius logarithmic with axisartist?

2011-04-21 Thread Junghun Shin
Hi, everyone. Let me explain what I wanted to do: First, I wanted to make a polar plot with angles from 0 to 90. I could do it by adopting the curvelinear grid demo ( http://goo.gl/kruXf ). And then I wanted to present the radius in log10 scale. But setting the plot command to semilogy or trying t

Re: [Matplotlib-users] Increase max polygons/patches

2011-04-21 Thread John Hunter
On Thu, Apr 21, 2011 at 11:22 AM, Michael Droettboom wrote: > There is no hard coded limit to the number of quads in a pcolormesh. > (Unlike the limit of the number of points in a path in the Agg backend). > Can you provide some code that reproduces the error? > > Also, which version of matplotlib

Re: [Matplotlib-users] Possible memory leak?

2011-04-21 Thread Michael Droettboom
Ok. I think I've found a leak in the way the spines' paths were being updated. https://github.com/matplotlib/matplotlib/pull/89 Can you apply the patch there and let me know how it improves things for you? Cheers, Mike On 04/21/2011 08:35 AM, Caleb Constantine wrote: > On Wed, Apr 20, 2011 a

Re: [Matplotlib-users] Increase max polygons/patches

2011-04-21 Thread Michael Droettboom
There is no hard coded limit to the number of quads in a pcolormesh. (Unlike the limit of the number of points in a path in the Agg backend). Can you provide some code that reproduces the error? Also, which version of matplotlib, platform and backend are you using? Mike On 04/21/2011 12:20

[Matplotlib-users] Increase max polygons/patches

2011-04-21 Thread Daniel Welling
Greetings, MPL Users. I have a very detailed array that I am visualizing using pcolor mesh. When the size of the array surpasses some threshold (I don't know the value), pcolormesh stops drawing polygons/patches. Thus, I only see some percentage of my array. Is there a way to increase the numbe

Re: [Matplotlib-users] Possible memory leak?

2011-04-21 Thread Caleb Constantine
On Wed, Apr 20, 2011 at 1:04 PM, Michael Droettboom wrote: > On 04/20/2011 11:27 AM, Caleb Constantine wrote: >> On Wed, Apr 20, 2011 at 9:29 AM, Michael Droettboom  wrote: >>> On 04/20/2011 07:48 AM, Caleb Constantine wrote: On Tue, Apr 19, 2011 at 2:25 PM, Michael Droettboom     wrote: