gnu: Add r-clusteval.

* gnu/packages/cran.scm (r-clusteval): New variable.
This commit is contained in:
Ricardo Wurmus 2018-10-30 22:13:01 +01:00
parent 7a06cdfa8c
commit 32499b26e6
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -7039,3 +7039,25 @@ (define-public r-npsurv
"This package contains functions for non-parametric survival analysis of
exact and interval-censored observations.")
(license license:gpl2+)))
(define-public r-clusteval
(package
(name "r-clusteval")
(version "0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "clusteval" version))
(sha256
(base32
"1ld0bdl4fy8dsfzm3k7a37cyxc6pfc9qs31x4pxd3z5rslghz7rj"))))
(build-system r-build-system)
(propagated-inputs
`(("r-mvtnorm" ,r-mvtnorm)
("r-rcpp" ,r-rcpp)))
(home-page "https://cran.r-project.org/web/packages/clusteval/")
(synopsis "Evaluation of clustering algorithms")
(description
"This R package provides a suite of tools to evaluate clustering
algorithms, clusterings, and individual clusters.")
(license license:expat)))