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
网友评论