R/createLog.R

Defines functions createLog

Documented in createLog

#' Create Log
#'
#' This function can be used to begin outputting a log file in a script.
#' It is used in conjunction with "editLog".
#'
#' @param inputs Defines the different logging steps that will be logged.
#' @return defines the logFile in the global environment.
#' @export



createLog <- function(inputs = c()) {

  logFile <<- data.frame(matrix(ncol = length(inputs), nrow = 0))
  colnames(logFile) <<- inputs

}
blazickjoe/DataScienceLibrary documentation built on Nov. 5, 2019, 2:26 p.m.