我有以下代码来创建Seaborn条带图。我很难弄清楚如何增加图中出现的图例的字体大小。
g=sns.stripplot(x="Market", y="Rate", hue="Group",data=myBenchmarkData, jitter=True, size=12, alpha=0.5)
g.axes.set_title("4* Rate Market and by Hotel Groups for Year 2016",fontsize=25)
g.set_xlabel("Market",fontsize=20)
g.set_ylabel("Rate (in EUR)",fontsize=20)
g.tick_params(labelsize=15)
plt.savefig ('benchmark1.png')
我的x轴和y轴标签字体大小没问题,但我的绘图中图例的字体大小很小。如何改变?
答案 0 :(得分:17)
根据此示例使用matplotlib函数setp
:
import seaborn as sns
import matplotlib.pylab as plt
sns.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 text
plt.setp(ax.get_legend().get_title(), fontsize='32') # for legend title
plt.show()
另一种方法是使用font_scale
更改所有图表的plotting_context
:
http://seaborn.pydata.org/generated/seaborn.plotting_context.html
答案 1 :(得分:4)
今天有一种更简单的方法,只需设置好身材然后致电
plt.legend(fontsize='x-large', title_fontsize='40')
https://matplotlib.org/api/_as_gen/matplotlib.pyplot.legend.html
可能取决于您使用的matplotlib的版本。我正在使用2.2.3,它具有fontsize
参数,但没有title_fontsize
。