From 5f4565b18fa0bdb0388265c9e97e284826327c3a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Fri, 2 Mar 2018 22:21:00 +0100 Subject: [PATCH] gnu: Add r-network. * gnu/packages/cran.scm (r-network): New variable. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9279d1da83..211d292397 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2225,3 +2225,23 @@ meta-analysis of significance values including the methods of Edgington, Fisher, Stouffer, Tippett, and Wilkinson; a number of data-sets to replicate published results; and a routine for graphical display.") (license license:gpl2))) + +(define-public r-network + (package + (name "r-network") + (version "1.13.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "network" version)) + (sha256 + (base32 + "11sg330xb7gcnl3f6lwhhjdabz6mk43828i2np635pqw4s4yl13s")))) + (build-system r-build-system) + (home-page "http://statnet.org/") + (synopsis "Classes for relational data") + (description + "This package provides tools to create and modify network objects. The +@code{network} class can represent a range of relational data types, and +supports arbitrary vertex/edge/graph attributes.") + (license license:gpl2+)))