diff options
author | Roel Janssen <roel@gnu.org> | 2018-03-29 14:11:21 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2018-03-29 14:11:21 +0200 |
commit | 996bed06088d23ff9ec907461ab06f5c7f019c73 (patch) | |
tree | d0fb728de2772df727efa3553c79dc387ad4a40e /gnu/packages/cran.scm | |
parent | 6174db2b2cbe459791c6818642fcabf1f61aa806 (diff) | |
download | guix-996bed06088d23ff9ec907461ab06f5c7f019c73.tar guix-996bed06088d23ff9ec907461ab06f5c7f019c73.tar.gz |
gnu: Add r-amap.
* gnu/packages/cran.scm (r-amap): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 410011f670..8ba19ceefa 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -265,6 +265,25 @@ into a pipeline of data manipulation and visualisation.") embedded @url{https://github.com/WizardMac/ReadStat,ReadStat} C library.") (license license:expat))) +(define-public r-amap + (package + (name "r-amap") + (version "0.8-14") + (source (origin + (method url-fetch) + (uri (cran-uri "amap" version)) + (sha256 + (base32 + "1dz37z9v4zvyvqrs4xvpfv468jwvpxav60qn2w0049bw8llj6xdl")))) + (build-system r-build-system) + (inputs + `(("gfortran" ,gfortran))) + (home-page "http://mulcyber.toulouse.inra.fr/projects/amap/") + (synopsis "Another multidimensional analysis package") + (description "This package provides tools for clustering and principal +component analysis (with robust methods, and parallelized functions).") + (license license:gpl2+))) + (define-public r-ape (package (name "r-ape") |