lets-plot
lets-plot copied to clipboard
Multiplatform plotting library based on the Grammar of Graphics
Could you please add the following interactive zoom options in a future development? - Box zoom - zoom in - zoom out - scroll zoom Thanks!
See discussion https://github.com/JetBrains/lets-plot/discussions/952
Would love to see [Radar plots](https://en.wikipedia.org/wiki/Radar_chart) being natively supported in the `lets-plot` library to expand the library's richness. I believe it would be a good addition to be able to...
Example: ``` p = ggplot(mpg2.head(32), aes('miles per gallon', 'vehicle weight (lbs.)')) + \ geom_point(aes(color=as_discrete('number of cylinders'))) p + scale_color_manual( values = ["red", "blue", "darkgreen", "orange"], breaks = [8, 4, 6,...
Example: ```python data = { 'x': ["a", "a", "b", "b"], 'y': ["f", "g", "g", "g"], } ggplot(data, aes('x', 'y')) + \ geom_count() + \ ggmarginal('r', layer=geom_bar()) ``` Output: > Internal...
Minimal reproducible example: ```python data = { 'x': [-3, -2, -1, 0, 1, 2, 3], 'y': [-3, -2, -1, 0, 1, 2, 3], 'v': [-9, -4, -1, 0, 1, 4,...
``` data=dict( x = [i for i in range(0, 6)], c = [i for i in range(0, 6)] ) ggplot(data)\ + geom_point(aes(x = "x", color="c"), size=20) \ ``` 1. Lower...
Minimal example: ```python data = { 'x': [0, 1, 1, 1], 'y': [0, 1, 2, 2], } ggplot(data, aes("x", "y")) + \ geom_bin2d() + \ ggmarginal("t", layer=geom_point(aes(color='..count..'), stat='count', size=10)) +...
from [discussion](https://github.com/JetBrains/lets-plot/discussions/611#discussioncomment-5361403) > (https://docs.xarray.dev/en/stable/user-guide/data-structures.html). Xarray is a very powerful library that can be used to create dataframe for 2D grids. It is very similar to Pandas and if Lets-Plot could...
See [`geom_boxplot()`](https://ggplot2.tidyverse.org/reference/geom_boxplot.html#aesthetics) in ggplot2.