4
我試圖用不同的x
組和另外的hues
seaborn產生boxplot。看到此代碼:Seaborn的boxplot + swarmplot:不同的顏色爲x,不同的顏色符號
tips = sns.load_dataset("tips")
sns.stripplot(x="day", y="total_bill", hue="smoker",
data=tips, jitter=True,
palette="Set2", split=True,linewidth=1,edgecolor='gray')
sns.boxplot(x="day", y="total_bill", hue="smoker",
data=tips,palette="Set2",fliersize=0)
我想有各x
箱圖(在該示例中,每一天)是不同的顏色,而每個hue
(在這種情況下,吸菸者/非吸菸者)在大面積上用不同的符號表示。
我試圖玩palette
的論點,但沒有得到我想要的。我也嘗試直接玩artists
,但是改變boxplot的facecolor
也會因爲某種原因改變edgecolor
,我不知道如何改變swarmplot上的符號。