R/ggplot_theme.R

Defines functions my_ggplot_theme

my_ggplot_theme = function(cex = 1)
{
  theme_light(base_size = 10 * cex) +
    theme(
      legend.position = "bottom",
      legend.key.size = unit(.3 * cex, "cm"),
      panel.background = element_rect(fill = 'white')
    )
}
caravagn/revolver documentation built on May 21, 2022, 5:48 p.m.