plotnine
plotnine copied to clipboard
A Grammar of Graphics for Python
There is a high memory usage for plotnine in` _draw_layers` step for big dataframe. And `generate_data` method in `layer` will copy the original data (`self.data = plot_data.copy()`). If this is...
When I plot a dataframe contain millions rows. The speed of ggplot is too slower than matplotlib. Such as: ``` from plotnine import * import numpy as np import pandas...
In the example below, the space argument is set to 'free'. We thus expect that heights of panels should vary. It seems they are fixed leading to rows with varying...
In R, Plotly has added ggplot2 bindings to export to interactive plotly objects, more [here](https://plot.ly/ggplot2/getting-started/). In Python, I want to use ggplot2 -style plotting so I chose Plotnine but I...
Greetings, I was looking for how to specify the shape, but had a hard time finding the list of all of them. R's `ggplot2` includes a nice reference of all...
Hi, I would like to create a plot like this:  Similar to seaborn jointplot, but I need it with support for `facet_grid`. Is there a way to do this...
Has anyone experienced kernel issue when plotting geom_density()? I have a large data set with 4 million observations and the geom_density is causing the kernel to become "dead". geom_boxplot is...
`tight_layout` autospaces axes and their adornments. Maybe we could make some types of multi-plots possible if we could attach artists to axes and they would be considered during tight layout...
For a custom theme, I'd like to change the default point color away from black. I can hack this for all coming ggplots by changing the geom_point default_aes, but I'd...
The code below will cause the issue: `ggplot(mtcars, aes('wt', 'mpg', color='gear')) + geom_point() + stat_smooth(aes('wt', 'mpg'), method='loess') + facet_wrap(('gear', 'am'))` I have installed scikit-misc since it complains about missing modules....