linux matplotlib 显示中文

matplotlib 显示中文

matplotlib 在linux中默认不显示中文,要让其显示中文,我们可以使用matplotlib 提供的font_manager方法来解决。
1、首先,终端中查询你本机所有可用的中文字体,终端中执行

fc-list :lang=zh # 显示所有中文字体,若要显示所有字体可使用  fc-list 命令

2、使用matplotlib 的font_manager进行设置

x、y轴刻度显示中文,x、y轴描述信息显示中文、图标标题显示中文 例如
linux matplotlib 显示中文_第1张图片

from matplotlib import font_manager
# fname中选择一个你本机查询出来的字体 若没有中文字体则需要你本人手动安装
font = font_manager.FontProperties(fname="/usr/share/fonts/TTF/DroidSansFallbackFull.ttf")

# 设置x、y轴刻度的时候显示中文 在xticks、yticks加上 rotation=45, fontproperties=font 例如
pyplot.xticks(range(0, 26), x_label, rotation=45, fontproperties=font)

# 设置xy轴描述信息的时候显示中文 
pyplot.xlabel("/时间", fontproperties=font)
pyplot.ylabel("/度数", fontproperties=font)
pyplot.title("天气度数统计图表", fontproperties=font)

多段绘图描述信息显示中文,例如
linux matplotlib 显示中文_第2张图片

# 设置prop属性
pyplot.legend(prop=font)

此方法在win、linux、mac都适用,不过我只在linux上实验过,有需要的同学可以试试

你可能感兴趣的:(数据分析,matplotlib显示中文)