本文简要介绍 python 语言中 matplotlib.pyplot.axvspan
的用法。
-
在轴上添加一个垂直跨度(矩形)。
矩形从
xmin
水平跨越到xmax
,默认情况下,整个 y 轴垂直跨越。 y-span可以使用轴单位的ymin
(默认:0)和ymax
(默认:1)设置;例如ymin = 0.5
始终指 y 轴的中间,而与set_ylim
设置的限制无关。- 参数:
- xmin 浮点数
-
跨度的下 x 坐标,以数据单位表示。
- xmax 浮点数
-
跨度的上 x 坐标,以数据单位表示。
- ymin 浮点数,默认值:0
-
跨度的下 y 坐标,以 y 轴单位 (0-1) 为单位。
- ymax 浮点数,默认值:1
-
跨度的上 y 坐标,以 y 轴单位 (0-1) 为单位。
- 返回:
Polygon
-
从 (xmin, ymin) 到 (xmax, ymax) 的垂直跨度(矩形)。
- 其他参数:
- **kwargs
Polygon
属性 属性
说明
一个过滤器函数,它接受一个 (m, n, 3) 浮点数组和一个 dpi 值,并返回一个 (m, n, 3) 数组和距图像左下角的两个偏移量
标量或无
bool
antialiased
或 aa布尔或无
CapStyle
或 {'butt', 'projecting', 'round'}BboxBase
或无bool
补丁或(路径,变换)或无
bool
color
edgecolor
或 ec颜色或无
facecolor
或 fc颜色或无
bool
str
{'/'、'\'、'|'、'-'、'+'、'x', 'o'、'O'、'.'、'*'}
bool
JoinStyle
或 {'miter', 'round', 'bevel'}object
linestyle
或 ls{'-', '--', '-.', ':', '', (offset, on-off-seq), ...}
linewidth
或 lw浮点数或无
bool
None 或 bool 或 float 或可调用
bool
(比例:浮点数,长度:浮点数,随机性:浮点数)
布尔或无
str
bool
(N, 2) 类似数组
float
- **kwargs
例子
从 x = 1.25 到 x = 1.55 绘制一个垂直的绿色半透明矩形,跨越轴的 y 范围。
>>> axvspan(1.25, 1.55, facecolor='g', alpha=0.5)
用法
matplotlib.pyplot.axvspan(xmin, xmax, ymin=0, ymax=1, **kwargs)
相关用法
- Python matplotlib axline用法及代码示例
- Python matplotlib axis用法及代码示例
- Python matplotlib axes用法及代码示例
- Python matplotlib arrow用法及代码示例
- Python matplotlib Axes.get_legend_handles_labels用法及代码示例
- Python matplotlib AbstractMovieWriter用法及代码示例
- Python matplotlib triplot用法及代码示例
- Python matplotlib StarPolygonCollection.set_hatch用法及代码示例
- Python matplotlib Axes.hist用法及代码示例
- Python matplotlib boxplot用法及代码示例
- Python matplotlib subplots用法及代码示例
- Python matplotlib InsetPosition用法及代码示例
- Python matplotlib ToolManager.toolmanager_disconnect用法及代码示例
- Python matplotlib Figure.set_size_inches用法及代码示例
- Python matplotlib figlegend用法及代码示例
- Python matplotlib Axes.step用法及代码示例
- Python matplotlib Axes.contour用法及代码示例
- Python matplotlib LassoSelector用法及代码示例
- Python matplotlib BrokenBarHCollection.set_hatch用法及代码示例
- Python matplotlib Axes.plot用法及代码示例
- Python matplotlib Axes.semilogx用法及代码示例
- Python matplotlib Axes.semilogy用法及代码示例
- Python matplotlib MovieWriterRegistry.register用法及代码示例
- Python matplotlib PolyQuadMesh.set_hatch用法及代码示例
- Python matplotlib warn_deprecated用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.pyplot.axvspan。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。