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

Tooltip: different formats for same aesthetic Y

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

boxplot example - values in outlier tooltips are formatted in the exponential notation: Screenshot 2022-08-02 at 12 34 43

Simplified:

data = {
    "alphabet": ["a","a","b","a","a","a","b","b","b","a","a","a"],
    "coeff": [
        0.9898989898989898, 0.98989898989899, 0.9871794871794872,
        0.9916666666666667, 0.9882352941176471, 0.9947368421052631,
        0.9916666666666667, 0.9882352941176471, 0.9947368421052631,
        0.9916666666666667, 0.9882352941176471, 0.9947368421052631
     ]
}
ggplot(data) + geom_boxplot(aes("alphabet", "coeff"))

OLarionova-HORIS avatar Aug 02 '22 10:08 OLarionova-HORIS