Skip to content

knapply/syknappticThemes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

syknappticThemes : Custom themes for ggplot2

This package is intended to allow for easy reuse of themes I've made for various projects.

theme_nuclear()

ggplot(mpg, aes(displ, cty, color = factor(year))) +
  geom_point() +
  theme_nuclear() +
  labs(title = "Much Deterrence.",
       subtitle = "Very Scary. Wow.",
       caption = "@syknapptic")

mpg %>%
  filter(manufacturer %in% c("audi", "chevrolet", "dodge", "ford")) %>%
  ggplot(aes(displ, hwy, color = cyl)) +
  geom_jitter(show.legend = TRUE) +
  scale_color_continuous(low = "orange", high = "red") +
  facet_wrap(~ manufacturer, scales = "free") +
  theme_nuclear() +
  theme(legend.position = "right") +
  labs(title = "Many Delivery Systems.",
       subtitle = "So Fusion. Wow.",
       caption = "@syknapptic")

About

Personal ggplot2 themes

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages