Matplotlib.artist.Artist.set_zorder() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. La clase Artist contiene una clase base Abstract para objetos que se representan en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.

método matplotlib.artist.Artist.set_zorder()

El método set_zorder() en el módulo de artista de la biblioteca matplotlib se usa para configurar el zorder para el artista.

Sintaxis: Artist.set_zorder(self, level)

Parámetros: este método acepta los siguientes parámetros.

  • nivel: este parámetro contiene el valor flotante.

Devoluciones: este método no devuelve ningún valor.

Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.set_zorder() en matplotlib:

Ejemplo 1:

# Implementation of matplotlib function
from matplotlib.artist import Artist  
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) 
m = ax.pcolormesh(xx, yy, d)
  
Artist.set_zorder(m, -15)
  
fig.suptitle('matplotlib.artist.Artist.set_zorder()\
function Example', fontweight ="bold") 
  
plt.show()

Producción:

Ejemplo 2:

# Implementation of matplotlib function
from matplotlib.artist import Artist  
import numpy as np 
import matplotlib.pyplot as plt 
     
  
xx = np.random.rand(16, 30) 
     
fig, (ax3, ax4) = plt.subplots(1, 2) 
     
m = ax3.pcolor(xx) 
     
ax3.set_title("No Zorder value ") 
     
m = ax4.pcolor(xx) 
Artist.set_zorder(m, -20) 
    
ax4.set_title("Zorder Value : -20") 
  
fig.suptitle('matplotlib.artist.Artist.set_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

Deja una respuesta

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