mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add r-rcdd.
* gnu/packages/cran.scm (r-rcdd): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
parent
53269e6971
commit
5b38f038f6
1 changed files with 26 additions and 0 deletions
|
@ -21351,3 +21351,29 @@ (define-public r-dcv
|
|||
rings, including Sign Test statistic, Reduction of Error statistic, Product
|
||||
Mean Test, Durbin-Watson statistic etc.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-rcdd
|
||||
(package
|
||||
(name "r-rcdd")
|
||||
(version "1.2-2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "rcdd" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0pzpbqnlgzr240iici70278py5wnbbxkzlgn112f9wv5ga3riric"))))
|
||||
(properties
|
||||
`((upstream-name . "rcdd")))
|
||||
(build-system r-build-system)
|
||||
(inputs
|
||||
`(("gmp" ,gmp)))
|
||||
(home-page "https://www.stat.umn.edu/geyer/rcdd/")
|
||||
(synopsis "Computational geometry")
|
||||
(description
|
||||
"This package converts back and forth between two representations of a
|
||||
convex polytope: as solution of a set of linear equalities and inequalities
|
||||
and as convex hull of set of points and rays. Also does linear programming
|
||||
and redundant generator elimination. All functions can use exact
|
||||
infinite-precision rational arithmetic.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue