Matplotlib.artist.Artist.get_agg_filter() en Python

Clase de artista de Matplotlib en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.

Método Matplotlib.artist.Artist.get_agg_filter()

El método get_agg_filter() en el módulo de artista de la biblioteca matplotlib

Sintaxis: Artista. (uno mismo)

Parámetros: Este método no acepta ningún parámetro.

Devoluciones:

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

Ejemplo 1:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.artist import Artist 
  
  
xx = np.random.rand(16, 30)
  
fig, axs = plt.subplots()
  
m = axs.pcolor(xx)
m.set_zorder(-20)
  
# use of get_agg_filter() method
val = Artist.get_agg_filter(axs)
axs.set_title("Value Return by get_agg_filter(): "
              + str(val))
  
fig.suptitle('matplotlib.artist.Artist.get_agg_filter() \
function Example', fontweight="bold")
  
plt.show()

Producción:

Ejemplo 2:

# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
from matplotlib.artist import Artist 
  
  
np.random.seed(10**7)
geeks = np.random.randn(40)
  
fig, axs = plt.subplots()
axs.acorr(geeks, usevlines=True, normed=True,
          maxlags=30, lw=2)
  
axs.grid(True)
  
# use of get_agg_filter() method
val = Artist.get_agg_filter(axs)
axs.set_title("Value Return by get_agg_filter(): " 
              + str(val))
  
fig.suptitle('matplotlib.artist.Artist.get_agg_filter() \
function Example', fontweight="bold")
  
plt.show()

Producción:

Publicación traducida automáticamente

Artículo escrito por shivanisinghss2110 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 *