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

Multiplatform plotting library based on the Grammar of Graphics

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

Now we can specify a value in the scale that will be used for null values, but it would be great if it were displayed in the legend (including in...

*

``` LetsPlot.set_theme(theme_bw()+flavor_solarized_dark()) ``` > ValueError: Wrong option type. Expected `theme` but was `feature-list`. Or provide other way, perhaps: ``` LetsPlot.set_flavor(flavor_solarized_dark()) ```

# Problem: I have a (horizontal) stacked and grouped bar chart with the values displayed as text. ```python p = (ggplot(df_modalsplit_long) + geom_bar(aes(x='Scenario', y='Modal Split', fill='Mode'), position='stack', stat='identity') + facet_grid(y='Model',...

*

Example: ```python ggplot({'x': [0, 1], 'y': [0, 1]}, aes('x', 'y')) + geom_density2df() ``` Output:

It seems to have some problems to show the Greece letters in the axes and legend. File attached. Wish to get fixed, 👍

*

I'm trying to run a lets_plot example in vscode (no notebook), but I can't seem to put it to display the plot within vscode as I can do with other...

Hi Lets-Plot A user of [Panel](https://panel.holoviz.org/) is asking how he can use `Lets-Plot` with Panel to build data apps in https://github.com/holoviz/panel/issues/5475 I've investigated and found a quick, preliminary solution in...

*

Example: ```python from lets_plot import * LetsPlot.setup_html() n = 5 x = [i * 10**(-5) for i in range(n)] y = [0] * len(x) ggplot(dict(x=x, y=y), aes('x', 'y')) + \...

I have a JVM desktop app that doesn't use Swing or JavaFX. I'm also new to the concept of having to use Swing or JavaFX in a Kotlin MPP project....

Example: ```python world = geopandas.read_file(geopandas.datasets.get_path("naturalearth_lowres")) europe = world[world.continent == "Europe"] ggplot() + geom_map(map=europe) ``` Output: