Seaborn头衔位置

时间:2018-08-30 11:35:01

标签: python matplotlib location seaborn title

在此jointplot上,我的图形标题的位置很糟糕。我尝试过移动loc = 'leftrightcenter,但是它并没有从它所处的位置移动。我还尝试过基于该网站的其他建议,但这一点也没有解决。关于控制标题位置有什么建议吗?

ax.title.set_position([3, 15])

enter image description here

2 个答案:

答案 0 :(得分:1)

另一种方法是使用plt.suptitle为图形赋予居中标题,然后使用subplots_adjust在图形顶部为标题保留更多空间:

plt.subplots_adjust(top=0.9)
plt.suptitle('Season Winners Goal and Win Regression', fontsize = 16)

答案 1 :(得分:0)

尝试使用

plt.title('Season Winners Goal and Win Regression', y=1.3, fontsize = 16)

您可以通过更改数字在y位置上进行游戏。这里y轴的位置在相对坐标系中,这意味着y=1意味着绘图中最高y位置,任何超过1的位置都意味着将标题进一步推高。