#' Reads entire XLSX file into a list of dataframes
#' @param full_xlsx_fn full path to xlsx filename
#' @import readxl
#' @import purrr
read_entire_excel <-
function(full_xlsx_fn) {
return(
full_xlsx_fn %>%
readxl::excel_sheets() %>%
set_names() %>%
purrr::map(read_excel, path = full_xlsx_fn)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.