Constellation orion project

Hello everyone,

I honestly forgot about this little project. I revisited it yesterday while I was learning plot.ly, so I figured I should finally get around to posting it. In addition to plotting both with Matplotlib and plot.ly, I put my own spin on the project in at least one place.

%matplotlib notebook from matplotlib import pyplot as plt from mpl_toolkits.mplot3d import Axes3D # 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] figure=plt.figure(figsize=(10,8)) figure.add_subplot(1,1,1) plt.scatter(x,y,color='black') plt.title('Scatter plot of x and y values') plt.xlabel('X values') plt.ylabel('Y values') plt.show() fig_3d=plt.figure() fig_3d.add_subplot(1,1,1,projection='3d') constellation3d=plt.scatter(x,y,z) plt.title('Orion constellation (sort of) ') plt.show()

Hello Everyone!
This is the code I used for the Data visualization project, i hope someone can give it a look and tell me if it´s acceptable or give me any advice on how to improve something