ggplot2 grey theme with French government design template
theme_grey_gouv(...)
Other params passed to theme_gouv()
.
A ggplot2
theme.
if (FALSE) {
library(ggplot2)
ggplot(data = iris, aes(x = Sepal.Length, y = Sepal.Width)) +
geom_point(aes(color = Species, shape = Species)) +
labs(x = "Sepal Length", y = "Sepal Width", title = "Sepal Length-Width",
subtitle = "with gouv_theme()") + theme_grey_gouv() +
scale_color_gouv_discrete(palette = "pal_gouv_fr")
}