diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2022-10-14 12:41:43 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-10-27 15:28:22 +0200 |
commit | 3417a280805d8d52ee1471ef27aa7b66cccc473d (patch) | |
tree | a9a6bb593e5295342c81851cb4a95a842d1003ec /gnu | |
parent | 9f8ab16fb538b3f0721ab7b188e9997e8440058d (diff) |
gnu: Add r-eulerr.
* gnu/packages/cran.scm (r-eulerr): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 72ac1a5e90..f969da5b3c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19575,6 +19575,35 @@ This package aims to be a collection of mainly new statistics and geometries that fills this gap.") (license license:expat))) +(define-public r-eulerr + (package + (name "r-eulerr") + (version "6.1.1") + (source (origin + (method url-fetch) + (uri (cran-uri "eulerr" version)) + (sha256 + (base32 + "0lldp2319qd08y87f862gx8a77rvikcnkmdl9xgx4glynfs3hk19")))) + (properties `((upstream-name . "eulerr"))) + (build-system r-build-system) + (propagated-inputs + (list r-gensa + r-polyclip + r-polylabelr + r-rcpp + r-rcpparmadillo)) + (native-inputs (list r-knitr)) + (home-page "https://github.com/jolars/eulerr") + (synopsis "Area-proportional Euler and Venn diagrams with ellipses") + (description + "This package generates area-proportional Euler diagrams using +numerical optimization. An Euler diagram is a generalization of a +Venn diagram, relaxing the criterion that all interactions need to be +represented. Diagrams may be fit with ellipses and circles via a wide +range of inputs and can be visualized in numerous ways.") + (license license:gpl3))) + (define-public r-europepmc (package (name "r-europepmc") |