本文简要介绍 python 语言中 matplotlib.pyplot.rgrids
的用法。
-
获取或设置当前极坐标图上的径向网格线。
调用签名:
lines, labels = rgrids() lines, labels = rgrids(radii, labels=None, angle=22.5, fmt=None, **kwargs)
当不带参数调用时,
rgrids
仅返回元组(lines
、labels
)。当使用参数调用时,标签将出现在指定的径向距离和角度处。- 参数:
- radii 带浮点数的元组
-
径向网格线的半径
- labels 带字符串或无的元组
-
在每个径向网格线上使用的标签。如果没有,将使用
matplotlib.ticker.ScalarFormatter
。 - angle 浮点数
-
半径标签的角度位置,以度为单位。
- fmt str 或 None
-
matplotlib.ticker.FormatStrFormatter
中使用的格式字符串。例如'%f'。
- 返回:
- lines
lines.Line2D
列表 -
径向网格线。
- labels
text.Text
列表 -
刻度标签。
- lines
- 其他参数:
- **kwargs
-
kwargs
是标签的可选Text
属性。
例子
# set the locations of the radial gridlines lines, labels = rgrids( (0.25, 0.5, 1.0) ) # set the locations and labels of the radial gridlines lines, labels = rgrids( (0.25, 0.5, 1.0), ('Tom', 'Dick', 'Harry' ))
用法
matplotlib.pyplot.rgrids(radii=None, labels=None, angle=None, fmt=None, **kwargs)
相关用法
- Python matplotlib register_cmap用法及代码示例
- Python matplotlib rc用法及代码示例
- Python matplotlib rc_context用法及代码示例
- Python matplotlib rename_parameter用法及代码示例
- Python matplotlib relativedelta用法及代码示例
- Python matplotlib axvspan用法及代码示例
- 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用法及代码示例
注:本文由纯净天空筛选整理自skytowner.com大神的英文原创作品 matplotlib.pyplot.rgrids。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。