Skip to content

hrbrmstr/hrbrthemes-p9

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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