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

Cryptic error message on geom_boxplot with orientation="y"

Open IKupriyanov-HORIS opened this issue 2 years ago • 1 comments

Example:

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"), orientation="y")

Result:

Internal error: IllegalStateException : Not a collections of Double(s)

IKupriyanov-HORIS avatar Sep 19 '22 21:09 IKupriyanov-HORIS

Related: #558 - automatic detection of orientation.

alshan avatar Mar 06 '23 20:03 alshan

Fixed via e7a6e0d26c8d76458b68d1b13daa2eb3cd285373

RYangazov avatar Apr 16 '24 10:04 RYangazov