mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 16:06:16 -05:00
gnu: Add r-densityclust.
* gnu/packages/cran.scm (r-densityclust): New variable.
This commit is contained in:
parent
b614009e6a
commit
13f5837b4c
1 changed files with 30 additions and 0 deletions
|
@ -8747,3 +8747,33 @@ (define-public r-sparsesvd
|
|||
;; SVDLIBC is released under BSD-2. The R interface is released under
|
||||
;; BSD-3.
|
||||
(license (list license:bsd-3 license:bsd-2))))
|
||||
|
||||
(define-public r-densityclust
|
||||
(package
|
||||
(name "r-densityclust")
|
||||
(version "0.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "densityClust" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1zry0vafajzmr37aylglxfvwplhdygbkb9cvzvh8cy0xgnjrnx13"))))
|
||||
(properties `((upstream-name . "densityClust")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-fnn" ,r-fnn)
|
||||
("r-ggplot2" ,r-ggplot2)
|
||||
("r-ggrepel" ,r-ggrepel)
|
||||
("r-gridextra" ,r-gridextra)
|
||||
("r-rcolorbrewer" ,r-rcolorbrewer)
|
||||
("r-rcpp" ,r-rcpp)
|
||||
("r-rtsne" ,r-rtsne)))
|
||||
(home-page "https://cran.r-project.org/web/packages/densityClust")
|
||||
(synopsis "Clustering by fast search and find of density peaks")
|
||||
(description
|
||||
"This package provides an improved implementation (based on k-nearest
|
||||
neighbors) of the density peak clustering algorithm, originally described by
|
||||
Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
|
||||
large datasets (> 100,000 samples) very efficiently.")
|
||||
(license license:gpl2+)))
|
||||
|
|
Loading…
Reference in a new issue