Clase de artista de Matplotlib en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.
Método Matplotlib.artist.Artist.remove()
El método remove() en el módulo de artista de la biblioteca matplotlib
Sintaxis: Artist.remove self
Parámetros: Este método no acepta ningún parámetro.
Devoluciones:
Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.remove() en matplotlib:
Ejemplo 1:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib.pyplot as plt fig, axs = plt.subplots() axs.plot([1, 2, 3]) # use of remove() method Artist.remove(axs) fig.suptitle("""matplotlib.artist.Artist.remove() function Example""", fontweight="bold") plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib.pyplot as plt fig, (axs, axs2) = plt.subplots(2, 1) gs = axs2.get_gridspec() # use of remove() method Artist.remove(axs) axbig = fig.add_subplot(gs[1:, -1]) axbig.annotate("Removed one Axes", (0.4, 0.5), xycoords ='axes fraction', va ='center') fig.suptitle("""matplotlib.artist.Artist.remove() 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