美文网首页
python 中 matplotlib.pyplot 绘图中文乱

python 中 matplotlib.pyplot 绘图中文乱

作者: 火禾子_ | 来源:发表于2019-04-14 20:35 被阅读0次

python是自带可以显示中文的字体的,输入如下代码可以查看系统可用字体。

from matplotlib.font_manager import FontManager
fm = FontManager()
mat_fonts = set(f.name for f in fm.ttflist)
print(mat_fonts)

在代码中加入一下内容,就可以愉快的使用中文 label 和 legend 了。

import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif'] = ['Arial Unicode MS']



参考:https://blog.csdn.net/qq_32590631/article/details/80509741

相关文章

网友评论

      本文标题:python 中 matplotlib.pyplot 绘图中文乱

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