Set the Current Figure in Matplotlib



Using the figure() method, we can set the current figure.

Steps

  • Create a new figure, or activate an existing figure, with the window title “Welcome to figure 1”.

  • Create a new figure, or activate an existing figure, with the window title “Welcome to figure 2”.

  • Using plt.show(), show the figures.

Example

from matplotlib import pyplot as plt

plt.figure("Welcome to figure 1")
plt.figure("Welcome to figure 2")    # Active Figure

plt.show()

Output

Updated on: 2021-03-16T10:54:16+05:30

891 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements