If anyone could give me some feedback on how to make these plots more visually appealing (like how to make the dots in the 3D plot bigger), that would be great!
Here is the code for the 2D plot, and the output.
fig = plt.figure()
fig.add_subplot(1,1,1)
plt.scatter(x,y, c='green')
plt.title('2D projection of Orion')
plt.show()
And here is the 3D code, and output.
fig_3d = plt.figure()
fig_3d.add_subplot(1,1,1,projection='3d')
constellation3d = plt.scatter(x,y,z, c='red')
plt.title('3D Rotational Projection of Orion')
plt.show()
Thank you!