Nothing
has_mdb_tools <- function() {
try <- suppressWarnings(tryCatch(
expr = system2(
command = Sys.which("mdb-ver"),
args = "-M",
stderr = TRUE,
stdout = TRUE
),
error = function(e) return(NULL)
))
if (is.null(try)) {
return(FALSE)
} else {
stats::setNames(TRUE, try)
}
}
check_mdb_tools <- function() {
if (isFALSE(has_mdb_tools())) {
msg <- c(
"MDB Tools are not installed",
"See: https://github.com/mdbtools/mdbtools",
"* Debian: apt install mdbtools",
"* Homebrew: brew install mdbtools"
)
stop(paste(msg, collapse = "\n"), call. = FALSE)
}
}
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.