matplotlib.pyplot.rc_context #

matplotlib.pyplot. rc_context ( rc =なし, fname =なし) [ソース] #

rcParams を一時的に変更するためのコンテキスト マネージャーを返します。

rcParams["backend"]、コンテキスト マネージャーによってリセットされません。

パラメータ:
rc辞書

一時的に設定する rcParams。

fname str またはパスのようなもの

Matplotlib rc 設定を含むファイル。fnamercの両方が指定された場合、 rcからの設定が優先されます。

こちらもご覧ください

matplotlibrc ファイル

dict を介して明示的な値を渡す:

with mpl.rc_context({'interactive': False}):
    fig, ax = plt.subplots()
    ax.plot(range(3), range(3))
    fig.savefig('example.png')
    plt.close(fig)

ファイルから設定を読み込む:

with mpl.rc_context(fname='print.rc'):
    plt.plot(x, y)  # uses 'print.rc'

#を使用した例matplotlib.pyplot.rc_context

スタイルシートのリファレンス

スタイルシートのリファレンス

スタイルシートのリファレンス
Matplotlib のロゴ

Matplotlib のロゴ

Matplotlib のロゴ