Hi community,
This is my Constellation Project.
https://jennifer1791.github.io/Graphs_Python/
I appreciate your feedback
Regards!
Jennifer Sarmiento
Hi community,
This is my Constellation Project.
https://jennifer1791.github.io/Graphs_Python/
I appreciate your feedback
Regards!
Jennifer Sarmiento
Double check the 3D plot. You’re not using the 3d axis for the plot.
It should look something like…
fig3d = plt.figure()
ax3D = fig3d.add_subplot(1,1,1, projection="3d")
ax3D.set_facecolor('black') #changes the background color. this was from my code
Also, to switch it up a bit and give the plot a bit more flash, have a look at the different parameters for scatterplots. You can change up the size of the markers, the color, get rid of the gridlines, change the background color, etc. There’s even a color palette from my/everyone’s favorite tech/science comic xkcd:
Here:
https://matplotlib.org/stable/api/_as_gen/matplotlib.pyplot.scatter.html
And, here:
https://matplotlib.org/stable/gallery/mplot3d/scatter3d.html