Here is my project for the Orion project! Any and all comments are welcome!
Hi @pywhiz25055,
Congrats for finishing up, for a bit of feedback: It’d be best to get in the habit of adding labels to all your axes now. Without them it takes the viewer much longer to interpret your data.
Please also have a close look at the z-axis of your points. I believe they all sit at z=0.0
which is not correct. Using the standard matplotlib.pyplot.sctatter()
function only allows for 2D plotting.
You need to be using the .scatter()
method of your 3D axis object which supports z data…
ax3dobj = fig.add_subplot(1,1,1,projection="3d")
ax3dobj.scatter(x, y, z ...