matplotlib 做图显示中文: import zhplot

查看 34|回复 2
作者:huangyezhufeng   
TLDR
pip install zhplot安装,之后import zhplot即可。
GitHub 地址
https://github.com/shenxiangzhuang/zhplot
为什么
  • 只想做个简单的图,能够正常显示中文
  • 不关心具体字体,不想为了做个图去捣腾系统字体

    示例
    import zhplot
    import matplotlib.pyplot as plt
    plt.plot([1, 2, 3, 4])
    plt.title('这是一个标题')
    plt.xlabel('横坐标')
    plt.ylabel('纵坐标')
    plt.show()
  • Mianmiss   
    挺好,第一次用 matplotlib 为了显示中文折腾了很久
    freefcw   
    给楼主点赞,确实很方便
    您需要登录后才可以回帖 登录 | 立即注册

    返回顶部