Matplotlib Edgecolor未出现在Seaborn条纹图上

Matplotlib Edgecolor未出现在Seaborn条纹图上,matplotlib,seaborn,Matplotlib,Seaborn,按照Seaborn API站点上的示例,我似乎无法显示edgecolor 这是我用的 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=Tru

按照Seaborn API站点上的示例,我似乎无法显示edgecolor

这是我用的

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")
但这是正在策划的。我错过什么了吗?我在Python3中使用Seaborn.6和Matplotlib 1.4.3


可能与此有关:看起来是这样。非常感谢。