오늘의 인기 글
최근 글
최근 댓글
Today
Total
05-09 00:00
관리 메뉴

우노

[Python] Matplotlib plot 폰트 크기 변경 본문

Language/Python

[Python] Matplotlib plot 폰트 크기 변경

운호(Noah) 2021. 3. 31. 16:15

예제 코드

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 폰트 크기

참고

Comments