Matplotlib - 3D Plotting
What is wrong with this matplotlib code for a 3D scatter plot?
import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111) ax.scatter([1,2], [3,4], [5,6]) plt.show()
