summaryrefslogtreecommitdiff
path: root/gnu/packages/cran.scm
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2024-12-04 16:25:20 +0100
committerRicardo Wurmus <rekado@elephly.net>2024-12-04 16:25:20 +0100
commite00ca95e08bc1cc2cb39f3178485ef16defce0be (patch)
tree2ef4f30380d0e203553cb68d597c5fb8d1fe69ce /gnu/packages/cran.scm
parent3cfd6e11a4bd4ee12f508ea5dabc59b81e876ea0 (diff)
gnu: Add r-ggupset.
* gnu/packages/cran.scm (r-ggupset): New variable. Change-Id: I044fff58b66dbb56e6b7fb1ebcb5353e7ab3d1f7
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r--gnu/packages/cran.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 298704185cb..72e751c4af9 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -1635,6 +1635,30 @@ robust, and Bayesian versions of t-test/ANOVA, correlation analyses,
1635contingency table analysis, meta-analysis, and regression analyses.") 1635contingency table analysis, meta-analysis, and regression analyses.")
1636 (license license:gpl3))) 1636 (license license:gpl3)))
1637 1637
1638(define-public r-ggupset
1639 (package
1640 (name "r-ggupset")
1641 (version "0.4.0")
1642 (source
1643 (origin
1644 (method url-fetch)
1645 (uri (cran-uri "ggupset" version))
1646 (sha256
1647 (base32 "0cycnnycn1qazy35s4w746zlfraayf109bq40fglklmick6kfwsz"))))
1648 (properties `((upstream-name . "ggupset")))
1649 (build-system r-build-system)
1650 (propagated-inputs (list r-ggplot2 r-gtable r-rlang r-scales r-tibble))
1651 (native-inputs (list r-testthat))
1652 (home-page "https://github.com/const-ae/ggupset")
1653 (synopsis "Combination matrix axis for ggplot2 to create UpSet plots")
1654 (description
1655 "This package lets you replace the standard x-axis in ggplots with a
1656combination matrix to visualize complex set overlaps. UpSet has introduced a
1657new way to visualize the overlap of sets as an alternative to Venn diagrams.
1658This package provides a simple way to produce such plots using ggplot2. In
1659addition it can convert any categorical axis into a combination matrix axis.")
1660 (license license:gpl3)))
1661
1638(define-public r-glmpca 1662(define-public r-glmpca
1639 (package 1663 (package
1640 (name "r-glmpca") 1664 (name "r-glmpca")