5 Introduction to Matplotlib

plt.close(fig.number) # close figure plt.close() # close the current figure plt.close(i) # close figure numbered i plt.close(name) # close figure by str name plt.close('all')# close all figures An Axes or Subplot (a subclass of Axes) An Axes is a container class for a specific plot. A figure may contain many Axes and/or Subplots. Subplots are ................
................