Nothing
#' Check whether python and dependencies are available on system
#'
#' @return boolean TRUE/ FALSE
#' @export
have_dependencies <- function() {
return(
all(reticulate::py_available(),
reticulate::py_module_available("scipy"),
reticulate::py_module_available("joblib"),
reticulate::py_module_available("numpy"),
reticulate::py_module_available("pandas")
)
)
}
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.