Nothing
python_environment_resolve <- function(envname = NULL, resolve = identity) {
# use RETICULATE_PYTHON_ENV as default
envname <- envname %||% Sys.getenv("RETICULATE_PYTHON_ENV", unset = "r-reticulate")
# treat environment 'names' containing slashes as full paths
if (grepl("[/\\]", envname)) {
envname <- normalizePath(envname, winslash = "/", mustWork = FALSE)
return(envname)
}
# otherwise, resolve the environment name as necessary
resolve(envname)
}
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.