gnu: Add r-apcluster.

* gnu/packages/cran.scm (r-apcluster): New variable.
master
Ricardo Wurmus 2019-03-13 17:10:53 +01:00
parent 51df43408b
commit 3942bf5e4c
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 25 additions and 0 deletions

View File

@ -11663,3 +11663,28 @@ network.")
(description
"This package provides various R programming tools for model fitting.")
(license license:gpl2)))
(define-public r-apcluster
(package
(name "r-apcluster")
(version "1.4.7")
(source
(origin
(method url-fetch)
(uri (cran-uri "apcluster" version))
(sha256
(base32
"188hdfmwjjx3aic599nwmkzjqm9j9jighi5bly6qd43c1vj6ih2s"))))
(build-system r-build-system)
(propagated-inputs
`(("r-matrix" ,r-matrix)
("r-rcpp" ,r-rcpp)))
(home-page "https://cran.r-project.org/web/packages/apcluster/")
(synopsis "Affinity propagation clustering")
(description
"This package implements affinity propagation clustering introduced by
Frey and Dueck (2007). The package further provides leveraged affinity
propagation and an algorithm for exemplar-based agglomerative clustering that
can also be used to join clusters obtained from affinity propagation. Various
plotting functions are available for analyzing clustering results.")
(license license:gpl2+)))