Python Matplotlib pyplot 支持中文标题
程序员文章站
2022-03-02 13:04:12
...
在使用pyplot函数的时候, xlabel 和 ylabel 以及标题都不能显示中文,且控制台有报错,原来是pyplot默认是不支持中文的
通过以下方法设置
1. 通过plot.rcParams修改字体实现
- font.family:字体名
plt.rcParams["font.family"] = ["sans-serif"]
plt.rcParams["font.sans-serif"] = ['SimHei']
2. 使用中文的时候,增加属性fontproperties
plt.title("损失函数的值", fontproperties="SimHei")
plt.xlabel("训练次数", fontproperties="SimHei")
plt.ylabel("损失函数", fontproperties="SimHei")
推荐阅读
-
Python使用Matplotlib模块时坐标轴标题中文及各种特殊符号显示方法
-
Python使用matplotlib模块绘制图像并设置标题与坐标轴等信息示例
-
Python实现matplotlib显示中文的方法详解
-
Python利用matplotlib.pyplot绘图时如何设置坐标轴刻度
-
python发送邮件示例(支持中文邮件标题)
-
Python使用matplotlib绘图无法显示中文问题的解决方法
-
AES ECB PKCS5/PKCS7 加密 python实现 支持中文
-
python json.dump写文件支持中文并带缩进排版
-
在使用python的matplotlib绘制图形时出现中文乱码
-
Python | matplotlib.pyplot显示折线图的各种类型设置和用法