R/rfm_load.R

#' rfm_load fucntion
#'
#' Load data in to create model
#'
#' @param file Path of the file that need to
#' @return a Data.frame object
#'
#'
#' @export


rfm_load <- function(file){

  # load data data in csv

  rfm_data <- read.csv(file = file, header = T, sep = ',')

  return(rfm_data)

}
CJB2014/rfm documentation built on May 6, 2019, 9:24 a.m.