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.ioff():
La función ioff() en el módulo pyplot de la biblioteca matplotlib se usa para desactivar el modo interactivo.
Sintaxis: matplotlib.pyplot.ioff()
Parámetros: Este método no acepta ningún parámetro.
Devoluciones: este método no devuelve ningún valor.
Los siguientes ejemplos ilustran la función matplotlib.pyplot.ioff() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np plt.ioff() plt.plot([1.4, 2.5, 0.3]) axes = plt.gca() axes.plot([3.1, 2.2, 6]) plt.title('matplotlib.pyplot.ioff() function Example', fontweight ="bold") plt.show()
Producción:
Ejemplo #2:
# Implementation of matplotlib function import matplotlib.pyplot as plt import numpy as np plt.ioff() random_array = np.arange(-2, 4) line_1 = random_array * 2 line_2 = 10 / (random_array * 2 + 1) figure, axes = plt.subplots() axes.plot(random_array, line_1, 'ro-', random_array, line_2, 'bo-', linestyle ='solid') axes.fill_between(random_array, line_1, line_2, where = line_2>line_1, interpolate = True, color ='green', alpha = 0.4) lgnd = axes.legend(['line-1', 'line-2'], loc ='lower center', shadow = True) lgnd.get_frame().set_facecolor('# ffb19a') plt.title('matplotlib.pyplot.ioff() 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