Skip to contents

This function will override some layout options that will affect how the graphics look. It has side effects.

Usage

set_theme_AU_ENVS(locale = "English_Denmark")

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()