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'))