Pycharm在使用matplotlib画图时,如果在title,xlabel,ylabel中出现了中文,则会出现字体警告,中文字符显示为方框,具体如下例
plt.plot(x, y_1, label="自己")
plt.plot(x, y_2, label="同桌")
plt.legend()
在这里legend需要用使用prop接收字体 用来显示中文
from matplotlib import font_manager
my_font = font_manager.FontProperties(fname="JinTianYunDuoYouDianTian-2.ttf")
#这里填写你自己的中文字体文件地址就好了
plt.plot(x, y_1, label="自己")
plt.plot(x, y_2, label="同桌")
plt.legend(prop=my_font)
只有legend用prop来接收中文字体 用来显示中文
像xtick,ytick,xlable,ylable都是用fontproperties来接收中文字体
# 调整x轴的刻度
_xtick_labels = ["{}岁".format(i) for i in x]
plt.xticks(x, _xtick_labels, fontproperties=my_font)
# 添加描述信息
plt.xlabel("年龄", fontproperties=my_font)
plt.ylabel("个数", fontproperties=my_font)
plt.title("的户外耦合度境外的", fontproperties=my_font)
完整代码
from matplotlib import pyplot as plt
from matplotlib import font_manager
my_font = font_manager.FontProperties(fname="JinTianYunDuoYouDianTian-2.ttf")
fig = plt.figure(figsize=(20, 8), dpi=80)
y_1 = [1, 0, 1, 1, 2, 4, 3, 2, 3, 4, 4, 5, 6, 5, 4, 3, 3, 1, 1, 1]
y_2 = [1, 0, 3, 1, 2, 2, 3, 3, 2, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1]
x = range(11, 31)
# 调整x轴的刻度
_xtick_labels = ["{}岁".format(i) for i in x]
plt.xticks(x, _xtick_labels, fontproperties=my_font)
# 添加描述信息
plt.xlabel("年龄", fontproperties=my_font)
plt.ylabel("个数", fontproperties=my_font)
plt.title("的户外耦合度境外的", fontproperties=my_font)
# 绘制网格
plt.grid(alpha=0.1)
# alpha 透明度设置
plt.plot(x, y_1, label="自己")
plt.plot(x, y_2, label="同桌")
# 添加图例
plt.legend(prop=my_font)
# 只有这里 使用prop接收字体 用来显示中文
plt.show()