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

API should accept python 'range' type.

Open alshan opened this issue 4 years ago • 0 comments

This code should work:

data = dict(
    c = list(range(10)),
    x = range(10),
    y = range(10)
)

ggplot(data) + geom_point(aes('x', 'y', col='c'))

Currently error:

The value of data variable [x] must be a list but was String

alshan avatar Apr 27 '21 22:04 alshan