#' Merge CSV
#'
#' @description merge multiple csv files into a single dataframe
#' @param path path to folder containing csv files
#' @keywords helper
#' @export
merge_csv = function(path){
filenames=list.files(path=path, full.names=TRUE)
res=data.table::rbindlist(lapply(filenames, data.table::fread))
res[,-2]
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.