#' Load a csv file ito a data.frame
#' @param csv file path.
#' @return a data.frame.
#' @export
#' @importFrom utils read.csv
load_df_from_csv <- function(path) {
as.data.frame(read.csv(file = path))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.