From: Raoul Jean Pierre Bonnal <[email protected]>
* gnu/packages/statistics.scm (r-fastica): New variable.
---
gnu/packages/statistics.scm | 21 +++++++++++++++++++++
1 file changed, 21 insertions(+)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index d9b494f..4686212 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -4121,3 +4121,24 @@ regression and infinitesimal forward stagewise
regression are related to
the lasso, as described in the paper below.")
(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 FastICA algorithm to perform
+Independent Component Analysis ICA and projection pursuit.")
+ (license (list license:gpl2
+ license:gpl3))))
+
--
1.9.1