gnu: r-diffusionmap: Move to (gnu packages cran).
* gnu/packages/graph.scm (r-diffusionmap): Move from here... * gnu/packages/cran.scm (r-diffusionmap): ...to here. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>master
parent
d3d38bd8f1
commit
1dc50e4190
|
@ -23677,6 +23677,31 @@ adaptive sparsity and the Wong algorithm for adaptively sparse gaussian
|
||||||
geometric models.")
|
geometric models.")
|
||||||
(license license:lgpl3+)))
|
(license license:lgpl3+)))
|
||||||
|
|
||||||
|
(define-public r-diffusionmap
|
||||||
|
(package
|
||||||
|
(name "r-diffusionmap")
|
||||||
|
(version "1.2.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "diffusionMap" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
|
||||||
|
(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 "https://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-workflows
|
(define-public r-workflows
|
||||||
(package
|
(package
|
||||||
(name "r-workflows")
|
(name "r-workflows")
|
||||||
|
|
|
@ -153,31 +153,6 @@ random and regular graphs, graph visualization, centrality methods and much
|
||||||
more.")
|
more.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
(define-public r-diffusionmap
|
|
||||||
(package
|
|
||||||
(name "r-diffusionmap")
|
|
||||||
(version "1.2.0")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (cran-uri "diffusionMap" version))
|
|
||||||
(sha256
|
|
||||||
(base32
|
|
||||||
"1rvk7069brlm1s9kqj4c31mwwr3mw4hmhay95cjjjfmw5xclff2j"))))
|
|
||||||
(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 "https://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
|
(define-public r-rgraphviz
|
||||||
(package
|
(package
|
||||||
(name "r-rgraphviz")
|
(name "r-rgraphviz")
|
||||||
|
|
Reference in New Issue