[Matplotlib-users] When matplotlib is embeded in a pyGTK application, how to make the NavigationToolbar2 key ('1' '2' 'a' 'g' ..) working??

2007-06-06 Thread David Tremouilles
Hi, Back with same problem when embedding in gtk. I would like to enable the key pressed event (key '1' '2' 'a' 'g' .. ) of NavigationToolbar2 in my pyGTK app. (These keys shortcut are described here: (or see PS of this email)

Re: [Matplotlib-users] Prompt in MPL - NEVER MIND

2007-06-06 Thread Matthias Michler
Hello everybody, first of all I want to thank John for his work on the textbox - it really looks better than mine. On Tuesday 05 June 2007 19:16, Mark Bakker wrote: I just saw in the code: if event.key is None: # simulate backspace So it works properly, Mark In my opinion it would be a

Re: [Matplotlib-users] Chart plotting blank?

2007-06-06 Thread John Hunter
On 6/5/07, Erik Wickstrom [EMAIL PROTECTED] wrote: ax = fig.add_subplot(111) #from pylab import * N = 7 menMeans = (20, 35, 30, 35, 27, 21, 60) ind = arange(N) # the x locations for the groups #print ind width = 0.35 # the width of the bars ax =

Re: [Matplotlib-users] Prompt in MPL - NEVER MIND

2007-06-06 Thread Matthias Michler
Hello John, first of all thank you very much for adding this patch. By the way: What do you think about the insert a 'l' or 'g' into your TextBox and get a grid or log-scale-issue? Is there a possibility to switch the mpl-meaning of 'l', 'g' and 'f' off? best regards, Matthias On Wednesday

Re: [Matplotlib-users] Prompt in MPL - NEVER MIND

2007-06-06 Thread John Hunter
On 6/6/07, Matthias Michler [EMAIL PROTECTED] wrote: By the way: What do you think about the insert a 'l' or 'g' into your TextBox and get a grid or log-scale-issue? Is there a possibility to switch the mpl-meaning of 'l', 'g' and 'f' off? Yes, this is clearly an issue that has to be dealt

Re: [Matplotlib-users] [Fwd: matplotlib 0.90.1 binary installer for Mac]

2007-06-06 Thread David Goldsmith
Thanks for doing this Russell; it installed, imported, and confirmed version fine on my Intel Mac (but I haven't actually had a chance to use it yet). DG [EMAIL PROTECTED] wrote: David, Can you test this? -CHB Original Message Subject: [Matplotlib-users] matplotlib

Re: [Matplotlib-users] RE : Re: RE : Re: transformations

2007-06-06 Thread John Hunter
On 6/6/07, Nicolas [EMAIL PROTECTED] wrote: Unfortunately, I didn't use instantiated Polygon items myself, so for now I can't figure which part of my code produces indirectly such empty Polygons... May it be however possible to modify a little matplotlib code, so as to assure the

Re: [Matplotlib-users] displaying only one colorbar...

2007-06-06 Thread Eric Firing
fred wrote: Hi, My issue is quite simple: I reload several times an image with the colorbar enabled, and thus, I have several colorbars, not only one. How can I disable this, and thus, get only one colorbar ? Cheers, You may need to post a small code example so we can see what you

[Matplotlib-users] legend breaks clf()

2007-06-06 Thread Jessica Lu
Hi, I just downloaded and installed the latest matplotlib (0.90.1) and the following problem occurred: plot([0,1]) scatter([0.5], [0.5]) # Should be one Line2D print gca().lines # Should be one RegularPolyCollection print gca().collections # Now load a legend: legend() # Should be one

[Matplotlib-users] Problems with twinx and semilogy

2007-06-06 Thread Sam Volchenboum
I'm trying to replicate a plot like this: http://tinyurl.com/2uwjn8 In this case, the y-axis on the left (the black dots) is linear (thought the values are logged) and the y-axis on the right (red data) is log base 2. I'm running into some problems. 1. How do I display the right-hand y-axis so

Re: [Matplotlib-users] legend breaks clf()

2007-06-06 Thread Norbert Nemec
Thanks for the hint. I just fixed the problem in SVN. No idea how this problem would have popped up recently. I did some changes in legend just before 0.90.1, but I do not see how these would have caused the problem to show up. From what I see, the flaw should have been there all along. Well,