diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2017-12-18 11:58:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2017-12-18 12:01:34 +0100 |
commit | ae1642600707e35e1541f8d488cd5ffb5699ecb2 (patch) | |
tree | 9b88d5f090e73e4448591ba9d22f500bbf9234b0 | |
parent | 8271b8d22a84ded6bfd2a81531116d00347c653c (diff) | |
download | guix-ae1642600707e35e1541f8d488cd5ffb5699ecb2.tar guix-ae1642600707e35e1541f8d488cd5ffb5699ecb2.tar.gz |
gnu: Add r-ica.
* gnu/packages/cran.scm (r-ica): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 11d30815cf..24076c5ef4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -1642,3 +1642,23 @@ originally inspired by the book \"Visualizing Categorical Data\" by Michael Friendly and is now the main support package for a new book, \"Discrete Data Analysis with R\" by Michael Friendly and David Meyer (2015).") (license license:gpl2))) + +(define-public r-ica + (package + (name "r-ica") + (version "1.0-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "ica" version)) + (sha256 + (base32 + "1bkl4a72l0k6gm82l3jxnib898z20cw17zg81jj39l9dn65rlmcq")))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/ica/") + (synopsis "Independent component analysis") + (description "This package provides tools for @dfn{Independent Component +Analysis} (ICA) using various algorithms: FastICA, +Information-Maximization (Infomax), and @dfn{Joint Approximate Diagonalization +of Eigenmatrices} (JADE).") + (license license:gpl2+))) |