[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/21: gnu: Add r-tidygraph.
From: |
guix-commits |
Subject: |
04/21: gnu: Add r-tidygraph. |
Date: |
Sat, 7 Sep 2019 18:30:46 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit 9567bd8dd9d092ac4bfdf9abfc35263e39146e26
Author: Ricardo Wurmus <address@hidden>
Date: Sun Sep 8 00:18:03 2019 +0200
gnu: Add r-tidygraph.
* gnu/packages/cran.scm (r-tidygraph): New variable.
---
gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ac52846..19aa052 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -15300,3 +15300,36 @@ stress majorization by Gansner et al. (2004)
<doi:10.1007/978-3-540-31843-9_25>. Some more specific algorithms allow to
emphasize hidden group structures in networks or focus on specific nodes.")
(license license:expat)))
+
+(define-public r-tidygraph
+ (package
+ (name "r-tidygraph")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "tidygraph" version))
+ (sha256
+ (base32
+ "1zpsarm74afbc7p5dlyb0whc09670qdcddw1ckb25cfc9hfh0hjn"))))
+ (properties `((upstream-name . "tidygraph")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-dplyr" ,r-dplyr)
+ ("r-igraph" ,r-igraph)
+ ("r-magrittr" ,r-magrittr)
+ ("r-pillar" ,r-pillar)
+ ("r-r6" ,r-r6)
+ ("r-rcpp" ,r-rcpp)
+ ("r-rlang" ,r-rlang)
+ ("r-tibble" ,r-tibble)
+ ("r-tidyr" ,r-tidyr)))
+ (home-page "https://github.com/thomasp85/tidygraph")
+ (synopsis "Tidy API for graph manipulation")
+ (description
+ "This package provides a graph implementation that can be thought of as
+two tidy data frames describing node and edge data respectively. It provides
+an approach to manipulate these two virtual data frames using the API defined
+in the @code{dplyr} package, and it also provides tidy interfaces to a lot of
+common graph algorithms.")
+ (license license:expat)))
- branch master updated (1d03a91 -> f791b1e), guix-commits, 2019/09/07
- 04/21: gnu: Add r-tidygraph.,
guix-commits <=
- 01/21: gnu: Add r-covr., guix-commits, 2019/09/07
- 02/21: gnu: Add r-systemfonts., guix-commits, 2019/09/07
- 03/21: gnu: Add r-graphlayouts., guix-commits, 2019/09/07
- 13/21: gnu: r-ggformula: Update to 0.9.2., guix-commits, 2019/09/07
- 07/21: gnu: r-rcpparmadillo: Update to 0.9.700.2.0., guix-commits, 2019/09/07
- 05/21: gnu: r-gdtools: Update to 0.2.0., guix-commits, 2019/09/07
- 19/21: gnu: r-gprofiler: Update to 0.6.8., guix-commits, 2019/09/07
- 18/21: gnu: r-annotationhub: Update to 2.16.1., guix-commits, 2019/09/07
- 06/21: gnu: r-devtools: Update to 2.2.0., guix-commits, 2019/09/07
- 11/21: gnu: r-ggpubr: Update to 0.2.3., guix-commits, 2019/09/07