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.
La función clf() en el módulo pyplot de la biblioteca matplotlib se usa para borrar la figura actual.
Sintaxis:
matplotlib.pyplot.clf()
Los siguientes ejemplos ilustran la función matplotlib.pyplot.clf() en matplotlib.pyplot:
Ejemplo 1:
Python3
# Implementation of matplotlib function import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4], [16, 4, 1, 8]) plt.clf() plt.title('matplotlib.pyplot.clf Example') plt.show()
Producción:
Ejemplo 2:
Python3
# Implementation of matplotlib function import numpy as np import matplotlib.pyplot as plt t = np.linspace(0.0, 2.0, 201) s = np.sin(2 * np.pi * t) plt.ylabel('y-axis') plt.xlabel('x-axis') plt.plot(t, s) plt.grid(True) plt.clf() plt.title('matplotlib.pyplot.clf Example') plt.show()
Salida:
Antes de usar la función clf()
Después de usar la función clf()
Publicación traducida automáticamente
Artículo escrito por SHUBHAMSINGH10 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA