An open API service indexing awesome lists of open source software.

https://github.com/hrbrmstr/hrbrthemes-p9

📈 hrbrthemes for plotnine
https://github.com/hrbrmstr/hrbrthemes-p9

ggplot2 ggplot2-themes plotnine python

Last synced: about 1 year ago
JSON representation

📈 hrbrthemes for plotnine

Awesome Lists containing this project

README

          

![](https://img.shields.io/pypi/pyversions/hrbrthemes.png)

Ref:

Install from git:

``` bash
$ python3 -m pip install git+https://gitlab.com/hrbrmstr/hrbrthemes-p9
```

Install from PyPI:

``` bash
$ python3 -m pip install hrbrthemes
```

``` python
from hrbrthemes import *

from plotnine import *
from plotnine.data import mtcars

(ggplot(mtcars, aes("wt", "mpg", color="factor(gear)"))
+ geom_point()
+ labs(title = "hrbrmstr's Fav Example Plot", x = "Weight (tons)", y = "Miles-per-gallon")
+ theme_ipsum())
```

![](README_files/figure-commonmark/cell-3-output-1.svg)