ggplot2 grey theme with French government design template

theme_grey_gouv(...)

Arguments

...

Other params passed to theme_gouv().

Value

A ggplot2 theme.

Examples

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")
}