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()
El método set() en el módulo de artista de la biblioteca matplotlib es un establecedor de lotes de propiedades. Pase kwargs para establecer propiedades.
Sintaxis: Artist.set(self, **kwargs)
Parámetros: este método no acepta ningún parámetro que no sea **kwargs.
Devoluciones: este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.set() en matplotlib:
Ejemplo 1:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib import matplotlib.pyplot as plt import numpy as np t = np.arange(0.0, 2, 0.001) s = 1 + np.sin(8 * np.pi * t)*0.4 fig, ax = plt.subplots() ax.plot(t, s) Artist.set(ax, xlabel ='X-Axis', ylabel ='Y-Axis', xlim =(0, 1.5), ylim =(0.5, 1.5), title ='matplotlib.artist.Artist.set() function Example') ax.grid() plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function from matplotlib.artist import Artist import numpy as np import matplotlib.pyplot as plt np.random.seed(19680801) fig, ax = plt.subplots() x, y, s, c = np.random.rand(4, 200) s *= 200 ax.scatter(x, y, s, c) Artist.set(ax, xlabel ='X-Axis', ylabel ='Y-Axis', xlim =(0, 0.5), ylim =(0, 0.5), title ='matplotlib.artist.Artist.set() function Example') ax.grid() 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