在seaborn中,如何更改x和y轴标签字体大小?而不是使用“设置上下文”方法,有没有办法专门更改轴标签?这是我的代码:
def corrfunc(x, y, **kws):
r = stats.pearsonr(x, y)[0] ** 2
ax = plt.gca()
ax.annotate("r$^2$ = {:.2f}".format(r),
xy=(.1, .9), xycoords=ax.transAxes, fontsize=16)
if r > 0.6:
col = 'g'
elif r < 0.6:
col = 'r'
sns.regplot(x, y, color=col)
return r
IC_Plot = sns.PairGrid(df_IC, palette=["red"])
IC_Plot.map_offdiag(corrfunc)
IC_Plot.savefig("Save_Pair.png")
答案 0 :(得分:11)
更改绘图中所有x和y标签的字体大小的最简单方法是在脚本开头使用rcParams属性"axes.labelsize"
,例如
plt.rcParams["axes.labelsize"] = 15
您也可以设置每个标签的字体大小
for ax in plt.gcf().axes:
l = ax.get_xlabel()
ax.set_xlabel(l, fontsize=15)