Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. El módulo de figura proporciona el artista de nivel superior, la figura, que contiene todos los elementos de la trama. Este módulo se utiliza para controlar el espaciado predeterminado de las subparcelas y el contenedor de nivel superior para todos los elementos de la parcela.
método matplotlib.figure.Figure.get_tightbbox()
El módulo de figura del método get_tightbbox() de la biblioteca matplotlib se usa para obtener el cuadro delimitador (ajustado) de la figura en pulgadas.
Sintaxis: get_tightbbox(self, renderer, bbox_extra_artists=Ninguno)
Parámetros: este método acepta los siguientes parámetros.
- renderer : este parámetro es el renderizador de la instancia RendererBase
que se usará para dibujar las figuras.- bbox_extra_artists: este parámetro es la lista de artistas que se incluirán en el cuadro delimitador estrecho.
Devoluciones: este método devuelve BboxBase que contiene el cuadro delimitador.
Los siguientes ejemplos ilustran la función matplotlib.figure.Figure.get_tightbbox() en matplotlib.figure:
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 = fig.get_tightbbox(fig.canvas.get_renderer(), bbox_extra_artists = None) print("Value Return by get_tightbbox():") print(w) fig.suptitle('matplotlib.figure.Figure.get_tightbbox()\ function Example', fontweight ="bold") plt.show()
Producción:
Valor devuelto por get_tightbbox():
TransformedBbox(
Bbox(x0=27.65277777777777, y0=29.077777777777776, x1=576.0, y1=422.4),
Affine2D(
[[0.01 0. 0. ]
[0. 0.01 0. ]
[0. 0. 1. ]]))
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 = fig.get_tightbbox(fig.canvas.get_renderer(), bbox_extra_artists = None) print("Value Return by get_tightbbox():") print(w) fig.suptitle('matplotlib.figure.Figure.get_tightbbox()\ function Example', fontweight ="bold") plt.show()
Producción:
Valor devuelto por get_tightbbox():
TransformedBbox(
Bbox(x0=52.52777777777777, y0=29.077777777777776, x1=584.875, y1=427.9),
Affine2D(
[[0.01 0. 0. ]
[0. 0.01 0. ]
[0. 0. 1. ]]))
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA