plotnine icon indicating copy to clipboard operation
plotnine copied to clipboard

A Grammar of Graphics for Python

Results 138 plotnine issues
Sort by recently updated
recently updated
newest added

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: ```...

Enhancement
Feature

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....

Feature
Discussion

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...

Discussion
Gold
Extensions

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...

enhancement

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...

upstream-bug

`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...

Feature
Layout

Hi, I'd like to create a 2d bin plot of this dataset: ![grafik](https://user-images.githubusercontent.com/1200058/177963106-2bb0c133-725c-4e9e-8951-6df75efb4a3b.png) But as soon as I try to plot it: ```python plot = ( pn.ggplot(df, pn.aes(x="score", y="residuals")) +...

critical-bug

This is a feature request. It would be awesome if plotnine supported dual y-axes!

Feature