diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2019-01-09 14:49:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-01-09 15:43:50 +0100 |
commit | 25861356edd07a2b2a00e1b05cb390187fdf16b1 (patch) | |
tree | bb6b9dcae6a22a0f032d8d39e708141ab1a1dc94 /gnu/packages | |
parent | 00436e2cacec4a70e6e86a7663af754e2921c1e9 (diff) |
gnu: Add r-iso.
* gnu/packages/cran.scm (r-iso): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index af8a4dae1d..b06c3505d5 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9234,3 +9234,25 @@ inventor of the SOM.") of an algorithm for @dfn{non-negative least squares} (NNLS). It also allows the combination of non-negative and non-positive constraints.") (license license:gpl2+))) + +(define-public r-iso + (package + (name "r-iso") + (version "0.0-17") + (source + (origin + (method url-fetch) + (uri (cran-uri "Iso" version)) + (sha256 + (base32 + "0lljc99sdzdqj6d56qbsggibr6pkdwkh821bj70ianikyvmdc1y0")))) + (properties `((upstream-name . "Iso"))) + (build-system r-build-system) + (native-inputs `(("gfortran" ,gfortran))) + (home-page "http://www.stat.auckland.ac.nz/~rolf/") + (synopsis "Functions to perform isotonic regression") + (description + "This package provides support for linear order and unimodal +order (univariate) isotonic regression and bivariate isotonic regression with +linear order on both variables.") + (license license:gpl2+))) |