Edgecolor没有出现在Seaborn stripplot上

时间:2015-07-01 03:37:06

标签: matplotlib seaborn

按照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 MatplotlibPlot

Seaborn Boxplot API

0 个答案:

没有答案