728x90
쉽고 간단하게 해결 방법을 제시하고자 한다.
해당 파일을 다운로드하고 원하는 곳에 위치시킨 뒤
import matplotlib.font_manager as fm
path = 'C:\\Users\\Desktop\\my room\\NanumBarunGothic.ttf'
fontprob=fm.FontProperties(fname=path,size=18)
########################################################################
plt.barh(index, v1)
plt.yticks(index, a, fontsize=13,fontproperties=fontprob, rotation=0)
plt.show()
# 선언문마다 fontproperties=fontprob를 선언하면 된다.
▽
▼
▽
▼
300x250
▽
▼
▽
▼
728x90
'NO! Bugs!' 카테고리의 다른 글
'wget'은(는) 내부 또는 외부 명령, 실행할 수 있는 프로그램, 또는 배치 파일이 아닙니다. (0) | 2021.09.03 |
---|---|
Jupyter notebook 실행 시 Bad file descriptor 해결 (0) | 2021.08.11 |