r_eda

设置全局主题

李家翔 2019-03-21

最近发现一直在重复调用 theme_du_bois 函数,因此可以 设置 theme_set

suppressMessages(library(tidyverse))
source("du-bois/theme_du_bois.R")
font_name <- ""
theme_set(theme_du_bois())
ggplot(mtcars, aes(mpg, disp)) +
    geom_point()