README.md

December 10, 2023 ยท View on GitHub

Ref: https://dailyfinds.hrbrmstr.dev/p/drop-385-2023-12-08-weekend-project

Install from git:

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

Install from PyPI:

$ python3 -m pip install hrbrthemes
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())