Viewing 3D subplots is not working. Viewing the entire figure does work as expected. ```python fig = plt.figure() ax3d = plt.subplot(1,1,1,projection='3d') ax3d.scatter(range(20), range(20), range(20)) ```
Viewing 3D subplots is not working. Viewing the entire figure does work as expected.