如何在seaborn jointplot中更改注释的字体大小?

时间:2016-08-19 12:24:51

标签: python annotations font-size seaborn

我使用 -

制作一个带回归线的联合图
sns.jointplot(xdata,ydata,kind='reg', order=2,ylim=[-1,1],xlim=[-1,1],annot_kws={"loc": 4})

我可以使用annot_kws更改位置,但无法更改字体大小。如何更改字体大小?

1 个答案:

答案 0 :(得分:0)

我可以在制作绘图之前更改matplotlib的默认图例字体大小来更改字体大小。

matplotlib.rc("legend", fontsize=20)
sns.jointplot(xdata,ydata,kind='reg', order=2,ylim=[-1,1],xlim=[-1,1],annot_kws={"loc": 4})