Matplotlib - 3D Plotting
Why does this code raise an error?
from mpl_toolkits.mplot3d import Axes3D import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection='3d') ax.scatter([1,2], [3,4]) plt.show()
