Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Axes contiene la mayoría de los elementos de la figura: Axis, Tick, Line2D, Text, Polygon, etc., y establece el sistema de coordenadas. Y las instancias de Axes admiten devoluciones de llamada a través de un atributo de devoluciones de llamada.
función matplotlib.axes.Axes.use_sticky_edges()
La función Axes.use_sticky_edges() en el módulo de ejes de la biblioteca matplotlib se usa para obedecer todos los Artist.sticky_edges.
Sintaxis:
Axes.use_sticky_edges
Los siguientes ejemplos ilustran la función matplotlib.axes.Axes.use_sticky_edges() en matplotlib.axes:
Ejemplo 1:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt y, x = np.mgrid[:6, 1:6] poly_coords = [ (0.25, 2.75), (3.25, 2.75), (2.25, 0.75), (0.25, 0.75) ] fig, ax = plt.subplots() ax.use_sticky_edges = False ax.pcolor(x, y, y + 20 * x, cmap ='Greens') ax.margins(x = 0.1, y = 0.05) ax.set_aspect('equal') fig.suptitle('matplotlib.axes.Axes.use_sticky_edges() \ function Example\n', fontweight ="bold") fig.canvas.draw() plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt y, x = np.mgrid[:6, 1:6] poly_coords = [ (0.25, 2.75), (3.25, 2.75), (2.25, 0.75), (0.25, 0.75) ] fig, (ax1, ax2) = plt.subplots(nrows = 2) ax2.use_sticky_edges = False for ax, status in zip((ax1, ax2), ('Is', 'Is Not')): # sticky cells = ax.pcolor(x, y, x + y, cmap ='PuBuGn') ax.add_patch( plt.Polygon(poly_coords, color ='green', alpha = 0.5) ) # not sticky ax.margins(x = 0.1, y = 0.05) ax.set_aspect('equal') ax.set_title('use_sticky_edges() function {} used'.format(status), fontweight ="bold") fig.suptitle('matplotlib.axes.Axes.use_sticky_edges() function \ Example\n', fontweight ="bold") fig.canvas.draw() plt.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA