1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-06-25 09:24:04 +02:00

gnu: r-snow: Move to (gnu packages cran).

* gnu/packages/statistics.scm (r-snow): Move from here...
* gnu/packages/cran.scm (r-snow): ...to here.

Change-Id: Idec2db0264ae8ce666596be3fa0427568249b591
This commit is contained in:
Ricardo Wurmus
2026-02-16 18:37:14 +01:00
committed by Andreas Enge
parent f82a5e3a0c
commit de5988f5d4
2 changed files with 21 additions and 21 deletions
+21
View File
@@ -10456,6 +10456,27 @@ notably the skew-t family, and provides related statistical methods for data
fitting and diagnostics, in the univariate and the multivariate case.")
(license license:gpl2+)))
(define-public r-snow
(package
(name "r-snow")
(version "0.4-4")
(source (origin
(method url-fetch)
(uri (cran-uri "snow" version))
(sha256
(base32
"1j8kvf3imxijsqkdjz4i9s7qggfxqrpas46y5wz6za92y937yn44"))))
(build-system r-build-system)
(home-page "https://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+))))
(define-public r-snowflakeauth
(package
(name "r-snowflakeauth")
-21
View File
@@ -1660,27 +1660,6 @@ Features:
@end itemize")
(license license:asl2.0)))
(define-public r-snow
(package
(name "r-snow")
(version "0.4-4")
(source (origin
(method url-fetch)
(uri (cran-uri "snow" version))
(sha256
(base32
"1j8kvf3imxijsqkdjz4i9s7qggfxqrpas46y5wz6za92y937yn44"))))
(build-system r-build-system)
(home-page "https://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+))))
(define-public r-sparsem
(package
(name "r-sparsem")