Re: [Matplotlib-users] 3D layered plot

2012-04-05 Thread Moore, Eric (NIH/NIDDK) [F]
> -Original Message- > From: Marston Johnston [mailto:shejo...@gmail.com] > Sent: Thursday, April 05, 2012 9:11 AM > To: matplotlib-users@lists.sourceforge.net > Subject: Re: [Matplotlib-users] 3D layered plot > > Hi Eric, > > For some reason I cannot see you

Re: [Matplotlib-users] 3D layered plot

2012-04-05 Thread Marston Johnston
Hi Eric, For some reason I cannot see your post on the webpage but I get your emails. My python doesn't have: art3d.poly_collection_2d_to_3d() Is this an old function that has been deprecated? I'm using matplotlib version 1.1.0 /M On Apr 5, 2012, at 10:47 AM, Marston wrote: > > This plot is p

Re: [Matplotlib-users] 3D layered plot

2012-04-05 Thread Moore, Eric (NIH/NIDDK) [F]
() -Eric > -Original Message- > From: Marston [mailto:shejo...@gmail.com] > Sent: Thursday, April 05, 2012 4:48 AM > To: matplotlib-users@lists.sourceforge.net > Subject: [Matplotlib-users] 3D layered plot > > > This plot is possible in MATLAB but I would like

[Matplotlib-users] 3D layered plot

2012-04-05 Thread Marston
This plot is possible in MATLAB but I would like to do this in matplotlib. See attached fig. In matlab the code is: a=peaks(20); b=peaks(20)+2*rand(20); c=rand(20); figure; hold on; ha=pcolor(a); hb=pcolor(b); hc=pcolor(c); set(hb,'zdata',0*b+5) set(hc,'zdata',0*c+10) This plot can then be rotat