-
```py
import md_plot; md_plot.MDplot([3693036, 3675328, 3674384, 3675748, 3675840, 3726368, 3675284, 3676184, 3674300, 3688156, 3673884, 3673888, 3673836, 3673828, 3673884, 3725313, 3673280, 3673476,…
-
Nice Idea to implement patchwork in python.
I tried it today however I got the following error:
```
>>> import plotnine as p9
>>> import patchworklib as pw
>>> pw.load_ggplot(p9.ggplot() + p9.the…
-
When I set `figure_size` through theme or the options it seems like this setting only controls the figure itself, but does not take into account legends, axis, titles, etc.
Is there another setting…
-
Running geom_bar on a column with pandas' new nullable integer types raises an exception. (doco: https://pandas.pydata.org/pandas-docs/stable/user_guide/integer_na.html )
To reproduce:
```py
df =…
-
I'd love to go over how to create text annotations for subsets of a df. For example, in the mtcars dataset, if we want to highlight the five fastest cars on a graph that shows qsec vs mpg, how might w…
-
How can I plot data on the right month with scale_x_datetime?
It seems scale_x_datetime shifts data to next month.
**With scale_x_datetime**
![plot_with_scale](https://user-images.githubusercon…
-
Hello,
I just started a project in my company and I am running into a problem that I have never encountered when using plotnine from my personal laptop. I believe it has to do with the versions of…
jrr96 updated
2 years ago
-
PRF1 = pyliger.plot_gene(ifnb_liger, "ABCA1", axis_labels = ['UMAP 1', 'UMAP 2'], return_plots = True)
# for x in PRF1.values():
# x.draw(show=True)
print(PRF1)
PRF1['human'].draw(show=True)
…
-
In Heptapod by @stonebig on Feb 5, 2022, 11:36
Trying
````
Python 3.8.12 (0360402c9455129a4a246fc9faede8e212ee7226, Feb 04 2022, 00:30:51)
[PyPy 7.3.9-alpha0 with MSC v.1929 64 bit (AMD64)] on win32…
-
How can we add a shaded area under a geom_density object?
```
(
ggplot(mum5, aes(x='consideration_amount'))
+ geom_density(alpha=0.3, size=1.8, color = 'teal', fill = 'teal') + facet_wrap…