Matplotlib.figure.Figure.waitforbuttonpress() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. El módulo de figura proporciona el artista de nivel superior, la figura, que contiene todos los elementos de la trama. Este módulo se utiliza para controlar el espaciado predeterminado de las subparcelas y el contenedor de nivel superior para todos los elementos de la parcela.

método matplotlib.figure.Figure.waitforbuttonpress()

El módulo de figura del método waitforbuttonpress() de la biblioteca matplotlib se usa para bloquear llamadas para interactuar con la figura.

Sintaxis: waitforbuttonpress(self, 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.figure.Figure.waitforbuttonpress() en matplotlib.figure:

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.figure.Figure.waitforbuttonpress()
    function Example\n\n""", fontweight ="bold")
  
    w = fig.waitforbuttonpress()
    print("Result after", ite, "click", w)
  
    fig.show()

Producción:

python-matplotlib-waitforbuttonpress-1

python-matplotlib-wairforbuttonpress-2

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)
  
fig.clf()
ax.axis([-1., 1., -1., 1.])
plt.setp(plt.gca(), autoscale_on = False)
  
tellme("""matplotlib.figure.Figure.waitforbuttonpress()
    function Example\n\n""")
  
w = fig.waitforbuttonpress()
print("Result after click :", w)
fig.show()

Producción:

python-matplotlib-waitforbuttonpress-3

python-matplotlib-waitforbuttonpress-4

Publicación traducida automáticamente

Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *