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


Python Matplotlib.axes.Axes.axhline()用法及代码示例


Matplotlib是Python中的一个库,它是数字的-NumPy库的数学扩展。轴类包含大多数图形元素:Axis,Tick,Line2D,Text,Polygon等,并设置坐标系。 Axes实例通过callbacks属性支持回调。

matplotlib.axes.Axes.axhline()函数

matplotlib库的axiss模块中的Axes.axhline()函数用于在轴上添加一条水平线。

用法:


Axes.axhline(self, y=0, xmin=0, xmax=1, **kwargs)

参数:此方法接受以下描述的参数:

  • y:此参数是水平行数据坐标中的y位置,默认值为0。
  • xmin:此参数应在0到1之间,0是绘图的最左侧,1是绘图的最右侧,其默认值为0。
  • xmax:此参数应在0到1之间,0是绘图的最左侧,1是绘图的最右侧。其默认值为1。

返回值:这将返回以下内容:

  • 行数:这将返回代表绘制数据的Line2D对象的列表。

以下示例说明了matplotlib.axes中的matplotlib.axes.Axes.axhline()函数:

示例1:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import numpy as np 
import matplotlib.collections as collections 
  
t = np.arange(0.0, 2, 0.01) 
s1 = np.sin(4 * np.pi * t) 
s2 = 0.75 * np.sin(8 * np.pi * t) 
  
fig, ax = plt.subplots() 
  
ax.plot(t, s1, color ='black') 
ax.axhline(0, color ='green', lw = 2) 
ax.set_title('matplotlib.axes.Axes.axhline() Example') 
plt.show()

输出:

示例2:

# Implementation of matplotlib function 
import matplotlib.pyplot as plt 
import matplotlib.tri as mtri 
import numpy as np 
  
fig, ax = plt.subplots() 
x = np.arange(0, 8 * np.pi, 0.01) 
y = np.sin(x) 
ax.plot(x, y, color ='black') 
  
threshold = 0.35
ax.axhline(threshold, color ='green', 
           lw = 3, alpha = 0.7) 
  
ax.fill_between(x, 0, 1, where = y > threshold, 
                color ='green', alpha = 0.8,  
                transform = ax.get_xaxis_transform()) 
  
ax.set_title('matplotlib.axes.Axes.axhline() Example') 
plt.show()

输出:




相关用法


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