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.get_zorder()
La función Axes.get_zorder() en el módulo de ejes de la biblioteca matplotlib se usa para obtener el zorder del artista.
Sintaxis: Axes.get_zorder(self)
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método devuelve el zorder del artista.
Los siguientes ejemplos ilustran la función matplotlib.axes.Axes.get_zorder() en matplotlib.axes:
Ejemplo 1:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt d = np.arange(100).reshape(10, 10) xx, yy = np.meshgrid(np.arange(11), np.arange(11)) fig, ax = plt.subplots() ax.set_aspect(1) ax.pcolormesh(xx, yy, d) ax.text(3, 9.5, "Zorder Value : " + str(ax.get_zorder()), fontweight ="bold") fig.suptitle('matplotlib.axes.Axes.get_zorder() \ function Example', fontweight ="bold") plt.show()
Producción:
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() ax.pcolor(xx) ax.set_zorder(-20) ax.set_title("Zorder Value : " + str(ax.get_zorder())) fig.suptitle('matplotlib.axes.Axes.get_zorder() \ function Example', fontweight ="bold") 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