Nothing
.onAttach = function(libname, pkgname) {
if (!interactive()) {
return()
}
threads_env <- Sys.getenv("R_RANGER_NUM_THREADS")
threads_option1 <- getOption("ranger.num.threads")
threads_option2 <- getOption("Ncpus")
if (threads_env != "") {
thread_string <- paste(threads_env, "threads as set by environment variable R_RANGER_NUM_THREADS. Can be overwritten with num.threads.")
} else if (!is.null(threads_option1)) {
thread_string <- paste(threads_option1, "threads as set by options(ranger.num.threads = N). Can be overwritten with num.threads.")
} else if (!is.null(threads_option2)) {
thread_string <- paste(threads_option2, "threads as set by options(Ncpus = N). Can be overwritten with num.threads.")
} else {
thread_string <- "2 threads (default). Change with num.threads in ranger() and predict(), options(Ncpus = N), options(ranger.num.threads = N) or environment variable R_RANGER_NUM_THREADS."
}
packageStartupMessage(paste("ranger", packageVersion("ranger"), "using", thread_string))
}
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.