Re: [Matplotlib-users] Double y-axis with the same 0

2010-07-20 Thread Benjamin Root
Somehow, this doesn't seem very satisfying. It is almost accidental. There has to be a better way to do this. Ben Root 2010/7/20 Thøger Emil Juul Thorsen > One way is to specify the axes manually, e.g. setting: > > (with matyplotlib.pyplot importad as plt:) > > plt.axis([200, 500, -600, 600])

Re: [Matplotlib-users] Compile error

2010-07-20 Thread Tommy Grav
Sorry for the badly formatted email with broken threading (I realized that my matplotlib-user subscription was held due to my email bouncing earlier in the month. > Re: [Matplotlib-users] Compile error > From: Michael Droettboom - 2010-07-20 17:17 > It looks as if you do not have the fre

Re: [Matplotlib-users] Cursor corruption with pyqt4 and a work-around.

2010-07-20 Thread Darren Dale
On Fri, Jun 18, 2010 at 7:50 AM, Darren Dale wrote: > On Thu, Jun 17, 2010 at 11:04 PM, David Smith > wrote: >> I have been developing an application using PyQt ant Matplotlib and >> encountered >> a problem with the mouse cursor shape being incorrect.  I found a work-around >> that seems to wo

Re: [Matplotlib-users] Compile error

2010-07-20 Thread Michael Droettboom
It looks as if you do not have the freetype development headers installed. Mike On 07/20/2010 01:00 PM, Tommy Grav wrote: > I am trying to compile matplotlib for ActiveState 2.7.0.1 - 64bit on mac os x. > I have installed numpy 1.4.1 and scipy 0.8.0 from source. Compiling matplotlib > using > > s

Re: [Matplotlib-users] imshow memory leak in pylab mode?

2010-07-20 Thread Eric Firing
On 07/19/2010 11:59 PM, K.-Michael Aye wrote: > On 2010-07-16 18:48:48 +0200, Eric Firing said: > >>> >>> Furthermore, >>> deleting images from ax.images does not free memory : >> >> Maybe because ipython is keeping a reference to every AxesImage object >> that you make... >> >> Eric > > Well, mayb

[Matplotlib-users] Compile error

2010-07-20 Thread Tommy Grav
I am trying to compile matplotlib for ActiveState 2.7.0.1 - 64bit on mac os x. I have installed numpy 1.4.1 and scipy 0.8.0 from source. Compiling matplotlib using sudo make -f make.osx fetch deps mpl_build mpl_install works fine, but sudo python setup.py build yields the error below. Anyone

Re: [Matplotlib-users] Axes3D and tricontours.

2010-07-20 Thread Reinier Heeres
Hi Daniel, Ok, so it works as expected? Great. No real need to also bring it up on mpl devel, since I'm the maintainer of mplot3d anyway ;-) If you can send me the working code for contourf when you have that I'll add all of it soon. Cheers, Reinier On Tue, Jul 20, 2010 at 5:41 PM, Daniel Well

Re: [Matplotlib-users] Double y-axis with the same 0

2010-07-20 Thread Thøger Emil Juul Thorsen
One way is to specify the axes manually, e.g. setting: (with matyplotlib.pyplot importad as plt:) plt.axis([200, 500, -600, 600]) ...or whatever seems fitting for you, and do that on both of the y axes. That should align them nicely. On Sat, 2010-07-17 at 20:37 +0200, Daniele Padula wrote: > Hi

[Matplotlib-users] ft2font error on OSX 10.6 using py2app

2010-07-20 Thread Søren Nielsen
Hi, I'm creating a stand alone program on my mac with OSX 10.4 and it seems to work great on it. However, if I transfer my program to a snow leopard (10.6) mac, I get the error: File "/Volumes/KINGSTON/Mac/RAW.app/Contents/Resources/__boot__.py", line 158, in _run('RAW.py') Fi

Re: [Matplotlib-users] imshow memory leak in pylab mode?

2010-07-20 Thread K . -Michael Aye
On 2010-07-16 18:48:48 +0200, Eric Firing said: >> >> Furthermore, >> deleting images from ax.images does not free memory : > > Maybe because ipython is keeping a reference to every AxesImage object > that you make... > > Eric Well, maybe, but why does it not happen for John? His penultimate p