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

La función Axis.get_offset_text() en el módulo de eje de la biblioteca matplotlib se usa para obtener el eje offsetText como una instancia de texto.
 

Sintaxis: Axis.get_offset_text(self) 

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

Valor de retorno: este método devuelve el eje offsetText como una instancia de Text. 

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

Ejemplo 1:

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() 
fig.suptitle('Matplotlib.axis.Axis.get_offset_text()\n\
Function Example')  
ax.grid()
   
print("Value of get_offset_text() :",ax.xaxis.get_offset_text())
      
plt.show()

Producción: 
 

Value of get_offset_text() : Text(1, 24.911111111111108, '')

Ejemplo 2:

Python3

# Implementation of matplotlib function 
from matplotlib.axis import Axis  
import matplotlib.pyplot as plt 
import numpy as np 
    
    
fig, geeeks = plt.subplots() 
    
t = np.arange(0.0, 5.0, 0.001) 
s = np.cos(3 * np.pi * t) 
line = geeeks.plot(t, s, lw = 2) 
    
# Annotation 
geeeks.annotate('Local Max', xy =(3.3, 1), 
                xytext =(3, 1.8),  
                arrowprops = dict(facecolor ='green', 
                                  shrink = 0.05),) 
    
geeeks.set_ylim(-2, 2) 
fig.suptitle('Matplotlib.axis.Axis.get_offset_text()\n\
Function Example')  
geeeks.grid()
   
print("Value of get_offset_text() :",geeeks.xaxis.get_offset_text())
      
plt.show()

Producción: 
 

Value of get_offset_text() : Text(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 *