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

See: http://www.cookbook-r.com/Graphs/Scatterplots_(ggplot2)/

See 'Plotting distributions' http://www.cookbook-r.com/Graphs/Plotting_distributions_(ggplot2) BoxPlot demo not working.

Otherwise there is no guarantee that shapes do not overlap.

Preconditions: ``` import numpy as np import pandas as pd import matplotlib.pyplot as plt from lets_plot import * #%% data = dict(x=['aaaaaaaaaaadasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdasdadasdaasdasdasdasd','b','c']) #%% ggplot(data) + geom_bar(aes('x', fill='x'))+\ ylab('variable..................asdasdasdasd.................name ') ```...

When trying to plot multi-polygon with the `geom_polygon` function I'm getting an error: > ValueError: Unsupported map parameter type: . Should be a GeoDataFrame.

enhancement

``` geom_rect(xmin=-72, ymin=41.5, xmax=-71, ymax=42, alpha=0, color="magenta", linetype="dashed") ``` is shown with solid border. See the last output in this demo: https://nbviewer.jupyter.org/github/JetBrains/lets-plot/blob/master/docs/examples/jupyter-notebooks/geocoding_examples.ipynb

Otherwise labels can overlap. ![Screenshot from 2020-12-17 17-32-00](https://user-images.githubusercontent.com/45228182/102616577-d0b67000-4148-11eb-8be9-aed71d1a7d43.png)

Preconditions Plot the following: ``` extra_points = pd.DataFrame({'a': [0, 0], 'b': [1, 4]}) plot = ggplot() + geom_point(data=extra_points, mapping=aes(x='a', y='b'), shape='X') ``` The following would be shown: ![image](https://user-images.githubusercontent.com/4430922/107988919-08059980-6f9f-11eb-9f69-bb310c335558.png) In R,...

Nice to be able to configure title for the entire bunch.