Nothing
choose_input_licor_files <- function()
{
if (!interactive() | .Platform$OS.type != "windows") {
stop("The `choose_input_licor_files` function is only available in interactive R sessions running in MS Windows")
}
utils::choose.files(
default = "",
caption = "Select Licor Excel input files",
multi = TRUE,
filters = matrix(
c(
"Excel files (*.xlsx)", "All files (*.*)",
"*.xlsx", "*.*"
),
ncol = 2
),
index = 1
)
}
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.