- 问题:坐标轴打印中文时,显示会乱码
import matplotlib.pyplot as plt
plt.ylabel('时间刻度')
- 原因:matplotlib里面没有中文字体
- 解决方法:下载SimHei字体,快捷方法是使用everything直接在windows搜索simhei.ttf,再拖进Ubuntu就可以了
- 最后在程序里面加入字体的路径就可以了
import matplotlib.pyplot as plt
plt.plot([1, 2, 3, 4], [1, 4, 9, 16])
plt.xlabel('横轴标签', fontproperties=FontProperties(fname='/home/your_path/simhei.ttf',))
plt.ylabel('纵轴标签', fontproperties=FontProperties(fname='/home/your_path/simhei.ttf'))
Reference