diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-05-05 23:23:05 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-05-06 00:14:29 +0200 |
commit | 0c8960df13fd550b5ca047770b50c8b4c8fba59c (patch) | |
tree | 6113129fa5f9994cc6e0e99df6cf4006fdb179aa /gnu/packages/cran.scm | |
parent | be23c491cbf702877a2fbaac1b4a2c9320b27d50 (diff) | |
download | guix-0c8960df13fd550b5ca047770b50c8b4c8fba59c.tar.gz guix-0c8960df13fd550b5ca047770b50c8b4c8fba59c.zip |
gnu: Add r-clue.
* gnu/packages/cran.scm (r-clue): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c6d902a62a..33e6fe4f3f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14187,3 +14187,27 @@ machines can be hooked up via SSH to create a makeshift cluster. Moreover, the package provides an abstraction mechanism to define large-scale computer experiments in a well-organized and reproducible way.") (license license:lgpl3))) + +(define-public r-clue + (package + (name "r-clue") + (version "0.3-57") + (source + (origin + (method url-fetch) + (uri (cran-uri "clue" version)) + (sha256 + (base32 + "05rdcahawxlxci3fjxihjvvh33wqpxw50sx015165ab4nh3rsdkf")))) + (build-system r-build-system) + (propagated-inputs `(("r-cluster" ,r-cluster))) + (home-page "https://cran.r-project.org/web/packages/clue/") + (synopsis "Tools for analyzing cluster ensembles") + (description "Cluster ensembles are collections of individual solutions to +a given clustering problem which are useful or necessary to consider in a wide +range of applications. This R package provides an extensible computational +environment for creating and analyzing cluster ensembles, with basic data +structures for representing partitions and hierarchies, and facilities for +computing on them, including methods for measuring proximity and obtaining +consensus and secondary clusterings.") + (license license:gpl2))) |