在swarmplot覆盖的seaborn boxplot中避免重复的传说

时间:2016-03-28 17:42:50

标签: python matplotlib seaborn

enter image description here

在下面的基于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)

1 个答案:

答案 0 :(得分:6)

尝试在sns.swarmplot(...)之后添加此内容:

handles, labels = ax.get_legend_handles_labels()
ax.legend(handles[:2], labels[:2])

这应该只用现有的两个条目替换图例。