Matplotlib - 3D Plotting
What will be the effect of this code snippet on the 3D plot's view?
import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.view_init(elev=90, azim=0) plt.show()
