lets-plot
lets-plot copied to clipboard
Multiplatform plotting library based on the Grammar of Graphics
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.
``` 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. 
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:  In R,...
Nice to be able to configure title for the entire bunch.