R/SetWorkingDir.R

Defines functions SetWorkingDir

SetWorkingDir <- function(wdir) {

  # Creat working dir if not exists
  if(!dir.exists(wdir))
  {
	dir.create(wdir, showWarnings=F,recursive=T)
  }
}

Try the rSQM package in your browser

Any scripts or data that you put into this service are public.

rSQM documentation built on May 2, 2019, 4:14 a.m.