Closed qiuwei closed 9 months ago
What are you expecting? A syntax like this:
df >> ggplot(...) + ...
?
What are you expecting? A syntax like this:
df >> ggplot(...) + ...
?
Yes, just like the support for plotnine.
It's pretty easy to write one by yourself:
from pandas import DataFrame
from pipda import register_verb
from lets_plot import ggplot as lp_ggplot
@register_verb(DataFrame)
def ggplot(data, *args, **kwargs):
return lp_ggplot(data, *args, **kwargs)
Feature Type
[X] Adding new functionality to datar
[ ] Changing existing functionality in datar
[ ] Removing existing functionality in datar
Problem Description
Lets-plot(https://github.com/JetBrains/lets-plot) has very similar API to plotnine, but has the advantage of supporting interactive graphs.
Feature Description
Add support for lets-plot.
Additional Context
No response