setp根据此示例使用matplotlib函数:
import seaborn as snsimport matplotlib.pylab as pltsns.set_style("whitegrid")tips = sns.load_dataset("tips")ax = sns.stripplot(x="sex", y="total_bill", hue="day", data=tips, jitter=True)plt.setp(ax.get_legend().get_texts(), fontsize='22') # for legend textplt.setp(ax.get_legend().get_title(), fontsize='32') # for legend titleplt.show()
另一种方法是使用以下命令更改
font_scale所有图形
plotting_context:http
:
//seaborn.pydata.org/genic/seaborn.plotting_context.html
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)