seaborn icon indicating copy to clipboard operation
seaborn copied to clipboard

Dodge move leaves empty space with redundant mapping

Open mwaskom opened this issue 2 years ago • 0 comments

(
    so.Plot(
        penguins, x="species",
        color="sex", fill="sex", edgestyle="sex",
    )
    .add(so.Bar(), so.Hist(), so.Dodge())
)

image

For now we can workaround by setting Dodge("fill") but this should work better.

mwaskom avatar Aug 28 '22 11:08 mwaskom