Python Seaborn swarmplot躲闪的顺序

问题描述 投票:1回答:1

在Seaborn中,我希望定义在使用减淡功能时呈现色调变量的顺序。

seaborn swarmplot documentation文档为例,在解释闪避的情节中,他们在左边显示吸烟者(绿色),在右边显示非吸烟者(橙色)。我该如何控制该订单?我希望左边是非吸烟者,右边是吸烟者。

示例代码:

ax = sns.swarmplot(x="day", y="total_bill", hue="smoker", data=tips, palette="Set2", dodge=True)

没有指定,似乎把它留给了数据的格式。

python matplotlib seaborn
1个回答
2
投票

你可以使用参数hue_order

ax = sns.swarmplot(x="day", y="total_bill", hue="smoker", hue_order=["No", "Yes"], 
                    data=tips, palette="Set2", dodge=True)

enter image description here

请注意,这不会交换周围的颜色。

© www.soinside.com 2019 - 2024. All rights reserved.