Managing multiple figures in pyplot#

matplotlib.pyplot uses the concept of a current figure and current axes. Figures are identified via a figure number that is passed to figure. The figure with the given number is set as current figure. Additionally, if no figure with the number exists, a new one is created.

Note

We discourage working with multiple figures through the implicit pyplot interface because managing the current figure is cumbersome and error-prone. Instead, we recommend using the explicit approach and call methods on Figure and Axes instances. See Matplotlib Application Interfaces (APIs) for an explanation of the trade-offs between the implicit and explicit interfaces.

import matplotlib.pyplot as plt
import numpy as np

t = np.arange(0.0, 2.0, 0.01)
s1 = np.sin(2*np.pi*t)
s2 = np.sin(4*np.pi*t)

Create figure 1

multiple figs demo

Create figure 2

multiple figs demo

Now switch back to figure 1 and make some changes

multiple figs demo

Total running time of the script: (0 minutes 1.022 seconds)

Gallery generated by Sphinx-Gallery