Python中利用matplotlib画图,给坐标加标签,set_title,set_xlabel,set_ylabel的使用,设置字体类型

给坐标加标签时,
方法一:
一定要设置字体类型,否则出现以下情况
Python中利用matplotlib画图,给坐标加标签,set_title,set_xlabel,set_ylabel的使用,设置字体类型_第1张图片

fontproperties设置字体类型
fontsize设置字体大小
color设置字体颜色

ax.set_title("平方数", fontproperties="SimHei", fontsize=24)  
ax.set_xlabel("值",fontproperties="SimHei", fontsize=14)
ax.set_ylabel("值的平方",fontproperties="SimHei", fontsize=14)




方法二
如果很多地方使用相同字体,可统一设置。 例如:

```python
font = {'family' : 'Times New Roman',
'weight' : 'normal',
'size'   : 20,
}
ax.setxlabel('X axis', font)

参考:
https://blog.csdn.net/qq_30992103/article/details/101905466
https://blog.csdn.net/HHG20171226/article/details/101315011

你可能感兴趣的:(Python中利用matplotlib画图,给坐标加标签,set_title,set_xlabel,set_ylabel的使用,设置字体类型)