R/theme_ggexp.R

Defines functions theme_ggexp

Documented in theme_ggexp

#' Get ggexp default theme
#'
#' @importFrom ggplot2 theme_classic theme element_blank
#'
#' @return ggplot theme
#' @export
theme_ggexp = function() {
  theme_classic() +
    theme(strip.background = element_blank(), strip.placement = "outside")
}
keshavmot2/ggexp documentation built on Feb. 6, 2021, 1:38 a.m.