diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-06-12 15:54:57 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-06-13 01:19:39 +0200 |
commit | e6aacef67e3b602d59109d32622709c6eba58519 (patch) | |
tree | c7064b458d568f3886a416ed7acfdaf13971ca72 /gnu/packages | |
parent | 45f54b418b23dd1c17b52550b405d8ec15721be2 (diff) |
gnu: Add r-scatterpie.
* gnu/packages/cran.scm (r-scatterpie): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9fe33b803b..1a91b63f82 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -21924,3 +21924,31 @@ with posterior predictive checks and leave-one-out cross-validation.") and prediction with Aalen-Johansen or simulation in competing risks and multi-state models.") (license license:gpl2+))) + +(define-public r-scatterpie + (package + (name "r-scatterpie") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "scatterpie" version)) + (sha256 + (base32 + "0g5sn0iv6c1q7y51j4gbbbnil5089dgk1w4q94c7h5y3x7wfrzqb")))) + (properties `((upstream-name . "scatterpie"))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggforce" ,r-ggforce) + ("r-ggplot2" ,r-ggplot2) + ("r-rlang" ,r-rlang) + ("r-rvcheck" ,r-rvcheck) + ("r-tidyr" ,r-tidyr))) + (native-inputs + `(("r-knitr" ,r-knitr))) + (home-page "https://cran.r-project.org/web/packages/scatterpie/") + (synopsis "Scatter pie plot") + (description + "This package creates scatterpie plots, especially useful for plotting +pies on a map.") + (license license:artistic2.0))) |