R/functions.R

#' @title FUNCTION_TITLE
#' @description FUNCTION_DESCRIPTION

#' @return OUTPUT_DESCRIPTION
#' @details DETAILS
#' @examples 
#' \dontrun{
#' if(interactive()){
#'  #EXAMPLE1
#'  }
#' }
#' @rdname hello_world
#' @export 
hello_world <- function(){
  print("hello world")
}


readData <- function(file = "fd_data.csv",
                     location = file.path(getwd(), "/data")){
  

  
}
jphelps13/fraud-detection documentation built on May 12, 2019, 4:36 a.m.