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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。