R/edyn_theme.R

Defines functions edyn_theme

Documented in edyn_theme

#' Add together two numbers
#'
#'
#' @return graphs featuring the edyn theme
#' @examples
#'
#' ggplot2::ggplot(mtcars, ggplot2::aes(disp, hp)) + ggplot2::geom_point() + edyn_theme()
#' @import ggplot2
#' @export

edyn_theme <- function(){
  ggplot2::theme_minimal() +
    ggplot2::theme(text = ggplot2::element_text(size = 15),
          panel.grid.minor.x = ggplot2::element_blank(),
          legend.position = 'top')

}
mattreed09/edynPlot documentation built on Feb. 13, 2022, 4:09 a.m.