#' write_csv_timestamp function
#'
#' check ordinal if they are ordinal
#' @param Click here and there
#' @keywords ordinal
#' @keywords
#' @export
#' @examples
#' @importFrom data.table fwrite
write_csv_timestamp<-function(data,filepath,filename) {
library(dplyr)
library(data.table)
ts<-Sys.time() %>% format(.,"%Y-%m-%d")
filepath<-paste0(filepath,filename,ts,".csv")
fwrite(data,filepath)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.