Creates a base theme for ggplot objects. By default this uses a font that requires the extrafont package to be installed.

su_theme(base_family = "Segoe UI")

Arguments

base_family

The font to use in this theme

Examples

if (FALSE) {
library(ggplot2)
library(StrategyUnitTheme)
ggplot(iris, aes(Sepal.Width, Sepal.Length, colour = Species)) +
  geom_point() +
  su_theme()
}