diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-09-11 02:54:14 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-09-18 11:33:24 +0200 |
commit | b561f5636f23552f7881483494e8418a4e914a7a (patch) | |
tree | c78633955d6572e4d4f8dbf637e93f3ec3358ddd /gnu | |
parent | 9dd707f03b6cb8772d5211ff627195d9ec4d535c (diff) | |
download | guix-b561f5636f23552f7881483494e8418a4e914a7a.tar.gz guix-b561f5636f23552f7881483494e8418a4e914a7a.zip |
gnu: Add r-dimred.
* gnu/packages/cran.scm (r-dimred): New variable.
Diffstat (limited to 'gnu')
-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 6f35d35d67..19cc04c34b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1031,3 +1031,25 @@ regression using Kernel Ridge Regression.") nonparametric estimators for censored event history (survival) analysis with the Kaplan-Meier and Aalen-Johansen methods.") (license license:gpl2+))) + +(define-public r-dimred + (package + (name "r-dimred") + (version "0.1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "dimRed" version)) + (sha256 + (base32 + "0fasca5fsbrxdwv30hch7vb9snb844l7l8p5fjf239dq45xfy37v")))) + (properties `((upstream-name . "dimRed"))) + (build-system r-build-system) + (propagated-inputs `(("r-drr" ,r-drr))) + (home-page "https://github.com/gdkrmr/dimRed") + (synopsis "Framework for dimensionality reduction") + (description + "This package provides a collection of dimensionality reduction +techniques from R packages and provides a common interface for calling the +methods.") + (license license:gpl3))) |