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.get_picker()
El método get_picker() en el módulo de artista de la biblioteca matplotlib se usa para definir el comportamiento de selección del artista.
Sintaxis: Artista.get_picker(self)
Parámetros: este método no acepta ningún parámetro.
Devoluciones: Este método el comportamiento de selección del artista.
Los siguientes ejemplos ilustran la función matplotlib.artist.Artist.get_picker() en matplotlib:
Ejemplo 1:
# Implementation of matplotlib function from matplotlib.artist import Artist import numpy as np import matplotlib.pyplot as plt np.random.seed(19680801) volume = np.random.rayleigh(7, size = 40) amount = np.random.poisson(7, size = 40) ranking = np.random.normal(size = 40) price = np.random.uniform(1, 7, size = 40) fig, ax = plt.subplots() scatter = ax.scatter(volume, amount, c = ranking, s = price * 3, vmin = -3, vmax = 3, cmap = "Spectral") legend1 = ax.legend(*scatter.legend_elements(num = 5), loc = "upper left", title = "Ranking") ax.add_artist(legend1) ax.text(8, 8, "Value return : " + str(Artist.get_picker(ax)), fontweight = "bold", fontsize = 18) fig.suptitle('matplotlib.artist.Artist.get_picker() \ 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 X = np.random.rand(10, 200) xs = np.mean(X, axis = 1) ys = np.std(X, axis = 1) fig = plt.figure() ax = fig.add_subplot(111) line, = ax.plot(xs, ys, 'go-', picker = 5) ax.set_picker(True) ax.text(0.48, 0.3, "Value return : " + str(Artist.get_picker(ax)), fontweight = "bold", fontsize = 18) fig.suptitle('matplotlib.artist.Artist.get_picker() \ 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