guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch wip-r updated: gnu: Add r-ggalluvial.


From: guix-commits
Subject: branch wip-r updated: gnu: Add r-ggalluvial.
Date: Wed, 18 Nov 2020 09:46:35 -0500

This is an automated email from the git hooks/post-receive script.

roelj pushed a commit to branch wip-r
in repository guix.

The following commit(s) were added to refs/heads/wip-r by this push:
     new c585f65  gnu: Add r-ggalluvial.
c585f65 is described below

commit c585f65290c267c7d1599dc4a6b6e4d70cab288c
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Wed Nov 18 15:45:14 2020 +0100

    gnu: Add r-ggalluvial.
    
    * gnu/packages/cran.scm (r-ggalluvial): New variable.
---
 gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 64e139c..8ce0bc9 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -255,6 +255,35 @@ ordered indexed observations.  It is particularly aimed at 
irregular time
 series of numeric vectors/matrices and factors.")
     (license license:gpl2+)))
 
+(define-public r-ggalluvial
+  (package
+   (name "r-ggalluvial")
+   (version "0.12.2")
+   (source (origin
+            (method url-fetch)
+            (uri (cran-uri "ggalluvial" version))
+            (sha256
+             (base32
+              "1qcpbb6h2znsq246n1291rxgfryiw24caghbk8acjzzfbdhdj8x1"))))
+   (properties `((upstream-name . "ggalluvial")))
+   (build-system r-build-system)
+   (propagated-inputs
+    `(("r-dplyr" ,r-dplyr)
+      ("r-ggplot2" ,r-ggplot2)
+      ("r-lazyeval" ,r-lazyeval)
+      ("r-rlang" ,r-rlang)
+      ("r-tidyr" ,r-tidyr)
+      ("r-tidyselect" ,r-tidyselect)))
+   (native-inputs
+    `(("r-knitr" ,r-knitr)))
+   (home-page "http://corybrunson.github.io/ggalluvial/";)
+   (synopsis "Alluvial plots for ggplot2")
+   (description "This package provides alluvial plots for @code{ggplot2}.
+Alluvial plots use variable-width ribbons and stacked bar plots to represent
+multi-dimensional or repeated-measures data with categorical or ordinal
+variables.")
+   (license license:gpl3)))
+
 (define-public r-ggpmisc
   (package
     (name "r-ggpmisc")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]