diff --git a/Chapter05/5. scatter_plots.py b/Chapter05/5. scatter_plots.py index 7525160..80f617e 100644 --- a/Chapter05/5. scatter_plots.py +++ b/Chapter05/5. scatter_plots.py @@ -31,8 +31,8 @@ # show this as a 3D plot fig = plt.figure() plt.suptitle("Latitude, Temperature, and Elevation in 2019") -ax.set_title('Three D') ax = plt.axes(projection='3d') +ax.set_title('Three D') ax.set_xlabel("Elevation") ax.set_ylabel("Latitude") ax.set_zlabel("Avg Temp")