Matplotlib.pyplot.get_fignums() in Python (original) (raw)
Last Updated : 10 May, 2020
Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. There are various plots which can be used in Pyplot are Line Plot, Contour, Histogram, Scatter, 3D Plot, etc.
matplotlib.pyplot.get_fignums() method
The get_fignums() method in pyplot module of matplotlib library is used to get the list of existing figure numbers.
Syntax: matplotlib.pyplot.get_fignums()Parameters: This method does not accept any parameters.Returns: This method returns the list of existing figure numbers.
Below examples illustrate the matplotlib.pyplot.get_fignums() function in matplotlib.pyplot:Example 1:
Python3 1== `
Implementation of matplotlib function
import numpy as np import matplotlib.pyplot as plt
x = np.linspace(0, 10, 500) y = np.sin(x**2)+np.cos(x)
plt.plot(x, y, label ='Line 1')
plt.plot(x, y - 0.6, label ='Line 2')
w = plt.get_fignums()
plt.text(2, 1.98, "List of existing figure numbers : " + str(w), fontsize = 12)
plt.title('matplotlib.pyplot.get_fignums() function
Example', fontweight ="bold")
plt.show()
`
Output: Example 2:
Python3 1== `
Implementation of matplotlib function
import matplotlib.pyplot as plt import numpy as np
t = np.arange(0.01, 5.0, 0.01) s = np.exp(-t)
plt.plot(t, s) plt.ylim(1, 0) plt.ylabel('Display Y-axis Label', fontweight ='bold') plt.grid(True)
w = plt.get_fignums()
plt.text(0.9, 0.58, "List of existing figure numbers : " + str(w), fontsize = 12)
plt.title('matplotlib.pyplot.get_fignums() function
Example', fontweight ="bold")
plt.show()
`
Output:
Similar Reads
- Matplotlib.pyplot.get_figlabels() in Python Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. There are various plots which can be used in Pyplot are Line Plot, Contour, Histogram, Scatter, 3D Plot, 2 min read
- matplotlib.pyplot.figure() in Python Matplotlib is a library in Python and it is numerical - mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. There are various plots which can be used in Pyplot are Line Plot, Contour, Histogram, Scatter, 3D Plot, 2 min read
- Matplotlib.pyplot.figtext() in Python Matplotlib is an extensively used Python library for data visualization. It is a multi-platform data visualization library built on NumPy arrays, also designed to work with the SciPy stack. Matplotlib.pyplot.figtext() Figtext is used to add text to a figure at any location on it. You can even add th 3 min read
- Matplotlib.pyplot.ginput() in Python Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. There are various plots which can be used in Pyplot are Line Plot, Contour, Histogram, Scatter, 3D Plot, 2 min read
- Matplotlib.pyplot.fignum_exists() in Python Matplotlib is a library in Python and it is numerical – mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. There are various plots which can be used in Pyplot are Line Plot, Contour, Histogram, Scatter, 3D Plot, 2 min read
- Matplotlib.pyplot.axis() in Python Matplotlib is a plotting library for creating static, animated, and interactive visualizations in Python. Pyplot is a Matplotlib module which provides a MATLAB-like interface. Matplotlib is designed to be as usable as MATLAB, with the ability to use Python and the advantage of being free and open-so 1 min read
- Matplotlib.pyplot.hist2d() in Python Matplotlib is a library in Python and it is numerical - mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. matplotlib.pyplot.hist2d() Function The hist2d() function in pyplot module of matplotlib library is used 2 min read
- matplotlib.pyplot.imshow() in Python matplotlib.pyplot.imshow() function in Python is used to display images in a plot. It is part of the matplotlib library and allows you to visualize images as 2D data. This function is widely used for displaying images, matrices, or heatmaps where each value in the array corresponds to a color. Examp 5 min read
- Matplotlib.pyplot.clim() in Python Matplotlib is a library in Python and it is numerical - mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. There are various plots which can be used in Pyplot are Line Plot, Contour, Histogram, Scatter, 3D Plot, 2 min read
- Matplotlib.pyplot.connect() in Python Matplotlib is a library in Python and it is numerical - mathematical extension for NumPy library. Pyplot is a state-based interface to a Matplotlib module which provides a MATLAB-like interface. matplotlib.pyplot.connect() Function This method is used to connect an event with string s to a function. 3 min read