plotnine
plotnine copied to clipboard
A Grammar of Graphics for Python
Polars https://www.pola.rs/ is a nice data frame library for python. It would be great if plotnine would also support polars instead of pandas data frames. My current workaround is: ```...
I'm dealing with a figure where I would like to be able to dodge columns based on the `group` aesthetic while having the columns stay stacked on the `fill` aesthetic....
Enable 3D subplots support for facets when custom layout with 3d projection is provided, partially addressing #582. There are three changes: - adding `projection` attribute to `Layout` - allowing to...
Part two for #582: - allows to extend `draw_unit` of `geom_text` without the need to redefine `draw_group` in a subclass - allows to add extra attributes in subclasses of `geom_text`...
Could 3D plots be supported by plotnine, or if not, could the internals be slightly adjusted to enable easy extension to 3D plots? Currently with a simple hack it is...
Hi, The original geom_density of both R ggplot2 and plotnine looks weired, becaue it's a polygon. geom_density_line looks well, the only difference is that the geom draws a ridgeline (line...
I was recently using plotnine to create a series of plots showing the development of a plot through a training sequence. I did notice quite quickly that my computer would...
`plotnine` is made using `matplotlib` as the back-end, so I'm guessing there must be a way to draw subplots (without using faceting). Is there a way to do so? I'd...
Hi, I'd like to create a 2d bin plot of this dataset:  But as soon as I try to plot it: ```python plot = ( pn.ggplot(df, pn.aes(x="score", y="residuals")) +...
This is a feature request. It would be awesome if plotnine supported dual y-axes!