Re: [Matplotlib-users] draggable annotation bug and fix

2011-09-16 Thread Jae-Joon Lee
Thanks for reporting this. This is now fixed in the v1.0.x-maint branch and in the master branch. Regards, -JJ On Fri, Sep 16, 2011 at 9:43 AM, Daniel Hyams dhy...@gmail.com wrote: There seems to be a problem with the draggable annotation code when the annotation is just clicked, and not

Re: [Matplotlib-users] canvas.draw() memory issue? (PyQt4)

2011-09-16 Thread Keith Hughitt
Is it not possible to use imshow() in a Qt application then? -- BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA http://p.sf.net/sfu/rim-devcon-copy2___

Re: [Matplotlib-users] canvas.draw() memory issue? (PyQt4)

2011-09-16 Thread Darren Dale
On Fri, Sep 16, 2011 at 9:44 AM, Keith Hughitt keith.hugh...@gmail.com wrote: Is it not possible to use imshow() in a Qt application then? http://matplotlib.sourceforge.net/api/axes_api.html#matplotlib.axes.Axes.imshow

[Matplotlib-users] GridSpec has unecpected effect

2011-09-16 Thread Kurt Mueller
Hi, In the following script, it seems to me, that GridSpec does not work as expected. #!/usr/bin/env python # vim: set fileencoding=utf-8 : # adapted from http://matplotlib.sourceforge.net/users/gridspec.html import matplotlib.pyplot as plt from

Re: [Matplotlib-users] canvas.draw() memory issue? (PyQt4)

2011-09-16 Thread John Hunter
Yes, it is possible. Everything that is possible in the pyplot interface is available in the API (the pyplot interface is a thin wrapper). Most plotting methods from pyplot like plot, semilogx, imshow, scatter, etc, are axes instances ax = fig.add_subplot(111) ax.imshow(...) and the title,

[Matplotlib-users] Drawing on a figure, not a subplot

2011-09-16 Thread John Ladasky
Hello everyone, I want to use matplotlib to create a figure like the one seen in panel E of this linked image: http://www.iovs.org/content/49/12/5425/F1.large.jpg There are eight 2-D plots shown. All of them display the same two variables, CD4 on the X-axis and CD3 on the Y-axis. Rather than

[Matplotlib-users] bug report and fix for bracket arrow (annotations)

2011-09-16 Thread Daniel Hyams
In http://matplotlib.sourceforge.net/users/annotations_guide.html , about 1/3 of the way down, there is a little demonstrator for the different arrowstyles -, -, ]-, etc. Looking at the figure closely, there is no difference between the -[ and ]- styles. The fix for this is in patches.py,