Python中的 matplotlib.axes.Axes.axhspan()
Matplotlib是Python中的一个库,它是 NumPy 库的数值数学扩展。 Axes 类包含大部分图形元素:Axis、Tick、Line2D、Text、Polygon 等,并设置坐标系。 Axes 的实例通过回调属性支持回调。
matplotlib.axes.Axes.axhspan()函数
matplotlib 库的轴模块中的Axes.axhspan()函数用于在轴上添加水平跨度(矩形)。
Syntax:
Parameters: This method accept the following parameters that are described below:
- ymin: This parameter is the lower limit of the horizontal span in data units.
- ymax: This parameter is the upper limit of the horizontal span in data units.
- xmin: This parameter is the lower limit of the vertical span in data units.
- xmax: This parameter is the upper limit of the vertical span in data units.
Returns: This returns the Polygon.
下面的示例说明了 matplotlib.axes 中的 matplotlib.axes.Axes.axhspan()函数:
示例 1:
Axes.axhspan(self, ymin, ymax, xmin=0, xmax=1, **kwargs)
输出:
示例 2:
# 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()
输出: