반응형
Notice
Recent Posts
Recent Comments
Link
관리 메뉴

bro's coding

matplotlib.font_manager, rc(한글 사용하기) 본문

[IT]/python.matplotlib

matplotlib.font_manager, rc(한글 사용하기)

givemebro 2020. 4. 6. 12:26
반응형
# 가볍게 복붙
from matplotlib import font_manager, rc
font_name=font_manager.FontProperties(fname="C:/Windows/Fonts/HMFMPYUN.TTF").get_name()

# fname="C:/Windows/Fonts/HMFMPYUN.TTF" 원하는 font 찾아서 바꿈

rc('font',family=font_name)
반응형

'[IT] > python.matplotlib' 카테고리의 다른 글

finance  (0) 2020.06.09
matplotlib.animation_2  (0) 2020.06.08
matplotlib.animation  (0) 2020.06.08
matplotlib.dist_table  (0) 2020.04.07
matplotlib.axis(축 다루기)  (0) 2020.04.03
matplotlib.savefig(그래프 저장하기)  (0) 2020.04.03
matplot.annotate(화살표, 그리드, 텍스트 그리기)  (0) 2020.04.03
matplotlib.subplot(그래프 여러개 그리기 2)  (0) 2020.04.03
Comments