Python 이 Matplotlib 모듈 을 사용 할 때 좌표 축 제목 중국어 및 각종 특수 기호 표시 방법

본 고의 실례 는 Python 이 Matplotlib 모듈 을 사용 할 때 좌표 축 제목 의 중국어 와 각종 특수 기호 표시 방법 을 설명 한다.여러분 께 참고 하도록 공유 하 겠 습 니 다.구체 적 으로 는 다음 과 같 습 니 다.
Matplotlib 중국어 디 스 플레이 문제--예 를 들 어 문 제 를 설명 합 니 다.

#-*- coding: utf-8 -*-
from pylab import *
t = arange(-4*pi, 4*pi, 0.01)
y = sin(t)/t
plt.plot(t, y)
plt.title('www.jb51.net - test')
plt.xlabel(u'\u2103',fontproperties='SimHei')
#   ,u'\u2103'    ,   u  unicode,       ,        “℃”      unicode     。   “   ”   ,            fontproperties    ,          。
plt.ylabel(u'  ',fontproperties='SimHei')#         。
plt.show()

실행 효과:

Matplotlib 에 서 는 LaTex 문법 을 지원 하 며,다양한 아름 다운 수학 공식 과 수학 기 호 를 표시 하려 면 조금 만 배 워 도 유용 하 다.구체 적 인 문법 은 참고 할 수 있다(http://wiki.gwrite.googlecode.com/hg/misc/LaTex-EquRef.html?r=1de19067fce5484bb5c39cbd049f6a47f7d8a2e9)
이렇게 사용 가능:
ylabel('Rice('+r'$\mu\mathrm{mol}$'+' '+'$ \mathrm{m}^{-2} \mathrm{s}^{-1}$'+')')
질문
좌표 축 제목 에 중국어 와 상하 표 시 를 가 진 각종 수학 단 위 를 동시에 표시 하려 면 두 단계 로 나 누 어야 합 니 다.
1.상기 중국 어 를 표시 하 는 방법 에 따라 먼저 중국어 제목 을 추가 합 니 다.
2.단위 에 대해 text 함 수 를 사용 하여 추가 합 니 다.text 함수 용법 은 다음 과 같 습 니 다(http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.text)。

import matplotlib.pyplot as plt
import numpy as np
t = np.linspace(0, 10, 1000)
y = np.sin(t)
plt.plot(t, y,label=u'     (m)')
plt.xlabel(u"  ", fontproperties='SimHei')
plt.ylabel(u"  ", fontproperties='SimHei')
plt.title(u"   ", fontproperties='SimHei')
#     
t=plt.text(6.25, -1.14,r'$(\mu\mathrm{mol}$'+' '+'$ \mathrm{m}^{-2} \mathrm{s}^{-1})$',fontsize=15, horizontalalignment='center',verticalalignment='center')
#      text   ,0   ,90   
t.set_rotation(0)
# legend     
plt.legend(prop={'family':'SimHei','size':15})
plt.savefig("C:\\Users\\Administrator\\Desktop\\test.png")

더 많은 파 이 썬 관련 내용 은 본 사이트 의 주 제 를 볼 수 있 습 니 다.
본 논문 에서 말 한 것 이 여러분 의 Python 프로 그래 밍 에 도움 이 되 기 를 바 랍 니 다.

좋은 웹페이지 즐겨찾기