我使用不同色调和风格的relplot,并希望显示各自的图例条目,而不是在对方下面。
所以现在我得到了一个这样的图例:
相反,我希望有一个单一的图例看起来像这样:
如何才能做到
我尝试设置以下内容,但没有效果:
plot._legend
leg._ncol = 2
leg.handleheight = 1 # restricting the height
解决此问题的最小工作示例:
import pandas as pd
import seaborn as sns
columns = ['category1', 'category2', 'category3', 'time', 'value']
data = [['content1', 'other1', 'critera1', 0, 0.1], ['content1', 'other1', 'critera1', 1, 0.4], ['content1', 'other1', 'critera1', 2, 0.7], ['content2', 'other1', 'critera1', 0, 0.2], ['content2', 'other1', 'critera1', 1, 0.6], ['content2', 'other1', 'critera1', 2, 0.8], ['content1', 'other2', 'critera1', 0, 0.0], ['content1', 'other2', 'critera1', 1, 0.2], ['content1', 'other2', 'critera1', 2, 0.8], ['content2', 'other2', 'critera1', 0, 0.3], ['content2', 'other2', 'critera1', 1, 0.6], ['content2', 'other2', 'critera1', 2, 0.5], [
'content1', 'other1', 'critera2', 0, 0.1], ['content1', 'other1', 'critera2', 1, 0.4], ['content1', 'other1', 'critera2', 2, 0.7], ['content2', 'other1', 'critera2', 0, 0.2], ['content2', 'other1', 'critera2', 1, 0.6], ['content2', 'other1', 'critera2', 2, 0.8], ['content1', 'other2', 'critera2', 0, 0.0], ['content1', 'other2', 'critera2', 1, 0.2], ['content1', 'other2', 'critera2', 2, 0.8], ['content2', 'other2', 'critera2', 0, 0.3], ['content2', 'other2', 'critera2', 1, 0.6], ['content2', 'other2', 'critera2', 2, 0.5], ]
df = pd.DataFrame(data, columns=columns)
plot = sns.relplot(x='time', y='value', col='category3', hue='category1', style='category2', kind="line", col_wrap=2, data=df)
leg = plot._legend
leg.set_bbox_to_anchor((0.5, 1.3, 0, 0))
leg._loc = 9
5条答案
按热度按时间n3h0vuf21#
既然你似乎想把图例放在图的上方,我会指示seaborn不要使用
legend_out=False
为图例保留右边的空间。然后,只需要获取seaborn创建的句柄和标签,并使用ncol=2
生成一个新的图例。注意,只有当你在两列中有相同数量的元素时,这才能很好地工作,否则事情会变得混乱。c9qzyr3d2#
最终解决方案感谢@DizietAsahi
68bkxrlz3#
使用
ncol
ryhaxcpt4#
@DizietAsahi给出的答案对我的情况不起作用,然而,我能够用
sns.move_legend()
实用函数做到这一点,该函数可用于修改绘图的图例。3duebb1j5#
注意:如果图例与轴标签重叠,则可能需要调整
bbox_to_anchor
。参考文献: