matplotlib.pyplot.rc_context #
- matplotlib.pyplot。rc_context ( rc = None , fname = None ) [source] #
返回用于临时更改 rcParams 的上下文管理器。
上下文管理器
rcParams["backend"]
不会重置。- 参数:
- rc字典
要临时设置的 rcParams。
- fname str 或类似路径
具有 Matplotlib rc 设置的文件。如果同时给出fname和rc ,则rc中的设置优先。
也可以看看
例子
通过 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 徽标