mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 13:58:15 -05:00
gnu: Add r-fastica.
* gnu/packages/statistics.scm (r-fastica): New variable.
This commit is contained in:
parent
793f2edbbc
commit
e431eb670d
1 changed files with 21 additions and 0 deletions
|
@ -4123,3 +4123,24 @@ (define-public r-lars
|
|||
modification efficiently implements epsilon Forward Stagewise linear
|
||||
regression.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-fastica
|
||||
(package
|
||||
(name "r-fastica")
|
||||
(version "1.2-0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "fastICA" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ykk78fsk5da2g16i4wji85bvji7nayjvkfp07hyaxq9d15jmf0r"))))
|
||||
(properties `((upstream-name . "fastICA")))
|
||||
(build-system r-build-system)
|
||||
(home-page "http://cran.r-project.org/web/packages/fastICA")
|
||||
(synopsis "FastICA algorithms to perform ICA and projection pursuit")
|
||||
(description
|
||||
"This package provides an implementation of the FastICA algorithm to
|
||||
perform @dfn{independent component analysis} (ICA) and projection pursuit.")
|
||||
;; Any GPL version.
|
||||
(license license:gpl3+)))
|
||||
|
|
Loading…
Reference in a new issue