matplotlib.pyplot.rc_context #
- matplotlib.pyplot. rc_context ( rc = 없음 , fname = 없음 ) [소스] #
일시적으로 rcParams를 변경하기 위한 컨텍스트 관리자를 반환합니다.
는
rcParams["backend"]
컨텍스트 관리자에 의해 재설정되지 않습니다.- 매개변수 :
- rc 사전
임시로 설정할 rcParams입니다.
- fname str 또는 경로 유사
Matplotlib rc 설정이 있는 파일. fname 과 rc 를 모두 지정하면 rc 의 설정 이 우선합니다.
또한보십시오
예
사전을 통해 명시적 값 전달:
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 로고