seaborn
seaborn copied to clipboard
Dodge move leaves empty space with redundant mapping
(
so.Plot(
penguins, x="species",
color="sex", fill="sex", edgestyle="sex",
)
.add(so.Bar(), so.Hist(), so.Dodge())
)
For now we can workaround by setting Dodge("fill")
but this should work better.