Función Matplotlib.axis.Axis.cla() en Python

Matplotlib es una biblioteca en Python y es una extensión matemática numérica para la biblioteca NumPy. Es una biblioteca de visualización increíble en Python para gráficos 2D de arrays y se utiliza para trabajar con la pila SciPy más amplia.

función matplotlib.axis.Axis.cla()

La función Axis.cla() en el módulo de eje de la biblioteca matplotlib se usa para borrar este eje.

Sintaxis: Axis.cla(self)

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.axis.Axis.cla() en matplotlib.axis:

Ejemplo 1:

Python3

# Implementation of matplotlib function
from matplotlib.axis import Axis 
from matplotlib.artist import Artist  
import matplotlib.pyplot as plt   
    
# providing values to x and y   
x = [8, 5, 11, 13, 16, 23]  
y = [14, 8, 21, 7, 12, 15]  
      
fig, ax = plt.subplots()  
ax.plot(x, y)
ax.set_xlabel("X-axis")
ax.set_ylabel("Y-axis")
  
Axis.cla(ax.xaxis)
Axis.cla(ax.yaxis)
  
plt.title("Matplotlib.axis.Axis.cla()\n\
Function Example", fontsize = 12, fontweight ='bold') 
plt.show()

Producción:

Ejemplo 2:

Python3

# Implementation of matplotlib function 
import numpy as np
from matplotlib.axis import Axis  
import matplotlib.pyplot as plt   
    
t = np.linspace(0.0, 2.0, 201) 
s = np.sin(2 * np.pi * t) 
    
fig, ax= plt.subplots()
  
ax.plot(t, s) 
ax.grid(True)
ax.set_ylabel('y-axis', fontweight ='bold') 
ax.set_xlabel('x-axis', fontweight ='bold') 
  
Axis.cla(ax.yaxis)
  
plt.title("Matplotlib.axis.Axis.cla()\n\
Function Example", fontsize = 12, 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

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *