jupyter notebook绘图时中文字符无法显示
jupyter notebook绘图时的中文显示问题
解决方法:
加入两行代码
plt.rcParams[‘font.sans-serif’] = [u’SimHei’]
plt.rcParams[‘axes.unicode_minus’] = False

相关文章: