#' covidWrite
#'
#' @param x from covidDownload
#' @param localpath local path to hard drive to store written file
#'
#' @export
#'
covidWrite <- function(x, localpath=getwd()) {
asof <- max(x$date)
write.csv(x, file = file.path(localpath, paste('covid by county by day as of ', asof, '.csv', sep = '')), row.names = FALSE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.