Hi! So I just completed the project Visualizing the Orion Constellation on the Data Scientist path and as per instructions I’m sharing what I coded for it here
#1
%matplotlib notebook
from matplotlib import pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
#2
# Orion
x = [-0.41, 0.57, 0.07, 0.00, -0.29, -0.32,-0.50,-0.23, -0.23]
y = [4.12, 7.71, 2.36, 9.10, 13.35, 8.13, 7.19, 13.25,13.43]
z = [2.06, 0.84, 1.56, 2.07, 2.36, 1.72, 0.66, 1.25,1.38]
#3
fig2d = plt.figure()
ax = plt.subplot(1,1,1)
plt.scatter(x,y, marker = '*')
plt.xlabel('Orion X Coordinates')
plt.ylabel('Orion Y Coordinates')
plt.title('Orion: 2D Visualization')
plt.show()
#4
fig_3d = plt.figure()
constellation3d = plt.subplot(1,1,1,projection='3d')
constellation3d.scatter(x,y,z,marker='*',s=50)
plt.title('Orion: 3D Visulalisation')
constellation3d.set_xlabel('Orion x Coordinates')
constellation3d.set_ylabel('Orion y Coordinates')
constellation3d.set_zlabel('Orion z Coordinates')
plt.show()
It was quite fun, any feedback totes appreciated