79638552

Date: 2025-05-26 08:14:11
Score: 2
Natty:
Report link

I would add to the answer of @JohanC that you must disable "fliers" for the boxplot:

ax = sns.boxplot(data=tips, x="day", y="total_bill", showfliers=False,
                 hue="smoker", hue_order=['Yes', 'No'], boxprops={'alpha': 0.4})

These fliers are duplicates of points already shown with stripplot.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • User mentioned (1): @JohanC
  • Low reputation (1):
Posted by: Tom-tbt