matplotlib画图显示中文
程序员文章站
2024-01-19 15:08:46
...
因为本人用的是mac本,所以每次在使用matplotlib画图的时候都会调中文调中文
索性,现在记住
我比较常用的一种方法
1.找字体
先找出一个在你电脑上的中文字体
def getChineseFont():
return FontProperties(fname='/Users/sunfn/Desktop/PingFang.ttc')
2.使用
在每一个有中文的地方都使用上这个
plt.xticks(np.arange(0,len(i)),i,fontproperties=getChineseFont(),fontsize=8)
plt.title(u'{}'.format(str(num)),fontproperties=getChineseFont())
上一篇: 什么样的主板才不爆浆?
推荐阅读
-
matplotlib画图显示中文
-
matplotlib显示中文乱码
-
Python 中文乱码matplotlib乱码 (Windows)
-
pycharm_python中plt.show()画图不显示
-
python/matplotlib 画图 中文乱码
-
【Python开发】matplotlib绘图不显示问题解决plt.show()
-
ubuntu16 python matplotlib 中文显示乱码
-
python的matplotlib中plt.show()不显示图像
-
python matplotlib plt.show() 不显示图像
-
python matplotlib.pyplot.show() plt.show()(显示一个图表)