#' show_in_excel
#'
#' @param dat
#'
#' @return
#' @export
#'
#' @examples
show_in_excel <- function(.data){
tmp <- paste0(tempfile(), ".csv")
write.csv(.data, tmp)
fs::file_show(path = tmp)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.