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

multiple figs demo

Out:

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

Create figure 2

multiple figs demo

Out:

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

Now switch back to figure 1 and make some changes

multiple figs demo

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