me
/
guix
Archived
1
0
Fork 0

gnu: Add r-rnmf.

* gnu/packages/cran.scm (r-rnmf): New variable.
master
Roel Janssen 2021-05-26 16:25:06 +02:00
parent c662485287
commit d80cb98b86
No known key found for this signature in database
GPG Key ID: CBD0CD5138C19AFC
1 changed files with 25 additions and 0 deletions

View File

@ -19761,6 +19761,31 @@ introduced in Panneton et al. (2006), ``Improved Long-Period Generators Based
on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.") on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
(license license:bsd-3))) (license license:bsd-3)))
(define-public r-rnmf
(package
(name "r-rnmf")
(version "0.5.0")
(source (origin
(method url-fetch)
(uri (cran-uri "rNMF" version))
(sha256
(base32
"1nz6h0j5ywdh48m0swmhp34hbkycd7n13rclrxaw85qi9wc42597"))))
(build-system r-build-system)
(propagated-inputs
`(("r-knitr" ,r-knitr)
("r-nnls" ,r-nnls)))
(home-page "https://cran.r-project.org/web/packages/rNMF/")
(synopsis "Robust nonnegative matrix factorization")
(description
"This package provides an implementation of robust nonnegative matrix
factorization (rNMF). The rNMF algorithm decomposes a nonnegative high
dimension data matrix into the product of two low rank nonnegative matrices,
while detecting and trimming outliers. The main function is @code{rnmf()}.
The package also includes a visualization tool, @code{see()}, that arranges
and prints vectorized images.")
(license license:gpl2+)))
(define-public r-randtoolbox (define-public r-randtoolbox
(package (package
(name "r-randtoolbox") (name "r-randtoolbox")