避免在 swarmplot 覆盖的 seaborn boxplot 中重复图例
Avoiding repeated legend in seaborn boxplot overlaid by swarmplot
在下面基于 seaborn 的绘图中,我制作了一个由群图覆盖的箱形图。两者都是色调子集。有什么办法可以不让它们在图例中重复两次吗?
这是我的代码:
ax = sns.boxplot(x=name_xaxis, y=name_col, hue=hue, data=frame, palette='Set2', linewidth=1.5, width=0.5)
sns.swarmplot(x=name_xaxis, y=name_col, hue=hue, data=frame, palette='Set2', color='.25', split=True)
尝试在sns.swarmplot(...)
之后添加:
handles, labels = ax.get_legend_handles_labels()
ax.legend(handles[:2], labels[:2])
这应该只用现有图例中的两个条目替换图例。
在下面基于 seaborn 的绘图中,我制作了一个由群图覆盖的箱形图。两者都是色调子集。有什么办法可以不让它们在图例中重复两次吗?
这是我的代码:
ax = sns.boxplot(x=name_xaxis, y=name_col, hue=hue, data=frame, palette='Set2', linewidth=1.5, width=0.5)
sns.swarmplot(x=name_xaxis, y=name_col, hue=hue, data=frame, palette='Set2', color='.25', split=True)
尝试在sns.swarmplot(...)
之后添加:
handles, labels = ax.get_legend_handles_labels()
ax.legend(handles[:2], labels[:2])
这应该只用现有图例中的两个条目替换图例。