Nothing
# Save current session state
op_old <- getOption("java.heap.size", NULL)
env_old <- Sys.getenv("JAVA_HEAP_SIZE", unset = NA)
# Ensure both are unset for the example
options(java.heap.size = NULL)
Sys.unsetenv("JAVA_HEAP_SIZE")
default_heap()
# Option takes precedence if set
options(java.heap.size = "8g")
default_heap()
# Environment variable is used if option is not set
options(java.heap.size = NULL)
Sys.setenv(JAVA_HEAP_SIZE = "6g")
default_heap()
# Restore session state
if (is.null(op_old)) {
options(java.heap.size = NULL)
} else {
options(java.heap.size = op_old)
}
if (is.na(env_old)) {
Sys.unsetenv("JAVA_HEAP_SIZE")
} else {
Sys.setenv(JAVA_HEAP_SIZE = env_old)
}
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.