gnu: Add r-network.

* gnu/packages/cran.scm (r-network): New variable.
master
Ricardo Wurmus 2018-03-02 22:21:00 +01:00
parent b01a1b34f2
commit 5f4565b18f
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -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+)))