Hi, here is my notebook for this project:
My Notebook
This was a pretty fun project. I liked the 3D part and I tried to get a little fancy by adding labels to the points in the plot, hiding the axes and giving some color to the background.
Thanks for checking it out!
(Also I was unable to find the necessary ‘tags’ for this project while posting it)
Hi, welcome to the Forums!
I like how you labeled the stars! Pretty cool! Great work and thank you for sharing.

When I did this I used this line of code to change the marker and the size of it:
ax3D.scatter(x,y,z, c='gold', marker = '*', s= 60)
I also changed the color of all three planes so it was black:
ax3D.w_xaxis.set_pane_color((0, 0, 0, 1.0))
ax3D.w_yaxis.set_pane_color((0, 0, 0, 1.0))
ax3D.w_zaxis.set_pane_color((0, 0, 0, 1.0))
I was just now switching colors around. It’s definitely a fun project!