Clase de artista de Matplotlib en un FigureCanvas. Todos los elementos visibles en una figura son subclases de Artista.
Propiedad Matplotlib.artist.Artist.axes()
La propiedad axes() en el módulo de artista de la biblioteca matplotlib Ninguno
propiedad: Artist.axes
Los siguientes ejemplos ilustran la propiedad matplotlib.artist.Artist.axes() en matplotlib:
Ejemplo 1:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib.pyplot as plt # providing values to x and y x = [8, 5, 11, 13, 16, 23] y = [14, 8, 21, 7, 12, 15] # to plot x and y plt.plot(x, y) # use of axes() property axs = Artist.axes plt.text(8.5, 14, str(axs), fontweight="bold") plt.title("""matplotlib.artist.Artist.axes() property Example""", fontweight="bold") plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function from matplotlib.artist import Artist import matplotlib.pyplot as plt # providing values to x and y x = [8, 5, 11, 13, 16, 23] y = [14, 8, 21, 7, 12, 15] # to plot x and y plt.plot(x, y) plt.axes(facecolor = 'black') axs = Artist.axes print(str(axs)) plt.title("""matplotlib.artist.Artist.axes() property 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