[python] konlpy 하다가 그래프에 한글 안나올때, 어제는 안되고 오늘은 되네.
https://www.lucypark.kr/courses/2015-dm/text-mining.html
맥북에서 그래프에 한글 계속 안나오다가, 오늘 해보니까 또 나오네. 뭔 조화인가? 오타인가?
Troubleshooting: For those who see rectangles instead of letters in the saved plot file, include the following configurations before drawing the plot:
from matplotlib import font_manager, rc font_fname = 'c:/windows/fonts/gulim.ttc' # A font of your choice font_name = font_manager.FontProperties(fname=font_fname).get_name() rc('font', family=font_name)
Some example fonts:
- Mac OS:
/Library/Fonts/AppleGothic.ttf
.
'프로그래밍 > Python' 카테고리의 다른 글
[python] pytagcloud에서 한글 안될때, font.json (0) | 2017.06.21 |
---|---|
파이썬으로 영어와 한국어 텍스트 다루기 (0) | 2017.06.21 |
[python] 파이썬으로 영어와 한국어 텍스트 다루기, 문서 전처리 (0) | 2017.06.15 |
konlpy 한국어 처리 패키지 (0) | 2017.06.15 |
[Python] 그래프에서 한글 깨질때 (0) | 2017.06.15 |