diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-03-27 17:43:37 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-03-27 17:50:57 +0100 |
commit | ca9d4d9448719928c30aa3e6d9e15e67b2662b9c (patch) | |
tree | 3a13515cd260a76585a5a4a90876dbd0103a28c6 /gnu | |
parent | 517c13624a9643c4f47b8e5bc623b39e68db8027 (diff) | |
download | guix-ca9d4d9448719928c30aa3e6d9e15e67b2662b9c.tar.gz |
gnu: Add r-productplots.
* gnu/packages/cran.scm (r-productplots): New variable. Change-Id: I4b8105773e11791e57d6461e8c2b6c65ffc6c6a2
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index a52477df3e..b8a7d3e944 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -32543,6 +32543,32 @@ providing tooltips with information about each cell and enabling zooming into interesting features. iheatmapr uses the plotly library for interactivity.") (license license:expat))) +(define-public r-productplots + (package + (name "r-productplots") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "productplots" version)) + (sha256 + (base32 "1igs6d0qwgsfk0z3vxabgv5kva9w2kpzi535gjfdrbx34j4pf3gx")))) + (properties `((upstream-name . "productplots"))) + (build-system r-build-system) + (propagated-inputs (list r-ggplot2 r-plyr)) + (home-page "https://github.com/hadley/productplots") + (synopsis "Product plots for R") + (description + "Framework for visualising tables of counts, proportions and +probabilities. The framework is called product plots, alluding to the +computation of area as a product of height and width, and the statistical +concept of generating a joint distribution from the product of conditional and +marginal distributions. The framework, with extensions, is sufficient to +encompass over 20 visualisations previously described in fields of statistical +graphics and infovis, including bar charts, mosaic plots, treemaps, equal area +plots and fluctuation diagrams.") + (license license:gpl2))) + (define-public r-packrat (package (name "r-packrat") |