R/my_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/mtree documentation built on Sept. 17, 2020, 1:13 a.m.