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
- Host: GitHub
- URL: https://github.com/hrbrmstr/hrbrthemes-p9
- Owner: hrbrmstr
- License: mit
- Created: 2023-12-08T21:42:56.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-12-18T02:49:59.000Z (over 2 years ago)
- Last Synced: 2025-03-27T02:43:40.634Z (about 1 year ago)
- Topics: ggplot2, ggplot2-themes, plotnine, python
- Language: JavaScript
- Homepage: https://dailyfinds.hrbrmstr.dev/p/drop-385-2023-12-08-weekend-project
- Size: 362 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README

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())
```
