mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 14:40:21 -05:00
gnu: Add r-reordercluster.
* gnu/packages/cran.scm (r-reordercluster): New variable.
This commit is contained in:
parent
9c63165d9e
commit
8521d93854
1 changed files with 21 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue