Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Pyplot es una interfaz basada en estado para un módulo Matplotlib que proporciona una interfaz similar a MATLAB. Hay varios gráficos que se pueden usar en Pyplot: Gráfico de línea, Contorno, Histograma, Dispersión, Gráfico 3D, etc.
método matplotlib.pyplot.waitforbuttonpress()
El método waitforbuttonpress() en el módulo pyplot de la biblioteca matplotlib se usa para bloquear llamadas para interactuar con la figura.
Sintaxis: matplotlib.pyplot.waitforbuttonpress(timeout=- 1)
Parámetros: este método acepta los siguientes parámetros que se analizan a continuación:
- timeout: este parámetro es el valor de tiempo de espera.
Devoluciones: este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.waitforbuttonpress() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt for ite in range(2): x = np.linspace(-2, 6, 100) y = (ite + 1)*x fig = plt.figure() ax = fig.subplots() ax.plot(x, y, '-b') fig.suptitle("""matplotlib.pyplot.waitforbuttonpress() function Example\n\n""", fontweight ="bold") w = plt.waitforbuttonpress() print("Result after", ite, "click", w) plt.show()
Producción:
Ejemplo 2:
# Implementation of matplotlib function import numpy as np import matplotlib.cm as cm import matplotlib.mlab as mlab import matplotlib.pyplot as plt fig = plt.figure() ax = fig.subplots() def tellme(s): fig.suptitle(s, fontweight ="bold") fig.canvas.draw() renderer = fig.canvas.renderer fig.draw(renderer) plt.clf() ax.axis([-1., 1., -1., 1.]) plt.setp(plt.gca(), autoscale_on = False) tellme("""matplotlib.pyplot.waitforbuttonpress() function Example\n\n""") w = plt.waitforbuttonpress() print("Result after click :", w) 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