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

Multiplatform plotting library based on the Grammar of Graphics

Results 201 lets-plot issues
Sort by recently updated
recently updated
newest added

I'm not sure if you have a community links page (?) but I wanted to flag two resources I've put together on **lets-plot** and how to use it: - Throughout...

From discussion: https://github.com/JetBrains/lets-plot/discussions/897#discussioncomment-8556115 > I've noticed that plots created with lets-plot do not currently support a responsive mode. This slightly cripples UX, because I am generating the plots in a...

Let-plot is my favorite plotting library and for the past few weeks I've been happily experimenting with [Marimo](https://marimo.io/), a reactive Jupyter alternative. Unfortunately though, Lets-plot doesn't play very nicely with...

Hi! Plotly charts offer several interactive features that **_could greatly benefit lets-plot_**. These include: **1. Panning:** Users can click and drag the canvas to adjust the chart's view to their...

Minimal reproducible example: ```python data = { 'x': [0, 0, 0], 'g': ['a', 'a', 'b'], } ggplot(data, aes(x='x', fill='g')) + \ geom_bar(position='fill') + \ ylim(0, 1) ``` Output: Expected (as...

I saw you were adding new type of plots. Swarm plot is very useful and it is similar to the violinplot but each point is shown in a way overlap...

*

Hi, this is a bit meta, but it's basically impossible to find https://lets-plot.org/ on Google using search terms such as "ggplot2 python" or "grammar of graphics python". Instead, you get...

**Description** Could you please add the package to conda-forge channel for Windows (x86_64) and osx-arm64 builds?. (My company does not allow other channel than conda-forge). **Suggested solution** https://conda-forge.org/docs/maintainer/adding_pkgs.html Thanks!

I have this data which represents the sales **decomposition** from high-level to granular, left to right (hence sum over the `index` column should add up to "total_revenue"): ``` data =...

bug

See discussion: https://github.com/JetBrains/lets-plot/discussions/1007