当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python Matplotlib.axis.Axis.get_offset_text()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。它是Python中令人惊叹的可视化库,用于数组的2D图,并用于与更广泛的SciPy堆栈配合使用。

matplotlib.axis.Axis.get_offset_text()函数

matplotlib库的轴模块中的Axis.get_offset_text()函数用于获取轴offsetText作为Text实例。

用法: Axis.get_offset_text(self) 

参数:此方法不接受任何参数。

返回值:此方法返回轴offsetText作为Text实例。



以下示例说明了matplotlib.axis中的matplotlib.axis.Axis.get_offset_text()函数:

范例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()

输出:

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

范例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()

输出:

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



相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 Matplotlib.axis.Axis.get_offset_text() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。