3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add r-treemap.

* gnu/packages/cran.scm (r-treemap): New variable.
This commit is contained in:
son0p 2022-05-02 13:02:00 -05:00 committed by Ricardo Wurmus
parent 11fce2ddd7
commit 74ef7fd9a3
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -24806,6 +24806,34 @@ dissimilarity useful for clustering mixed data, and, optionally, perform the
clustering.")
(license license:gpl2+)))
(define-public r-treemap
(package
(name "r-treemap")
(version "2.4-3")
(source
(origin
(method url-fetch)
(uri (cran-uri "treemap" version))
(sha256
(base32 "1fg8gygw38x7msn32barx2irvcv8flm6wqvipnbj1qkh9w89y3q4"))))
(properties `((upstream-name . "treemap")))
(build-system r-build-system)
(propagated-inputs
(list r-colorspace
r-data-table
r-ggplot2
r-gridbase
r-igraph
r-rcolorbrewer
r-shiny))
(native-inputs (list r-knitr))
(home-page "https://cran.r-project.org/package=treemap")
(synopsis "Treemap visualization")
(description
"A treemap is a space-filling visualization of hierarchical structures.
This package offers great flexibility to draw treemaps.")
(license license:gpl3+)))
(define-public r-acrosstic
(package
(name "r-acrosstic")