gnu: Add r-reordercluster.

* gnu/packages/cran.scm (r-reordercluster): New variable.
This commit is contained in:
Roel Janssen 2020-04-27 10:11:21 +02:00
parent 9c63165d9e
commit 8521d93854
No known key found for this signature in database
GPG key ID: CBD0CD5138C19AFC

View file

@ -449,6 +449,27 @@ (define-public r-reprex
such as copy/paste from an R session.")
(license license:expat)))
(define-public r-reordercluster
(package
(name "r-reordercluster")
(version "1.0")
(source (origin
(method url-fetch)
(uri (cran-uri "ReorderCluster" version))
(sha256
(base32
"0ss750frzvj0bm1w7zblmcsjpszhnbffwlkaw31sm003lbx9hy58"))))
(build-system r-build-system)
(propagated-inputs
`(("r-gplots" ,r-gplots)
("r-rcpp" ,r-rcpp)))
(home-page "https://cran.r-project.org/web/packages/ReorderCluster")
(synopsis "Reordering the dendrogram according to the class labels")
(description "This package provides tools for performing the leaf reordering
for the dendrogram that preserves the hierarchical clustering result and at the
same time tries to group instances from the same class together.")
(license license:gpl3+)))
(define-public r-callr
(package
(name "r-callr")