Nothing
#' @describeIn preinstalled.readers Read an Excel 2007 file with a \code{.xlsx} file extension.
#'
#' This function will load the specified Excel file into memory using the
#' \code{readxl} package.
xlsx.reader <- function(data.file, filename, workbook.name)
{
.require.package('readxl')
sheets <- readxl::excel_sheets(filename)
for (sheet.name in sheets)
{
variable.name <- paste(workbook.name, clean.variable.name(sheet.name), sep = ".")
tryCatch(assign(variable.name,
data.frame(readxl::read_excel(filename,
sheet = sheet.name)),
envir = .TargetEnv),
error = function(e)
{
warning(paste("The worksheet", sheet.name, "didn't load correctly."))
})
}
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.