Description Usage Arguments Examples
My ggplot2 go-to theme inspired by hrbrthemes
| 1 2 | 
| base_family | base_family | 
| plot_title_face | plot_title_face | 
| plot_title_size | plot_title_size | 
| ... | Parameters for  | 
| 1 2 3 4 5 6 7 8 9 10 11 | library(ggplot2)
library(hrbrthemes)
ggplot(mtcars) +
  geom_point(aes(mpg, hp, color = factor(carb)), size = 2.5) +
  scale_color_ipsum() +
  labs(x="Fuel effiiency (mpg)", y="Weight (tons)",
       title="Seminal ggplot2 scatterplot example",
       subtitle="A plot that is only useful for demonstration purposes",
       caption="Brought to you by the letter 'g'") +
 theme_jbk()
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.