mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: Add r-rnmf.
* gnu/packages/cran.scm (r-rnmf): New variable.
This commit is contained in:
parent
c662485287
commit
d80cb98b86
1 changed files with 25 additions and 0 deletions
|
@ -19761,6 +19761,31 @@ (define-public r-rngwell
|
|||
on Linear Recurrences Modulo 2'', ACM Transactions on Mathematical Software.")
|
||||
(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
|
||||
(package
|
||||
(name "r-randtoolbox")
|
||||
|
|
Loading…
Reference in a new issue