R/start_proj.R

Defines functions start_proj

Documented in start_proj

#' Creating Project Directory Structure
#'
#' @return
#' @export
#'
#' @examples
#'
#' start_proj()
#' dir()
start_proj <- function(){
  dir.create('data')
  dir.create('doc')
  dir.create('results')
  dir.create('scripts')
  dir.create('tmp')
}
karabanb/BKmisc documentation built on March 29, 2021, 7:56 a.m.