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

La función Axis.get_major_locator() en el módulo de ejes de la biblioteca matplotlib se usa para obtener el localizador del ticker principal.

Sintaxis: Axis.get_major_locator(self)

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

Valor devuelto: este método devuelve el localizador del ticker principal.

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

Ejemplo 1:

Python3

# Implementation of matplotlib function 
import numpy as np
from matplotlib.axis import Axis  
import matplotlib.pyplot as plt   
    
x = np.linspace(0, 10, 1000) 
y = np.sin(2 * x) 
    
fig = plt.figure() 
ax = fig.add_subplot(111) 
    
ax.plot(x, y)
ax.grid()
  
print(Axis.get_major_locator(ax.yaxis))
  
plt.title("Matplotlib.axis.Axis.get_major_locator()\n\
Function Example", fontsize = 12, fontweight ='bold') 
plt.show()

Producción:

<matplotlib.ticker.AutoLocator object at 0x07D67ED0>

Ejemplo 2:

Python3

# Implementation of matplotlib function 
import numpy as np
from matplotlib.axis import Axis  
import matplotlib.pyplot as plt   
    
np.random.seed(19680801)  
    
fig, ax = plt.subplots()  
      
x, y, s, c = np.random.rand(4, 100)  
s *= 100
      
ax.scatter(x, y, s, c)
ax.grid()  
  
print(Axis.get_major_locator(ax.xaxis))
  
plt.title("Matplotlib.axis.Axis.get_major_locator()\n\
Function Example", fontsize = 12, fontweight ='bold') 
plt.show()

Producción:

<matplotlib.ticker.AutoLocator object at 0x07CA9FD0>

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 *