lets-plot
lets-plot copied to clipboard
Multiplatform plotting library based on the Grammar of Graphics
Happy New Year, An easy one for the start of the year. I'm trying to draw a geom_bands and text across discrete bars. In the graph below I want to...
The overlayed plots should have their drawing areas perfectly aligned and should be able to share one or both axis. This would probably provide a more elegant solution than implementing...
"visually appealing, intuitive, practical and good for presentations" : [see discussion](https://github.com/JetBrains/lets-plot/discussions/952#discussioncomment-12957564) Some references: - https://python-graph-gallery.com/waffle-chart/ - https://www.ddanieltan.com/posts/30-day-chart-4/#composition-with-gggrid
Example: ``` data = { 'val': [1, 2, 3], 'min': [-2, -1, -2], 'max': [1, 2, 0], } ggplot(data) + geom_ribbon(aes(y='val', xmin='min', xmax='max')) ``` The tooltip appears in wrong place...
Multiline legend labels are not vertically centered with their keys 
Hello, I'm using lets-plot for python to display some graph and I like that I'm able to fuse them in a grid. However, it would be nice to be able...
## Mekko charts Mekko charts are a very visually appealing alternative to scatterplots when the number of observations is small. ## Rationale Although LetsPlot certainly has the tools to create...
## Marimekko charts Marimekko charts are able to consolidate two 100% stacked bar charts into one. Consolidating two related metrics helps in presenting the information concisely to viewers and results...
## Treemaps Bar charts and pie charts are some of the most used charts. - Bar charts arguably provide the best precision out of any chart with humans being able...
When calling `facet_wrap` with multiple facet variables, empty groups are included. This is somewhat inconvenient, and deviates from regular ggplot2 behaviour. Example: ```python import pandas as pd import numpy as...