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

`geom_area_ridges`: support variadic `color`

Open ASmirnov-HORIS opened this issue 1 year ago • 0 comments

Example:

data = {
    'x': [0, 0, 1, 0, 1, 1],
    'g': ['a'] * 3 + ['b'] * 3,
}
ggplot(data, aes('x', 'g')) + geom_area_ridges(aes(color='..y..'), size=2)

Output:

Expected:

ASmirnov-HORIS avatar Apr 26 '24 15:04 ASmirnov-HORIS