This is the closest thing I can think of to be like a pirate plan. Using both marine boxplot and stripplot .
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, color=".25")
The result is on this graph.

source share