clustermq | R Documentation |
A clustermq future is an asynchronous multiprocess future that will be evaluated in a background R session.
clustermq( expr, envir = parent.frame(), substitute = TRUE, globals = TRUE, label = NULL, workers = getOption("future.clustermq.workers", availableCores()), ... ) clustermq_local( expr, envir = parent.frame(), substitute = TRUE, globals = TRUE, label = NULL, workers = 1L, ... ) clustermq_multicore( expr, envir = parent.frame(), substitute = TRUE, globals = TRUE, label = NULL, workers = availableCores(), ... )
expr |
The R expression to be evaluated. |
envir |
The environment in which global environment should be located. |
substitute |
Controls whether |
globals |
(optional) a logical, a character vector, a named list, or
a globals::Globals object. If |
label |
(optional) Label of the future. |
workers |
The number of processes to be available for concurrent clustermq futures. |
... |
Additional arguments passed to |
clustermq futures rely on the clustermq package, which is supported on all operating systems.
An object of class ClusterMQFuture.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.