>From 3fae8711be15ff332d5378a33de34b5fd70bb2af Mon Sep 17 00:00:00 2001 From: Naga Malleswari Date: Thu, 23 Apr 2020 01:28:31 +0530 Subject: [PATCH 8/9] gnu: Add r-rcdd. * gnu/packages/cran.scm (r-rcdd): New variable. --- gnu/packages/cran.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e4efa402d5..b6a9a88067 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21349,3 +21349,29 @@ methods for climate-growth model in the climate reconstruction from tree 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 "http://www.stat.umn.edu/geyer/rcdd/") + (synopsis "Computational Geometry") + (description + "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))) -- 2.25.1