Description Usage Arguments Details Value Note Author(s) Examples
Provides support for the use of parallel computation in the parallel package.
1 2 3 4 5 6 | set.mcOption(value)
get.mcOption()
set.coresOption(value)
get.coresOption()
set.ClusterOption(cl)
get.ClusterOption()
|
value |
valid replacement value |
cl |
a cluster object created by |
Options in the spdep package are held in an environment local to the package namespace and not exported. Option values are set and retrieved with pairs of access functions, get and set. The mc
option is set by default to FALSE on Windows systems, as they cannot fork the R session; by default it is TRUE on other systems, but may be set FALSE. If mc
is FALSE, the Cluster
option is used: if mc
is FALSE and the Cluster
option is NULL no parallel computing is done, or the Cluster
option is passed a “cluster” object created by the parallel or snow package for access without being passed as an argument. The cores
option is set to NULL by default, and can be used to store the number of cores to use as an integer. If cores
is NULL, facilities from the parallel package will not be used.
The option access functions return their current settings, the assignment functions usually return the previous value of the option.
An extended example is shown in the documentation of aple.mc
, including treatment of seeding of RNG for multicore/cluster.
Roger Bivand Roger.Bivand@nhh.no
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.