mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 14:52:05 -05:00
gnu: Add r-d3network.
* gnu/packages/cran.scm (r-d3network): New variable.
This commit is contained in:
parent
2919b3ce40
commit
d74e9f8fe9
1 changed files with 24 additions and 0 deletions
|
@ -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+)))
|
||||||
|
|
Loading…
Reference in a new issue