其他分享
首页 > 其他分享> > plt.xlabel()无法显示中文

plt.xlabel()无法显示中文

作者:互联网

1.全局设置中文字体

from pylab import mpl
mpl.rcParams['font.sans-serif'] = ['SimHei']   # 雅黑字体
plt.scatter(data.Education,data.Income)
plt.xlabel("受教育年限")
plt.ylabel("工资")
plt.show()

2.修改源文件

    (本人在D:\SoftWare\Anaconda\Lib\site-packages\matplotlib\mpl-data),用任意文本编辑器打开。

 看完点个关注呗!!(总结不易)

标签:中文,plt,sans,SimHei,mpl,serif,xlabel,data
来源: https://www.cnblogs.com/BlairGrowing/p/15419223.html