seaborn绘图中的字体大小问题
修改seaborn 中PairGrid的图例字体大小
在使用seaborn.PairGrid中,只需要修改legend中的字体大小。踩了许多坑,尝试了各种方法均无效。这里记录一种可行的方法。
g = sns.PairGrid(df, hue='label', corner=True, palette=palette, diag_sharey=False)
g.map_offdiag(sns.scatterplot)
g.add_legend()
sns.move_legend(g, "upper right", bbox_to_anchor=(.75, .75),fontsize = 18, title_fontsize = 18)
在move_legend()中修改fontsize 和title_fontsize 的大小是有效的;
而在add_legend()中修改fontsize 和title_fontsize 不起作用。