欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

pandas绘图中文乱码解决方案 博客分类: python机器学习 python 

程序员文章站 2024-03-15 10:17:59
...

      pandas绘图的时候中文会变成方块。解决方法就是选择支持中文的字体即可。

 

 

 

import matplotlib.font_manager as fm

# 解决中文字体问题
# mac字体路径:/System/Library/Fonts/
cn_font = fm.FontProperties(fname='/System/Library/Fonts/PingFang.ttc')
plt.legend(prop=cn_font)

 

相关标签: python