Matplotlib.axis.Axis.grid() función 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.grid()

La función Axis.grid() en el módulo de eje de la biblioteca matplotlib se usa para configurar las líneas de cuadrícula.
 

Sintaxis: Axis.grid(self, b=None, which=’major’, **kwargs) 

Parámetros: este método acepta los siguientes parámetros. 

  • b : Este parámetro es un parámetro opcional, ya sea para mostrar las líneas de cuadrícula o no.
  • which : este parámetro también es un parámetro opcional y son las líneas de cuadrícula para aplicar los cambios.

Valor devuelto : este método no devuelve ningún valor. 

Los siguientes ejemplos ilustran la función matplotlib.axis.Axis.grid() en matplotlib.axis:
Ejemplo 1:
 

Python3

# Implementation of matplotlib function 
from matplotlib.axis import Axis  
import matplotlib.pyplot as plt 
import numpy as np 
       
fig, ax = plt.subplots() 
ax.plot([1, 2, 3]) 
ax.xaxis.grid() 
    
fig.suptitle("Matplotlib.axis.Axis.grid()\
Function Example", fontsize = 12, fontweight ='bold')
  
plt.show()

Producción: 
 

Ejemplo 2:
 

Python3

# Implementation of matplotlib function 
from matplotlib.axis import Axis  
import numpy as np 
import matplotlib.pyplot as plt 
      
x = np.arange(-5, 5, 0.01) 
y1 = -3 * x*x + 10 * x + 10
y2 = 3 * x*x + x 
      
fig, [ax, ax1] = plt.subplots(2, 1,  
                              sharex = True) 
    
ax.plot(x, y1, x, y2, color ='black') 
ax.fill_between(x, y1, y2, where = y2 >y1, 
                facecolor ='green', 
                alpha = 0.8) 
    
ax.fill_between(x, y1, y2, where = y2 <= y1,  
                facecolor ='black',  
                alpha = 0.8) 
    
ax.xaxis.grid(True, color ="black") 
ax.set_title('\n Grid in X-axis', 
             fontsize = 12, fontweight ='bold') 
    
ax1.plot(x, y1, x, y2, color ='black') 
ax1.fill_between(x, y1, y2, where = y2 >y1,  
                 facecolor ='green', 
                 alpha = 0.8) 
    
ax1.fill_between(x, y1, y2, where = y2 <= y1, 
                 facecolor ='black',  
                 alpha = 0.8) 
    
ax1.yaxis.grid(True, color ="black")
ax1.set_title('Grid in y-axis', 
             fontsize = 12, fontweight ='bold') 
    
fig.suptitle("Matplotlib.axis.Axis.grid()\
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 *