matplotlib.axes.axes.axhspan()
matplotlib.axes.axes.axhspan()函数,matplotlib库的Axes模块中的Axes.axhspan()函数用于在轴上添加一个水平的矩形。
语法:
Axes.axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs)
参数:该方法接受如下参数说明:
- ymin:设置数据单位水平跨度的下限。
- ymax:设置数据单位水平跨度的上限。
- xmin:数据单位垂直跨度的下限。
- xmax:表示数据单位垂直跨度的上限。
返回:
返回多边形。
下面的例子演示了matplotlib.axes中的matplotlib.axes.axhspan()函数:
示例1
# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
fig, ax = plt.subplots()
ax.axhspan(1.25, 1.55, facecolor ='g', alpha = 0.5)
ax.set_title('matplotlib.axes.Axes.axhspan() Example')
plt.show()
输出:
示例2
# Implementation of matplotlib function
import numpy as np
import matplotlib.pyplot as plt
t = np.arange(-2, 3, .01)
s = np.sin(np.pi * t)
fig, ax = plt.subplots()
ax.plot(t, s, color ='black')
ax.axhline(y = 1, color ='black')
ax.axvline(x = 1, color ='black')
ax.axvline(x = 0, ymin = 0.75, linewidth = 8, color ='green')
ax.axhline(y =.5, xmin = 0.25, xmax = 0.75, color ='black')
ax.axhspan(0.25, 0.75, facecolor ='0.5', alpha = 0.5)
ax.axvspan(1.25, 1.55, facecolor ='green', alpha = 0.5)
ax.set_title('matplotlib.axes.Axes.axhspan() Example')
plt.show()
输出: