우노
[Python] Matplotlib plot 폰트 크기 변경 본문
예제 코드
import matplotlib.pyplot as plt
plt.rc('font', size=20) # 기본 폰트 크기
plt.rc('axes', labelsize=20) # x,y축 label 폰트 크기
plt.rc('xtick', labelsize=50) # x축 눈금 폰트 크기
plt.rc('ytick', labelsize=20) # y축 눈금 폰트 크기
plt.rc('legend', fontsize=20) # 범례 폰트 크기
plt.rc('figure', titlesize=50) # figure title 폰트 크기
참고
'Language > Python' 카테고리의 다른 글
[Python] zip, 인자 언패킹(argument unpacking), *args, **kwargs (0) | 2021.04.18 |
---|---|
[Python] Anaconda Python 버전 확인 및 변경 (0) | 2021.04.01 |
[Python] Pandas DataFrame column에 numpy 배열 추가하기 (0) | 2021.01.14 |
[Python] 2차원 dictionary (0) | 2021.01.13 |
[Python] Numpy 배열 요소 변환 (0) | 2021.01.12 |
Comments