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

La función Axis.get_gridlines() en el módulo de ejes de la biblioteca matplotlib se usa para obtener las líneas de cuadrícula como una lista de instancias de Line2D.
 

Sintaxis: Axis.get_gridlines(self) 

Parámetros: Este método no acepta ningún parámetro. 
 

Valor devuelto: este método devuelve las líneas de cuadrícula como una lista de instancias de Line2D. 

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

Python3

# Implementation of matplotlib function 
from matplotlib.axis import Axis
import numpy as np
import matplotlib.pyplot as plt
import random
    
fig, ax2 = plt.subplots()
x = []
  
for i in range(1,11):
    j = random.randint(1,10)
    x.append(i*j)
ax2.plot(x)
  
print("Value of get_gridlines() :")
for i in ax2.xaxis.get_gridlines():
    print(i)
    
fig.suptitle("Matplotlib.axis.Axis.get_gridlines()\
Function Example", fontsize = 12, fontweight ='bold') 
  
plt.show()

Producción: 
 

Value of get_gridlines() :
Line2D((0,0),(0,1))
Line2D((0,0),(0,1))
Line2D((0,0),(0,1))
Line2D((0,0),(0,1))
Line2D((0,0),(0,1))
Line2D((0,0),(0,1))
Line2D((0,0),(0,1))

Ejemplo 2:
 

Python3

# Implementation of matplotlib function 
from matplotlib.axis import Axis  
import matplotlib.pyplot as plt 
import matplotlib.text 
      
fig, ax = plt.subplots() 
      
ax.plot([5,1], label="Label 1") 
ax.plot([3,0], label="Label 2") 
      
legend = ax.legend(loc="upper right") 
offset = matplotlib.text.OffsetFrom(legend, (1.0, 0.0))
   
ax.annotate("String - Info", 
            xy = (0,0),  
            size = 14, 
            xycoords = 'figure fraction', 
            xytext = (0,-20),  
            textcoords = offset,  
            horizontalalignment = 'right',  
            verticalalignment = 'top') 
     
fig.canvas.draw() 
ax.grid()
    
print("Value of get_gridlines() :")
for i in ax.yaxis.get_gridlines():
    print(i)
    
fig.suptitle("Matplotlib.axis.Axis.get_gridlines()\
Function Example", fontsize = 12, fontweight ='bold') 
  
plt.show()

Producción: 
 

Value of get_gridlines() :
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))
Line2D((0,0),(1,0))

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 *