matplotlib.pyplot.thetagrids #
- matplotlib.pyplot. thetagrids ( angle = None , labels = None , fmt = None , ** kwargs ) [source] #
現在の極座標プロットの theta グリッド線を取得または設定します。
呼び出し署名:
lines, labels = thetagrids() lines, labels = thetagrids(angles, labels=None, fmt=None, **kwargs)
引数なしで呼び出すと、
thetagrids
単純にタプル ( lines , labels ) を返します。引数を指定して呼び出すと、ラベルは指定された角度で表示されます。- パラメータ:
- float と度を含む角度のタプル
シータ グリッド線の角度。
- 文字列またはなしでタプルにラベルを付ける
各放射状グリッド線で使用するラベル。Noneの
projections.polar.ThetaFormatter
場合に使用されます。- fmt str または None
で使用されるフォーマット文字列
matplotlib.ticker.FormatStrFormatter
。たとえば、「%f」。ラジアン単位の角度が使用されることに注意してください。
- 戻り値:
- 行のリスト
lines.Line2D
シータのグリッド線。
- ラベルのリスト
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'))