lets-plot
lets-plot copied to clipboard
Multiplatform plotting library based on the Grammar of Graphics
A frequent source of annoyance when using matplotlib or ggplot is the need to specify the dimensions of the entire figure. After that, the figure is subdivided into axes, labels,...
A string giving the distance between breaks/minor breaks like "2 weeks"
Allow tooltips to display for all series when hovering over one. See discussion: https://github.com/JetBrains/lets-plot/discussions/1412#discussioncomment-14748042
Thanks for the great work on lets-plot! It's my go-to package for figures nowadays. It would be great for `gggrid` to allow tagging of each sub-figure, similar to [patchwork in...
See discussion: https://github.com/JetBrains/lets-plot/discussions/1412#discussioncomment-14740784
```python d = { 'name': ['foo', 'foo', 'bar', 'bar'], 'g': ['A', 'B', 'A', 'B'], 'value': [80, 90, 15, 35] } ggplot(d) + geom_bar(aes(x='name', y='value', group='name'), stat='identity') ``` Actual result: When...
I use lets-plot in python (version 4.7.1), via a marimo interface. ## Example graph, works fine ``` mtcars = pl.read_csv("https://raw.githubusercontent.com/selva86/datasets/master/mtcars.csv") ggplot(mtcars, aes(x='mpg', y='wt')) +\ geom_point() +\ facet_grid(y='cyl') +\ theme(panel_border =...
## Expected Result * Ribbons get filled without overlapping, connected polygons * Ribbon lines are continuous with differing color depending on the color parameter ## Actual Result * Ribbonn fills...
Clustered heatmaps are widely used for visualization of multi-dimensional data and it is pretty useful for showing hierarchical relations and the patterns of features among the groups. It is basically...
## Sunburst / Icicle Both Sunburst and Icicle charts provide an excellent way to visualize nested part-to-whole relationships. Due to the number of transformations needed to make them, these might...