美文网首页
python matplotlib中文显示乱码问题

python matplotlib中文显示乱码问题

作者: 张沐之_ | 来源:发表于2018-06-21 15:14 被阅读0次

    问题描述

    matplotlib 画图时,中文显示乱码

    解决办法

    添加如下代码

    from pylab import mpl
    mpl.rcParams['font.sans-serif'] = ['FangSong'] # 指定默认字体
    mpl.rcParams['axes.unicode_minus'] = False # 解决保存图像是负号'-'显示为方块的问题
    

    参考

    https://blog.csdn.net/u010758410/article/details/71743225

    相关文章

      网友评论

          本文标题:python matplotlib中文显示乱码问题

          本文链接:https://www.haomeiwen.com/subject/tsaqyftx.html