patchworklib
patchworklib copied to clipboard
Patchwork for matplotlib: A subplot manager for intuitive layouts in matplotlib, seaborn, and plotnine.
Dear developer, I would like to express my gratitude for developing such a useful tool. Currently, I am working on a project that involves matplotlib integrated with pyqt. I intend...
Hi, I enjoy a lot using patchworklib. It is amazing how easy makes create grid plots. However, I am having a problem. I want to create a grid of heat...
 Code to reproduce on a **new** kernel ``` import patchworklib as pw from plotnine import * from plotnine.data import * import plotnine print(pw.__version__) print(plotnine.__version__) g1 = ggplot(mtcars) + geom_point(aes("mpg",...
 Code to reproduce: ``` import sys import patchworklib as pw from plotnine import * from plotnine.data import * import plotnine print(pw.__version__) print(plotnine.__version__) g1 = pw.load_ggplot(ggplot(mtcars) + geom_point(aes("mpg", "disp")) +...
Hi I keep getting this error: ValueError: invalid version number '0.12.1.post29+gef5650c' My plotnine version is I'm not sure what the issue is 0.12.3 Thanks.
Good evening **thank you very much for sharing your great work!,** it's very useful to be able to have the flexibility of `patchworklib`. Unfortunately, I have not found any example...
After upgrading plotnine from 0.12.4 to 0.13.6, patchworklib stopped working with it. ```python import patchworklib as pw from plotnine import * from plotnine.data import * g1 = pw.load_ggplot(ggplot(mpg, aes(x="cty", color="drv",...
Hello ! First thanks for this amazing package :) I have an issue with the function `load_ggplot()` that seems to now produce a lot of prints. I'm using plotnine v0.12.4...
Code to reproduce: ``` import patchworklib as pw from plotnine import (ggplot, aes, geom_point, geom_boxplot, labs) from plotnine.data import mtcars g1 = pw.load_ggplot(ggplot(mtcars) + geom_point(aes("mpg", "disp")) + labs(title='title1', subtitle='subtitle1'), figsize=(2,3))...
There is a check in the code that the version of matplotlib is great than 3.7 for a particular feature [here in the code](https://github.com/ponnhide/patchworklib/blob/235bfbc9fa5c43b5386ba247f438ff622d22858c/patchworklib/patchworklib.py#L176). This is currently completed with a...