Matplotlib - 3D Plotting
Identify the error in this code snippet:
import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection=3d) ax.scatter([1,2],[3,4],[5,6]) plt.show()
