Multiple Figs DemoΒΆ

Working with multiple figure windows and subplots

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

../../_images/sphx_glr_multiple_figs_demo_001.png

Out:

[<matplotlib.lines.Line2D object at 0x7fdbd0a12df0>]

Create figure 2

../../_images/sphx_glr_multiple_figs_demo_002.png

Out:

[<matplotlib.lines.Line2D object at 0x7fdbbcbe00d0>]

Now switch back to figure 1 and make some changes

../../_images/sphx_glr_multiple_figs_demo_003.png

Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery