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.
Función matplotlib.pyplot.pause():
La función de pausa() en el módulo pyplot de la biblioteca matplotlib se usa para pausar durante segundos de intervalo.
Sintaxis:
matplotlib.pyplot.pause(interval)Parámetros: Este método no acepta ningún parámetro.
Valor devuelto: Este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.pause() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt np.random.seed(19) data = np.random.random((5, 10, 10)) for i in range(len(data)): plt.cla() plt.title('matplotlib.pyplot.pause() function Example\n\n Window {}'.format(i), fontweight ="bold") plt.imshow(data[i]) plt.pause(0.1)
Producción:
Ejemplo #2:
# Implementation of matplotlib function from mpl_toolkits.mplot3d import axes3d import matplotlib.pyplot as plt fig = plt.figure() ax = fig.add_subplot(111, projection ='3d') X, Y, Z = axes3d.get_test_data(0.1) ax.plot_wireframe(X, Y, Z, rstride = 5, cstride = 5) for angle in range(0, 360): ax.view_init(30, angle) plt.draw() plt.pause(.001) ax.set_title('matplotlib.pyplot.pause() function Example', fontweight ="bold")
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