[Matplotlib-users] Fwd: 'module' object has no attribute 'instancemethod'

2013-05-25 Thread klo uo
Ah, right. There was indeed new.pyc file in folder I was working in. Thanks On Sat, May 25, 2013 at 9:47 PM, Christoph Gohlke wrote: > On 5/25/2013 12:37 PM, klo uo wrote: > > Out of the blue, I started getting this messages while plotting with MPL > > 1.2.1: > > > > ==

Re: [Matplotlib-users] 'module' object has no attribute 'instancemethod'

2013-05-25 Thread Christoph Gohlke
On 5/25/2013 12:37 PM, klo uo wrote: > Out of the blue, I started getting this messages while plotting with MPL > 1.2.1: > > > Traceback (most recent call last): >File > "C:\Python27\lib\site-packages\matplotlib\backends\backend_qt4.py", line > 244, in m

[Matplotlib-users] 'module' object has no attribute 'instancemethod'

2013-05-25 Thread klo uo
Out of the blue, I started getting this messages while plotting with MPL 1.2.1: Traceback (most recent call last): File "C:\Python27\lib\site-packages\matplotlib\backends\backend_qt4.py", line 244, in mouseMoveEvent FigureCanvasBase.motion_notify_even

Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-25 Thread ChaoYue
Hi Mat, Just one words, the plt. functions probably normally pick the last active axes to act on. many of these functions are methods of axes object, you can call directly from there. Chao On Sat, May 25, 2013 at 1:14 PM, mat [via matplotlib] < ml-node+s1069221n41131...@n5.nabble.com> wrote:

Re: [Matplotlib-users] Is it possible to truncate axes in matplotlib?

2013-05-25 Thread ChaoYue
Is this what you want? I change a bit of the code and put some example data there. fig,axs = plt.subplots(nrows=2, ncols = 2, figsize = (6, 6) ) plt.subplots_adjust( left = 0.0505, right = 0.96, bottom = 0.05, top = 0.95 , wspace = 0.07, hspace = 0.12) left_ax, right_ax = Axes_Replace_Split_Ax