分组小提琴图,小提琴被分割#
使用的seaborn组件: 设置主题(), 加载数据集(), 小提琴图()
import seaborn as sns
sns.set_theme(style="dark")
# Load the example tips dataset
tips = sns.load_dataset("tips")
# Draw a nested violinplot and split the violins for easier comparison
sns.violinplot(data=tips, x="day", y="total_bill", hue="smoker",
split=True, inner="quart", fill=False,
palette={"Yes": "g", "No": ".35"})