Ubuntu解决matplotlib.pyplot的title和label中文乱码问题
Ubuntu解决matplotlib.pyplot的title和label中文乱码问题
中文乱码问题示例
使用matplotlib.pyplot画图时,需要在图标题、轴标题处使用中文,用以下代码画出来的图会出现乱码,如下图所示。
t = np.linspace(0, 2*np.pi, 100)
y = np.sin(t)
plt.plot(t, y)
plt.title(u"正弦信号")
plt...
原创
2019-04-18 10:50:28 ·
3323 阅读 ·
0 评论