Rumah  >  Artikel  >  pembangunan bahagian belakang  >  matplotlib中文乱码在Python中的解决办法

matplotlib中文乱码在Python中的解决办法

黄舟
黄舟asal
2017-05-14 11:28:151792semak imbas

Matplotlib是Python的一个很好的绘图包,但是其本身并不支持中文(貌似其默认配置中没有中文字体),所以如果绘图中出现了中文,就会出现乱码

Matplotlib是Python的一个很好的绘图包,但是其本身并不支持中文(貌似其默认配置中没有中文字体),所以如果绘图中出现了中文,就会出现乱码。

matplotlib绘制图像有中文标注时会有乱码问题

实例代码:


import matplotlib
import matplotlib.pyplot as plt

#定义文本框和箭头格式
decisionNode =dict(boxstyle="sawtooth",fc="0.8")
leafNode=dict(boxstyle="round4",fc="0.8")
arrow_args=dict(arrowstyle="<-")

#绘制带箭头的注解
def plotNode(nodeTxt,centerPt,parentPt,nodeType):
  createPlot.axl.annotate(nodeTxt,xy=parentPt,xycoords=&#39;axes fraction&#39;,xytext=centerPt,textcoords=&#39;axes fraction&#39;,va="center",ha="center",bbox=nodeType,arrowprops=arrow_args)

def createPlot():
  fig =plt.figure(1,facecolor=&#39;white&#39;)
  fig.clf()
  createPlot.axl=plt.subplot(111,frameon=False)
  plotNode(U&#39;决策点&#39;,(0.5,0.1),(0.1,0.5),decisionNode)
  plotNode(U&#39;叶节点&#39;,(0.8,0.1),(0.3,0.8),leafNode)
  plt.show()

解决办法:代码中引入字体

import matplotlib.pyplot as plt
import matplotlib

#定义自定义字体,文件名是系统中文字体
myfont = matplotlib.font_manager.FontProperties(fname=&#39;C:/Windows/Fonts/simkai.ttf&#39;) 
#解决负号&#39;-&#39;显示为方块的问题 
matplotlib.rcParams[&#39;axes.unicode_minus&#39;]=False 

decisionNode =dict(boxstyle="sawtooth",fc="0.8")
leafNode=dict(boxstyle="round4",fc="0.8")
arrow_args=dict(arrowstyle="<-")

def plotNode(nodeTxt,centerPt,parentPt,nodeType):
  createPlot.axl.annotate(nodeTxt,xy=parentPt,xycoords=&#39;axes fraction&#39;,xytext=centerPt,textcoords=&#39;axes fraction&#39;,va="center",ha="center",bbox=nodeType,arrowprops=arrow_args,fontproperties=myfont)

def createPlot():
  fig =plt.figure(1,facecolor=&#39;white&#39;)
  fig.clf()
  createPlot.axl=plt.subplot(111,frameon=False)
  plotNode(U&#39;决策点&#39;,(0.5,0.1),(0.1,0.5),decisionNode)
  plotNode(U&#39;叶节点&#39;,(0.8,0.1),(0.3,0.8),leafNode)
  plt.show()

Atas ialah kandungan terperinci matplotlib中文乱码在Python中的解决办法. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!

Kenyataan:
Kandungan artikel ini disumbangkan secara sukarela oleh netizen, dan hak cipta adalah milik pengarang asal. Laman web ini tidak memikul tanggungjawab undang-undang yang sepadan. Jika anda menemui sebarang kandungan yang disyaki plagiarisme atau pelanggaran, sila hubungi admin@php.cn