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

This code should work: ``` data = dict( c = list(range(10)), x = range(10), y = range(10) ) ggplot(data) + geom_point(aes('x', 'y', col='c')) ``` Currently error: > The value of...

STEPS TO REPRODUCE 1. Create a dataframe with a single label (e.g. "sedentary") 2. Create a scaleColorManual with multiple labels (e.g. "sedentary", "walking", "running", "biking") 3. Graph the data RESULTS...

documentation

When using the '{}' construction in the format pattern, a string representation of the value is substituted into the result. It would be better to use the default formatted value....

Hi guys, thanks for your awesome work! Are there any plans to implement `coord_polar` ? Best, Stas

I don't find any way to plot a pie chart in python. I see it's implemented in kotlin (#40), but not yet in python. Is there a plan to implement...

Hello, new to let-plot, is it possible to change the font size for axes values?

element_text() does not seem to be implemented yet. But element_blank() is. Changing the axis size is not possible for now.

The following code is incorrect and should produce an error: ```python from lets_plot import * LetsPlot.setup_html() p = ggplot() + geom_point(x=0, y=0) q = ggplot() + geom_point(x=1, y=1) p +...

enhancement

When tiles are used with `coord_map`, gaps between tiles are getting bigger in higher latitudes: ``` import numpy as np from lets_plot import * from lets_plot.geo_data import * # %%...

params: `nudge_x, nudge_y` text alignments (hjust, vjust): `inward, outward`