R/s.R

Defines functions s

Documented in s

#' source the n-th section of the script, defaulting to the last section ####
#'
#'
#' @param method2order 
#' @param cex 
#' @param mar 
#'
#' @return None
#'
#' @examples
#' s()
#'
#' @export
s <- function(start = "last",
               end = start, 
               file = dir()[grep("\\.R$", dir(), ignore.case = TRUE)][1]){
  r(start, end, file, number.is.section = TRUE)
}
alexanderksen/runlines documentation built on Sept. 3, 2020, 1:59 p.m.