Set default AU-ENVS R theme
set_theme_AU_ENVS.Rd
This function will override some layout options that will affect how the graphics look. It has side effects.
Arguments
- locale
A character vector of one indicating the desired locale. Most of the time, the default "English_Denmark" is ok, although sometimes you may want to use the "Denmark_English" option for Danish months, names, etc...
Examples
data <- data.frame(x = rnorm(10), y = rnorm(10), mode = rep(c("A", "B"), 5))
ggplot2::ggplot(data, ggplot2::aes(x, y, color = mode))+
ggplot2::geom_point()
set_theme_AU_ENVS()
#> Warning: OS reports request to set locale to "English_Denmark" cannot be honored
ggplot2::ggplot(data, ggplot2::aes(x, y, color = mode))+
ggplot2::geom_point()