Python中matplotlib中⽂乱码解决办法
Matplotlib是Python的⼀个很好的绘图包,但是其本⾝并不⽀持中⽂(貌似其默认配置中没有中⽂字体),所以如果绘图中出现了中⽂,就会出现乱码。
matplotlib绘制图像有中⽂标注时会有乱码问题。
实例代码:
import matplotlib
import matplotlib.pyplot as plt
#定义⽂本框和箭头格式
decisionNode =dict(box,fc="0.8")
leafNode=dict(box,fc="0.8")
arrow_args=dict(arrow)
#绘制带箭头的注解
def plotNode(nodeTxt,centerPt,parentPt,nodeType):
createPlot.axl.annotate(nodeTxt,xy=parentPt,xycoords='axes fraction',xytext=centerPt,textcoords='axes fraction',va="center",ha="center",bbox=nodeType,arrowprops=arrow_args)
def createPlot():
fig =plt.figure(1,facecolor='white')matplotlib中subplot
fig.clf()
createPlot.axl=plt.subplot(111,frameon=False)
plotNode(U'决策点',(0.5,0.1),(0.1,0.5),decisionNode)
plotNode(U'叶节点',(0.8,0.1),(0.3,0.8),leafNode)
plt.show()
解决办法:代码中引⼊字体
import matplotlib.pyplot as plt
import matplotlib
#定义⾃定义字体,⽂件名是系统中⽂字体
myfont = matplotlib.font_manager.FontProperties(fname='C:/Windows/f')
#解决负号'-'显⽰为⽅块的问题
decisionNode =dict(box,fc="0.8")
leafNode=dict(box,fc="0.8")
arrow_args=dict(arrow)
def plotNode(nodeTxt,centerPt,parentPt,nodeType):
createPlot.axl.annotate(nodeTxt,xy=parentPt,xycoords='axes fraction',xytext=centerPt,textcoords='axes fraction',va="center",ha="center",bbox=nodeType,arrowprops=arrow_args,fontproperties=myfont) def createPlot():
fig =plt.figure(1,facecolor='white')
fig.clf()
createPlot.axl=plt.subplot(111,frameon=False)
plotNode(U'决策点',(0.5,0.1),(0.1,0.5),decisionNode)
plotNode(U'叶节点',(0.8,0.1),(0.3,0.8),leafNode)
plt.show()
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。