Home  >  Article  >  Backend Development  >  Solution to matplotlib Chinese garbled characters in Python

Solution to matplotlib Chinese garbled characters in Python

黄舟
黄舟Original
2017-05-14 11:28:151879browse

Matplotlib is a good plotting package for Python, but it does not support Chinese itself (it seems that there is no Chinese font in its default configuration), so if it appears in the drawing Chinese, garbled characters will appear

Matplotlib is a good drawing package for Python, but it does not support Chinese (it seems that there is no Chinese font in its default configuration), so if Chinese appears in the drawing, it will Garbled characters will appear.

When matplotlib draws images with Chinese annotations, there will be garbled characters.

Example code:


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()

Solution: Introduce font

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()

## into the code #

The above is the detailed content of Solution to matplotlib Chinese garbled characters in Python. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn