Following the example on the Seaborn API site and I can't seem to get the edgecolor to appear
Here's what I'm using
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")
but this is the is what's being plotted. Am I missing something? I'm using Seaborn .6 and Matplotlib 1.4.3 with Python 3