sns.catplot(
tips, x="day", y="total_bill", col="time",
height=3, kind="swarm",
)

Issues:
- A palette is mapped to the x variable (
catplot
probably has some logic to do this to override FacetGrid
passing color
?
- The points on the left facet are not swarmed.
Interestingly, the latter issue does not arise when using FacetGrid
directly:
sns.FacetGrid(tips, col="time").map(sns.swarmplot, "day", "total_bill")
