在Seaborn中,我希望定义在使用减淡功能时呈现色调变量的顺序。
以seaborn swarmplot documentation文档为例,在解释闪避的情节中,他们在左边显示吸烟者(绿色),在右边显示非吸烟者(橙色)。我该如何控制该订单?我希望左边是非吸烟者,右边是吸烟者。
示例代码:
ax = sns.swarmplot(x="day", y="total_bill", hue="smoker", data=tips, palette="Set2", dodge=True)
没有指定,似乎把它留给了数据的格式。