Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 655 Bytes

README.md

File metadata and controls

31 lines (21 loc) · 655 Bytes

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