matplotlib.pyplot.thetagrids #
- matplotlib.pyplot。thetagrids (角度=无,标签=无, fmt =无, ** kwargs ) [来源] #
获取或设置当前极坐标图上的 theta 网格线。
来电签名:
lines, labels = thetagrids() lines, labels = thetagrids(angles, labels=None, fmt=None, **kwargs)
当不带参数调用时,
thetagrids
只返回元组(行,标签)。当使用参数调用时,标签将以指定的角度出现。- 参数:
- 带有浮点数、度数的角度元组
theta 网格线的角度。
- 用字符串或无标签元组
在每个径向网格线上使用的标签。将
projections.polar.ThetaFormatter
在 None 时使用。- fmt str 或无
中使用的格式字符串
matplotlib.ticker.FormatStrFormatter
。例如'%f'。请注意,将使用以弧度为单位的角度。
- 返回:
- 行列表
lines.Line2D
theta 网格线。
- 标签列表
text.Text
刻度标签。
- 行列表
- 其他参数:
- **kwargs
kwargs是标签的可选
Text
属性。
也可以看看
例子
# set the locations of the angular gridlines lines, labels = thetagrids(range(45, 360, 90)) # set the locations and labels of the angular gridlines lines, labels = thetagrids(range(45, 360, 90), ('NE', 'NW', 'SW', 'SE'))