R/functions_script.R

Defines functions custom_plot

Documented in custom_plot

#' Reorientate labels on the y-axis and insert gridlines
#' 
#' @importFrom graphics axis grid
#' @export
custom_plot <- function()
{
  axis(2, las = 2); axis(1, las = 1)
  grid(NA, ny = NULL, col = "lightgrey", lty = "dashed")
}
BroVic/myRStuff documentation built on Jan. 31, 2024, 1:01 a.m.