Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Pyplot es una interfaz basada en estado para un módulo Matplotlib que proporciona una interfaz similar a MATLAB. Hay varios gráficos que se pueden usar en Pyplot: Gráfico de línea, Contorno, Histograma, Dispersión, Gráfico 3D, etc.
método matplotlib.pyplot.get_current_fig_manager()
El método get_current_fig_manager() en el módulo pyplot de la biblioteca matplotlib se usa para obtener el administrador de figuras de la figura actual.
Sintaxis: matplotlib.pyplot.get_current_fig_manager()
Parámetros: este método no acepta ningún parámetro.
Devoluciones: Este método devuelve el gestor de figuras de la figura actual.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.get_current_fig_manager() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np X = np.arange(-10, 10, 0.5) Y = np.arange(-10, 10, 0.5) U, V = np.meshgrid(X, Y) fig, ax = plt.subplots() ax.quiver(X, Y, U, V) ax.invert_xaxis() w = plt.get_current_fig_manager() print("Value Return by get_current_fig_manager():") print(w) fig.suptitle('matplotlib.pyplot.get_current_fig_manager() \ function Example', fontweight ="bold") plt.show()
Producción:
Valor devuelto por get_current_fig_manager():
<objeto matplotlib.backends._backend_tk.FigureManagerTk en 0x07BE6470>
Ejemplo 2:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt xx = np.random.rand(16, 30) fig, ax = plt.subplots() m = ax.pcolor(xx) m.set_zorder(-20) w = plt.get_current_fig_manager() print("Value Return by get_current_fig_manager():") print(w) fig.suptitle('matplotlib.pyplot.get_current_fig_manager()\ function Example', fontweight ="bold") plt.show()
Producción:
Valor devuelto por get_current_fig_manager():
<objeto matplotlib.backends._backend_tk.FigureManagerTk en 0x08725490>
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA