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.e. geometry defaults: sizes, palettes etc., in addition to flavors. See Matplotlib stylesheets: https://matplotlib.org/stable/gallery/style_sheets/style_sheets_reference.html Related concern: > I have been wondering if there is an easy way to get back...

In ggplot2: > direction of stairs: 'vh' for vertical then horizontal, 'hv' for horizontal then vertical, or 'mid' for step half-way between adjacent x-values. https://ggplot2.tidyverse.org/reference/geom_path.html

Really nice feature to support. Now we can make the discretized gradient scale, but the legend won't be as good, in ggplot2 it's a separate guide type ("coloursteps"). https://ggplot2.tidyverse.org/reference/scale_steps.html

Now in master, empty JAR is published for `plot-image-export`, to fix, this or similar patch should be applied ```diff Index: plot-image-export/build.gradle.kts IDEA additional info: Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP UTF-8 =================================================================== diff --git...

bug

Border around a plot is inconsistent. Code snippet: ```python from lets_plot import * LetsPlot.setup_html() p = gggrid([ ggplot() + geom_point() + coord_fixed(), gggrid([ ggplot() + geom_point() + coord_fixed(), ggplot() +...

bug

See discussion: https://github.com/JetBrains/lets-plot/issues/955#issuecomment-2191425769 Two ways this issue can be fixed: - Introduce an option similar to "trim" in `geom_density()` (in this case historgram can't be stacked) - Remove empty bins...

*

Dear Lets-Plot Team, I am a big fan of the Lets-Plot library that you have developed. Currently, I am facing some challenges while trying to create a boxplot. Specifically, I...

*

Hi guys, While the color scale functions in lets-plot are awesome, I would like to propose adding a function that can read any colormap given in the Matplotlib format. This...

*

Tooltip position `top_right`/`top_left` does not consider `panel_inset` parameter. Example: ``` data = { 'subj': ['progr', 'math', 'physic', 'chemistry', 'biology'], 'subj_id': [1, 2, 3, 4, 5], 'student': ['John'] * 5, 'score':...