#' @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=",")
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.