Trying to get the referenced example from the mplot3d example web page working 
with Python 2.6.1 on Windows XP.  Naturally, the line:
 
ax = fig.add_subplot(2, 1, 2, projection='3d')
 
fails since '3d' is not a recognized projection.  Now, if I want to just plot 
the 3d, the solution that works seems to be:
fig = plt.figure()
ax = Axes3D(fig)
<snip>
surf = ax.plot_surface(<snip>)
 
However, I can't seem to find a way to create the one figure, add the 2D 
subplot and then the 3D subplot.
 
Any suggestions?
 
Thanks in advance.

 
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to