jupyter notebook 绘图中文显示乱码(window/Ubuntu)
程序员文章站
2022-05-25 13:01:41
...
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei'] #用来正常显示中文标签
plt.rcParams['axes.unicode_minus']=False #用来正常显示负号
plt.plot((1,2,3),(4,5,7))
plt.xlabel('横坐标')
plt.ylabel('纵坐标')
plt.show()
添上上面的代码,绘图就能正常显示中文了。
上一篇: jupyter notebook 绘图中文显示乱码
下一篇: Django中message显示