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.isinteractive()
El método isinteractive() en el módulo pyplot de la biblioteca matplotlib se usa para determinar si se debe volver a dibujar después de cada comando de trazado.
Sintaxis: matplotlib.pyplot.isinteractive()
Parámetros: este método no acepta ningún parámetro.
Devoluciones: este método devuelve si se debe volver a dibujar después de cada comando de trazado o no.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.isinteractive() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt x = np.linspace(0, 10, 500) y = np.sin(x**2)+np.cos(x) plt.plot(x, y, label ='Line 1') plt.plot(x, y - 0.6, label ='Line 2') w = plt.isinteractive() print("Is we can redraw after every plotting command : ", str(w)) plt.title('matplotlib.pyplot.isinteractive() function \ Example', fontweight ="bold") plt.show()
Producción:
Is we can redraw after every plotting command : False
Ejemplo 2:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np t = np.arange(0.01, 5.0, 0.01) s = np.exp(-t) plt.plot(t, s) plt.ylim(1, 0) plt.ylabel('Display Y-axis Label', fontweight ='bold') plt.grid(True) w = plt.isinteractive() print("Is we can redraw after every plotting command : ", str(w)) plt.title('matplotlib.pyplot.isinteractive() function \ Example', fontweight ="bold") plt.show()
Producción:
Is we can redraw after every plotting command : False
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA