diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-28 18:11:31 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-28 18:23:23 +0100 |
commit | 409a13fe76621567e128ba519c8c92fc517cdc94 (patch) | |
tree | 792482eb931735ebd757262458b87322c08b9e47 /gnu/packages/cran.scm | |
parent | 74cada8ef1dc56b1af7427807d359115dd07c91b (diff) | |
download | guix-409a13fe76621567e128ba519c8c92fc517cdc94.tar.gz guix-409a13fe76621567e128ba519c8c92fc517cdc94.zip |
gnu: Add r-mpm.
* gnu/packages/cran.scm (r-mpm): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 04c0f79230..599fd6b584 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -13586,3 +13586,27 @@ using the three.js visualization library.") learning benchmark problems, including, e.g., several data sets from the UCI repository.") (license license:gpl2))) + +(define-public r-mpm + (package + (name "r-mpm") + (version "1.0-22") + (source + (origin + (method url-fetch) + (uri (cran-uri "mpm" version)) + (sha256 + (base32 + "0wijw8v0wmbfrda5564cmnp788qmlkk21yn5cp5qk8aprm9l1fnk")))) + (build-system r-build-system) + (propagated-inputs + `(("r-kernsmooth" ,r-kernsmooth) + ("r-mass" ,r-mass))) + (home-page "http://mpm.r-forge.r-project.org") + (synopsis "Multivariate projection methods") + (description + "This is a package for exploratory graphical analysis of multivariate +data, specifically gene expression data with different projection methods: +principal component analysis, correspondence analysis, spectral map +analysis.") + (license license:gpl2+))) |