gnu: Add r-d3network.

* gnu/packages/cran.scm (r-d3network): New variable.
This commit is contained in:
Lars-Dominik Braun 2020-02-04 14:12:49 +01:00 committed by Ricardo Wurmus
parent 2919b3ce40
commit d74e9f8fe9
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -19987,3 +19987,27 @@ (define-public r-ggm
"This package provides functions and datasets for maximum likelihood "This package provides functions and datasets for maximum likelihood
fitting of some classes of graphical Markov models.") fitting of some classes of graphical Markov models.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-d3network
(package
(name "r-d3network")
(version "0.5.2.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "d3Network" version))
(sha256
(base32
"1gh979z9wksyxxxdzlfzibn0ysvf6h1ij7vwpd55fvbwr308syaw"))))
(properties `((upstream-name . "d3Network")))
(build-system r-build-system)
(propagated-inputs
`(("r-plyr" ,r-plyr)
("r-rjson" ,r-rjson)
("r-whisker" ,r-whisker)))
(home-page "http://christophergandrud.github.io/d3Network/")
(synopsis "Create D3 JavaScript network, tree, dendrogram, and Sankey graphs")
(description
"This packages is intended to make it easy to create D3 JavaScript
network, tree, dendrogram, and Sankey graphs from R using data frames.")
(license license:gpl3+)))