码迷,mamicode.com
首页 > 编程语言 > 详细

python 2: 解决python中的plot函数的图例legend不能显示中文问题

时间:2017-04-10 17:03:52      阅读:3297      评论:0      收藏:0      [点我收藏+]

标签:question   link   显示中文   dream   range   man   axis   tac   targe   

 问题:

图像标题、横纵坐标轴的标签都能显示中文名字,但是图例就是不能显示中文,怎么解决呢?

 解决:

1 plt.figure()
2 plt.title(u训练性能, fontproperties=font)
3 plt.plot(history.epoch, history.history[loss], label=u训练误差)
4 plt.plot(history.epoch, history.history[val_loss], label=u验证误差)
5 plt.ylabel(u误差, fontproperties=font)
6 plt.xlabel(u训练次数, fontproperties=font)
7 plt.legend(prop =font)
8 fig_name = save_path + / + Training performance_ + datetime.now().strftime("%Y%m%d") + .pdf
9 plt.savefig(fig_name)

 或

 

 1 x = np.arange(1, 11, 1)
 2 plt.figure()
 3 plt.title(u训练性能, fontproperties=font)
 4 plt.plot(x, x * 2, label=u训练误差)
 5 plt.plot(x, x * 3, label=u验证误差)
 6 plt.ylabel(u误差, fontproperties=font)
 7 plt.xlabel(u训练次数, fontproperties=font)
 8 plt.legend(prop =font)
 9 fig_name = save_path + / + Training performance_ + datetime.now().strftime("%Y%m%d") + .pdf
10 plt.savefig(fig_name)

 

 

参考文献:

显示图例(legend)

How to set font size of Matplotlib axis Legend?

python 2: 解决python中的plot函数的图例legend不能显示中文问题

标签:question   link   显示中文   dream   range   man   axis   tac   targe   

原文地址:http://www.cnblogs.com/dmzhuo/p/6673698.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!