Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Es una biblioteca de visualización increíble en Python para gráficos 2D de arrays y se utiliza para trabajar con la pila SciPy más amplia.
Matplotlib.axis.Tick.get_zorder() Función
La función Tick.get_zorder() en el módulo de eje de la biblioteca matplotlib se usa para obtener el zorder del artista.
Sintaxis: Tick.get_zorder(self)
Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: este método devuelve el zorder del artista.
Los siguientes ejemplos ilustran la función matplotlib.axis.Tick.get_zorder() en matplotlib.axis:
Ejemplo 1:
Python3
# Implementation of matplotlib function from matplotlib.axis import Tick import numpy as np import matplotlib.pyplot as plt d = np.arange(16).reshape(4, 4) xx, yy = np.meshgrid(np.arange(5), np.arange(5)) fig, ax = plt.subplots() ax.set_aspect(1) ax.pcolormesh(xx, yy, d) ax.text(1.4, 3.5, "Zorder Value : " + str(Tick.get_zorder(ax)), fontweight ="bold") fig.suptitle('matplotlib.axis.Tick.get_zorder() \ function Example', fontweight ="bold") plt.show()
Producción:
Ejemplo 2:
Python3
# Implementation of matplotlib function from matplotlib.axis import Tick import numpy as np import matplotlib.pyplot as plt xx = np.random.rand(3, 4) fig, ax = plt.subplots() ax.pcolor(xx) ax.set_zorder(3) ax.set_title( "Zorder Value : " + str(Tick.get_zorder(ax)), fontweight ="bold") fig.suptitle('matplotlib.axis.Tick.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