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

plt.figure(1)
plt.subplot(211)
plt.plot(t, s1)
plt.subplot(212)
plt.plot(t, 2*s1)
multiple figs demo

Out:

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

Create figure 2

plt.figure(2)
plt.plot(t, s2)
multiple figs demo

Out:

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

Now switch back to figure 1 and make some changes

multiple figs demo

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

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