📜  seaborn boxplot 图例颜色 - Python 代码示例
📅  最后修改于: 2022-03-11 14:46:18.191000             🧑  作者: Mango
代码示例1
# Use hue parameter
ax = sns.boxplot(x="day", y="total_bill", hue="smoker",
data=tips, palette="Set3")