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.
Función matplotlib.pyplot.cla()
La función cla() en el módulo pyplot de la biblioteca matplotlib se usa para borrar los ejes actuales.
Sintaxis:
matplotlib.pyplot.cla()
Los siguientes ejemplos ilustran la función matplotlib.pyplot.cla() en matplotlib.pyplot:
Ejemplo 1:
# Implementation of matplotlib function import matplotlib.pyplot as plt plt.plot([1, 2, 3, 4], [16, 4, 1, 8]) plt.cla() plt.title('matplotlib.pyplot.cla Example') plt.show()
Producción:
Ejemplo 2:
# 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) fig, [ax, ax1] = plt.subplots(2, 1) ax.set_ylabel('y-axis') ax.plot(t, s) ax.grid(True) ax1.set_ylabel('y-axis') ax1.set_xlabel('x-axis') ax1.plot(t, s) ax1.grid(True) ax1.cla() fig.suptitle('matplotlib.pyplot.cla Example') plt.show()
Producción:
Publicación traducida automáticamente
Artículo escrito por GeeksforGeeks-1 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA