Skip to content
Prev 49861 / 63424 Next

R CMD check: Uses the superseded package: ‘doSNOW’

The CRAN package snow is superseded by the parallel package which is
distributed with R since version 2.14.0. Here are the release notes

 \item There is a new package \pkg{parallel}.

 It incorporates (slightly revised) copies of packages
 \CRANpkg{multicore} and \CRANpkg{snow} (excluding MPI, PVM and NWS
 clusters).  Code written to use the higher-level API functions in
 those packages should work unchanged (apart from changing any
 references to their namespaces to a reference to \pkg{parallel},
 and links explicitly to \CRANpkg{multicore} or \CRANpkg{snow} on help
 pages).

So you should replace your dependency on doSNOW with doParallel, which
is the equivalent foreach adapter for the parallel package.

Martyn
On Mon, 2015-02-09 at 23:08 +0100, Xavier Robin wrote: