Can anyone help me out? I'm trying to do the following equivalent in a 
scatter3d call...

line, = ax.plot(data1, data2)
line.set_data(data3, data4)
line.axes.figure.canvas.draw()

So I'm looking to do:

ax = axes3d.Axes3D(fig)
s = ax.scatter(data1, data2, data3)
s.set_data(data2,data3,data4)   <-- but this function doesn't exist... what is 
the equivalent that I'm missing?
s.axes.figure.canvas.draw()


TIA
-Ryan

------------------------------------------------------------------------------
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to