Re: [Matplotlib-users] Having trouble installing matplotlib on Mac OS X Lion

2012-04-05 Thread Russell E. Owen
In article , Bill Carithers wrote: > Hi all, > > I had matplotlib-0.99.1.1 working with Python 2.6 on OS X v10.6(Snow > Leopard). Today I upgraded to Lion (v10.7) and matplotlib had disappeared. > Lion ships with AppleĀ¹s version of Python 2.7. Even when I look back at > Python 2.6 in the /Syste

[Matplotlib-users] Changing icons in navigation toolbar

2012-04-05 Thread Emmanuel Mayssat
The navigation toolbar is ugly ;-) I would like to change the icons, let's say for the 'home' position. How can I do that? -- E -- Better than sec? Nothing is better than sec when it comes to monitoring Big Data applicatio

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 your post on the webpage but I ge

[Matplotlib-users] pyplot.plotfile: read ASCII table from stdin?

2012-04-05 Thread Hong Xu
Hello, This function , matplotlib.pyplot.plotfile, seems cannot plot from an ASCII table from stdin. Is there anyway to add this feature? In addition, is there any command line interface for this function avail

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]
It sort of is: import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D import mpl_toolkits.mplot3d.art3d as art3d import numpy as np x, y = np.mgrid[0:2*np.pi:16j, 0:2*np.pi:16j] C = np.cos(2*x[:-1,:-1]) + np.sin(y[:-1,:-1]) fig = plt.figure() ax = fig.add_subplot(111, projectio

[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

Re: [Matplotlib-users] Subplot array and colorbar

2012-04-05 Thread Marston
I solved this problem using pyplot and the following code: x = np.arange(22)