Hello everyone! This is my jupyter code for the Orion Constellation Project.
Please give me anyfeed back about my code aproach.
¡Gracias!
Hello everyone! This is my jupyter code for the Orion Constellation Project.
Please give me anyfeed back about my code aproach.
¡Gracias!
Hello & thank you for submitting your project for feedback!
Some thoughts:
You could change the marker color to a ’ * ’ perhaps(?). You can do that by changing the marker parameter: marker='o'
. You can also add a color =
parameter to change the color of the marker. To change the size you can use the s=
parameter.
You can also change the background color to plots using ax.set_facecolor()
See: matplotlib.axes.Axes.set_facecolor — Matplotlib 3.3.4 documentation
You can hide gridlines by using ax.grid(False)
if you’re so inclined.
See: mplot3d API — Matplotlib 2.0.2 documentation
Check out this other thread on the topic that discusses using the ax3d method in your plot.
Thank you very much for your feedback!