gpt4 book ai didi

python - 如何将 seaborn 传说分成多列?

转载 作者:太空宇宙 更新时间:2023-11-03 14:37:34 25 4
gpt4 key购买 nike

我使用了具有不同色调和风格的 relplot,并希望显示各自的图例条目,而不是彼此下方。

所以目前我得到这样的图例:

relplot legend with hue and style labels below each other

相反,我想要一个看起来像这样的图例:

relplot legend with hue and style labels besides each other

如何做到这一点?

我尝试设置以下但没有效果:

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

minimal working example output


最佳答案

由于您似乎想将图例放在地 block 上方,我会指示 seaborn 使用 legend_out=False 不在右侧为图例保留空间。然后只需获取 seaborn 创建的句柄和标签,并使用 ncol=2 生成新的图例即可。请注意,只有当两列中的元素数量相同时,这才会有效,否则事情会变得一团糟。

plot = sns.relplot(x='time', y='value', col='category3', hue='category1', style='category2', kind="line", col_wrap=2, data=df, facet_kws=dict(legend_out=False))
h,l = plot.axes[0].get_legend_handles_labels()
plot.axes[0].legend_.remove()
plot.fig.legend(h,l, ncol=2) # you can specify any location parameter you want here

关于python - 如何将 seaborn 传说分成多列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56575756/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com