A set of ggplot2 used at FlowWest
remotes::install_github("flowwest/fwthemes")
Use on a single plot
some_data %>%
ggplot2(aes(x, y)) +
geom_point() +
theme_fwfiver() # set theme
Or globally in a session
theme_set(theme_fwfiver())
some_data %>%
ggplot2(aes(x, y)) +
geom_point()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.