lets-plot icon indicating copy to clipboard operation
lets-plot copied to clipboard

No tooltips for `geom_boxplot` with zero height

Open OLarionova-HORIS opened this issue 3 years ago • 0 comments

Example:

df = {
    'x': ["a"] * 10 + ["b"] * 40,
    'y': [0.2] * 10 + [0.1] * 10 + [0.2] * 20 + [0.3] * 10
}
ggplot(df, aes('x', 'y')) + geom_boxplot()

OLarionova-HORIS avatar Jul 06 '22 12:07 OLarionova-HORIS