Note
Click here to download the full example code
Multiple Figs DemoΒΆ
Working with multiple figure windows and subplots
Create figure 1
plt.figure(1)
plt.subplot(211)
plt.plot(t, s1)
plt.subplot(212)
plt.plot(t, 2*s1)

Out:
[<matplotlib.lines.Line2D object at 0x7f79ea3764c0>]
Create figure 2
plt.figure(2)
plt.plot(t, s2)

Out:
[<matplotlib.lines.Line2D object at 0x7f79cac6b5b0>]
Now switch back to figure 1 and make some changes
plt.figure(1)
plt.subplot(211)
plt.plot(t, s2, 's')
ax = plt.gca()
ax.set_xticklabels([])
plt.show()

Total running time of the script: ( 0 minutes 1.257 seconds)
Keywords: matplotlib code example, codex, python plot, pyplot Gallery generated by Sphinx-Gallery