按照Seaborn API网站上的示例,我似乎无法显示边缘颜色
这是我使用
的内容import seaborn as sns
sns.set_style("whitegrid")
tips = sns.load_dataset("tips")
ax = sns.boxplot(x="day", y="total_bill", data=tips)
ax = sns.stripplot(x="day", y="total_bill", data=tips, size=4, jitter=True, edgecolor="gray")
但这就是正在绘制的内容。我错过了什么吗?我使用Seaborn .6和Matplotlib 1.4.3和Python 3