Re: [Matplotlib-users] plotting a series of 3D points and, picker=True and 3D

2008-01-29 Thread Michael Droettboom
PROTECTED] Subject: Re: [Matplotlib-users] plotting a series of 3D points and picker=True and 3D To: matplotlib-users@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content-Type: text/plain; charset=ISO-8859-1 I think scatter3D does what you want: from matplotlib import

Re: [Matplotlib-users] plotting a series of 3D points and, picker=True and 3D

2008-01-29 Thread Johann Cohen-Tanugi
? -- Message: 1 Date: Sun, 27 Jan 2008 22:18:00 + From: Neil Crighton [EMAIL PROTECTED] Subject: Re: [Matplotlib-users] plotting a series of 3D points and picker=True and 3D To: matplotlib-users@lists.sourceforge.net Message-ID: [EMAIL PROTECTED] Content

Re: [Matplotlib-users] plotting a series of 3D points and picker=True and 3D

2008-01-27 Thread Neil Crighton
I think scatter3D does what you want: from matplotlib import axes3d import pylab as pl fig = pl.figure() ax = axes3d.Axes3D(fig) ax.scatter3D(data[:,0],data[:,1],data[:,2]) ax.set_xlabel('X value') ax.set_ylabel('Y value') ax.set_zlabel('Z value') pl.show() You could also change the colour and