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 si

[Matplotlib-users] Subplot Questions

2008-01-27 Thread Cheng-Kong Wu
Dear all, I am working on sending vibration results to two plots: subplot(211) and subplot(212). I have the following questions: 1. How to define the size of the figure? I will eventually import the figure into Microsoft Word, and I hope I can fit the figure into one page. 2. If I want to make b