R/FetchCSV.R

Defines functions FetchCSV

Documented in FetchCSV

#' @title FetchCSV
#'
#' @param path string that represents directory path
#' @importFrom utils read.table
#' @return Returns a data table using data frame
#' @export
#'
#'
#' @examples
#'    \dontrun{df = FetchCSV("/path/to/file.csv")}
FetchCSV <- function(path) {
  df=read.table(path ,header=TRUE,sep=",")
}
aanahitajm/math4753 documentation built on May 3, 2022, 7:25 p.m.