matplotlib 笔记:修改xlabel,ylabel 字体

Posted UQI-LIUWJ

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了matplotlib 笔记:修改xlabel,ylabel 字体相关的知识,希望对你有一定的参考价值。

有的时候,当我们figure 过于大的时候,默认的字体可能就太小了,以至于看不到。

import matplotlib.pyplot as plt
plt.figure(figsize=(100,50))

plt.subplot(2,2,1)
plt.plot(RMSE)
plt.xlabel('epoch_theshold')
plt.ylabel('RMSE')
plt.subplot(2,2,2)
plt.plot(MAE)
plt.xlabel('epoch_theshold')
plt.ylabel('MAE')
plt.subplot(2,2,3)
plt.plot(MAX)
plt.xlabel('epoch_theshold')
plt.ylabel('MAX')
plt.subplot(2,2,4)
plt.plot(MAEP)
plt.xlabel('epoch_theshold')
plt.ylabel('MAPE')

 比如我们上述代码画出来的图如下所示,的的确确是有label的,就是太小了看不出来

 

这时候我们可以手动设置xlabel和ylabel的字体:

import matplotlib.pyplot as plt
plt.figure(figsize=(100,50))

font = 'family' : 'Times New Roman',
'weight' : 'normal',
'size'   : 100,
        

plt.subplot(2,2,1)
plt.plot(RMSE)
plt.xlabel('epoch_theshold',font)
plt.ylabel('RMSE',font)
plt.subplot(2,2,2)
plt.plot(MAE)
plt.xlabel('epoch_theshold',font)
plt.ylabel('MAE',font)
plt.subplot(2,2,3)
plt.plot(MAX)
plt.xlabel('epoch_theshold',font)
plt.ylabel('MAX',font)
plt.subplot(2,2,4)
plt.plot(MAEP)
plt.xlabel('epoch_theshold',font)
plt.ylabel('MAPE',font)

此时图像的标签就大很多了  

以上是关于matplotlib 笔记:修改xlabel,ylabel 字体的主要内容,如果未能解决你的问题,请参考以下文章

Matplotlib subplots_adjust hspace 使标题和 xlabels 不重叠?

莫烦课程笔记总结之matplotlib——legend图例

matplotlib画图出现乱码情况

Python学习笔记

在 Matplotlib 中清除子图

python3 使用matplotlib画图出现中文乱码的情况