Matplotlib - 3D Plotting
Find the issue in this code that prevents the 3D scatter plot from displaying:
import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter([1,2,3],[4,5,6],[7,8,9])
