me
/
guix
Archived
1
0
Fork 0

gnu: Add r-d3network.

* gnu/packages/cran.scm (r-d3network): New variable.
master
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
1 changed files with 24 additions and 0 deletions

View File

@ -19987,3 +19987,27 @@ on a continuous-time birth-death process.")
"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+)))