gnu: Add r-mpm.

* gnu/packages/cran.scm (r-mpm): New variable.
master
Ricardo Wurmus 2019-03-28 18:11:31 +01:00
parent 74cada8ef1
commit 409a13fe76
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -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+)))