Función Matplotlib.axis.Axis.get_zorder() en Python

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.Axis.get_zorder() Función

La función Axis.get_zorder() en el módulo de eje de la biblioteca matplotlib se usa para obtener el zorder del artista. 

Sintaxis: Axis.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.Axis.get_zorder() en matplotlib.axis:
 

Ejemplo 1:

Python3

# Implementation of matplotlib function
from matplotlib.axis import Axis
import numpy as np  
import matplotlib.pyplot as plt  
        
    
d = np.arange(49).reshape(7, 7)  
xx, yy = np.meshgrid(np.arange(8), np.arange(8))  
        
fig, ax = plt.subplots()  
        
ax.set_aspect(1)  
ax.pcolormesh(xx, yy, d)  
      
ax.text(2.4, 6.5, "Zorder Value : "
        + str(Axis.get_zorder(ax)),  
        fontweight ="bold")  
  
fig.suptitle('matplotlib.axis.Axis.get_zorder() \
function Example\n', fontweight ="bold")  
    
plt.show() 

Producción: 

Ejemplo 2:

Python3

# Implementation of matplotlib function
from matplotlib.axis import Axis
import numpy as np  
import matplotlib.pyplot as plt  
        
    
xx = np.random.rand(6, 5)  
        
fig, ax = plt.subplots()  
        
ax.pcolor(xx)  
ax.set_zorder(-3)  
      
ax.set_title( "Zorder Value : "
        + str(Axis.get_zorder(ax)),  
        fontweight ="bold")    
  
fig.suptitle('matplotlib.axis.Axis.get_zorder() \
function Example\n', 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *