mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add r-diffusionmap.
* gnu/packages/graph.scm (r-diffusionmap): New variable.
This commit is contained in:
parent
007f6d9885
commit
fff9b88439
1 changed files with 26 additions and 0 deletions
|
@ -27,6 +27,7 @@ (define-module (gnu packages graph)
|
|||
#:use-module (gnu packages gcc)
|
||||
#:use-module (gnu packages bioinformatics)
|
||||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages cran)
|
||||
#:use-module (gnu packages graphviz)
|
||||
#:use-module (gnu packages maths)
|
||||
#:use-module (gnu packages multiprecision)
|
||||
|
@ -119,6 +120,31 @@ (define-public r-igraph
|
|||
more.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-diffusionmap
|
||||
(package
|
||||
(name "r-diffusionmap")
|
||||
(version "1.1-0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "diffusionMap" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1l985q2hfc8ss5afajik4p25dx628yikvhdimz5s0pql800q2yv3"))))
|
||||
(properties `((upstream-name . "diffusionMap")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-igraph" ,r-igraph)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-scatterplot3d" ,r-scatterplot3d)))
|
||||
(home-page "http://www.r-project.org")
|
||||
(synopsis "Diffusion map")
|
||||
(description "This package implements the diffusion map method of data
|
||||
parametrization, including creation and visualization of diffusion maps,
|
||||
clustering with diffusion K-means and regression using the adaptive regression
|
||||
model.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-rgraphviz
|
||||
(package
|
||||
(name "r-rgraphviz")
|
||||
|
|
Loading…
Reference in a new issue