import matplotlib.font_manager as fm
from matplotlib import rc
font_name = fm.FontProperties(fname="c:/Windows/Fonts/malgun.ttf").get_name()
rc('font', family=font_name)
이렇게 하면 matplotlib의 title axis의 한글이 정상적으로 나옴.
networkx의 node의 라벨은 따로 지정을 해줘야함.
nx.draw_networkx_labels(Gs[i],pos,Gs_label[i],font_family=font_name,font_size=10)
반응형
'Programming > python' 카테고리의 다른 글
matplotlib savefig에서 facecolor, 여백조정하기 (0) | 2019.07.17 |
---|---|
matplotlib colormap (0) | 2019.07.17 |
pandas에서 주의할점. np.where과 섞어쓰지 말자 (0) | 2019.07.09 |
[python] argparse 구문 jupyter 에서 사용하기 (2) | 2019.05.27 |
VScode에 jupyter notebook, ipython 사용하기 (0) | 2019.05.16 |