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

![image](https://user-images.githubusercontent.com/4430922/210619895-b7ce65af-81a4-482d-bf32-28117e2c8c13.png)

``` from lets_plot import * LetsPlot.setup_html() import numpy as np np.random.seed(42) data = {'x': np.random.randint(10, size=50)} ggplot(data, aes(x='x')) + \ geom_bar() + \ coord_fixed(0.5) + \ theme(plot_background=element_rect(size=2, fill='light_grey')) ``` The...

In ggplot2: > **override.aes** -- A list specifying aesthetic parameters of legend key. https://ggplot2.tidyverse.org/reference/guide_legend.html

At the moment, the legends are based on mappngs/scales. Beyond that, however, it would be nice to be able to create a legend completely manually, without being tied to other...

*

Automatic detection of DateTime series does not work on `polars.DataFrame`. Example: ``` import datetime as dt import numpy as np from lets_plot import * LetsPlot.setup_html() n = 31 np.random.seed(42) df...

Code: ```python from lets_plot import * LetsPlot.setup_html() data = { 'x': ['foo\nbar\nbaz'], 'y': ['qwe\nasd\nzxc'] } ggplot(data) + geom_point(aes(x='x', y='y')) ``` Output: ![image](https://github.com/JetBrains/lets-plot/assets/14200189/026ec22b-ed27-499b-b5b6-57d76d333b8e)

Example: ```python data = { 'x': [0, 1, 2], 'y': [2, 0, 1], } corr_plot(data).tiles().build() + theme_void() ``` But I expect either the ticks to become invisible or the labels...

In some cases, tooltips can be noisy ![image](https://github.com/JetBrains/lets-plot/assets/14200189/37a991e7-de68-4fc7-9d43-79f339afd076)

Example: ```python world = gpd.read_file(gpd.datasets.get_path("naturalearth_lowres")) countries = world[world["name"].isin(["United States of America", "Russia"])] ggplot() + \ geom_map(map=countries) + \ geom_segment(x=158.634805, y=53.038483, xend=-149.863129, yend=61.217381) ``` Output: But, how to draw a segment...

Nice to be able to show coordinates on axis in DMS format : 80.4°W, 40.4°N https://gisgeography.com/decimal-degrees-dd-minutes-seconds-dms/

enhancement