mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add snow.
* gnu/packages/statistics.scm (r-snow): New variable.
This commit is contained in:
parent
6b82f56cf9
commit
bc899123e7
1 changed files with 21 additions and 0 deletions
|
@ -1643,3 +1643,24 @@ (define-public r-futile-logger
|
|||
statements.")
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define-public r-snow
|
||||
(package
|
||||
(name "r-snow")
|
||||
(version "0.4-1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "snow" version))
|
||||
(sha256
|
||||
(base32
|
||||
"19r2yq8aqw99vwyx81p6ay4afsfqffal1wzvizk3dj882s2n4j8w"))))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://cran.r-project.org/web/packages/snow")
|
||||
(synopsis "Support for simple parallel computing in R")
|
||||
(description
|
||||
"The snow package provides support for simple parallel computing on a
|
||||
network of workstations using R. A master R process calls @code{makeCluster}
|
||||
to start a cluster of worker processes; the master process then uses functions
|
||||
such as @code{clusterCall} and @code{clusterApply} to execute R code on the
|
||||
worker processes and collect and return the results on the master.")
|
||||
(license (list license:gpl2+ license:gpl3+))))
|
||||
|
||||
|
|
Loading…
Reference in a new issue