t; Message: 1
>> Date: Sun, 27 Jan 2008 22:18:00 +0000
>> 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
>>
dea?
> --
>
> 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:
&g
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 si