python 2 그림 title,xlabel,ylabel 에 중국어 난동 문제 해결

그림 을 그 릴 때 중국어 제목 을 사용 하면 오류 가 발생 합 니 다.
python2 绘图title,xlabel,ylabel出现中文乱码
matplotlib.pyplot 가 표시 할 때 적당 한 글꼴 을 찾 을 수 없 기 때 문 입 니 다.
먼저 필요 한 글꼴(시스템 디스크 의 windows 아래 fonts 디 렉 터 리 에)을 FontProperties 에 추가 합 니 다.
구체 적 인 해결 방법 은 다음 과 같다.

 import matplotlib.pyplot as plt
 from matplotlib.font_manager import FontProperties 
 font_set = FontProperties(fname=r"c:\windows\fonts\simsun.ttc", size=12) 
 fig=plt.figure()
 fig.set(alpha=0.2)
  #     6   ,       (0,0)  
 plt.subplot2grid((2,3),(0,0))
 sex_group.plot(kind='bar')
 plt.title(u'    ',fontproperties=font_set)
 plt.ylabel(u'  ',fontproperties=font_set)
이상 python 2 그래 픽 title,xlabel,ylabel 에 중국어 난동 이 발생 하 는 문 제 를 해결 하 는 것 은 바로 편집장 이 여러분 에 게 공유 한 모든 내용 입 니 다.참고 하 시기 바 랍 니 다.여러분 들 도 많이 응원 해 주 셨 으 면 좋 겠 습 니 다.

좋은 웹페이지 즐겨찾기