me
/
guix
Archived
1
0
Fork 0

gnu: Add r-clvalid.

* gnu/packages/cran.scm (r-clvalid): New variable.
master
Ricardo Wurmus 2022-09-15 15:16:58 +02:00
parent 47fb9d23ea
commit de68d54ba6
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 22 additions and 0 deletions

View File

@ -971,6 +971,28 @@ size and can be easily tested locally before being sent to a remote.")
the system clipboards.")
(license license:gpl3)))
(define-public r-clvalid
(package
(name "r-clvalid")
(version "0.7")
(source (origin
(method url-fetch)
(uri (cran-uri "clValid" version))
(sha256
(base32
"18aiyjhnh5mfdxbzns4cy0r8bymfikhwkybpn4g04qhli5ls8z83"))))
(properties `((upstream-name . "clValid")))
(build-system r-build-system)
(propagated-inputs (list r-class r-cluster))
(home-page "https://cran.r-project.org/package=clValid")
(synopsis "Validation of clustering results")
(description
"Statistical and biological validation of clustering results. This
package implements Dunn Index, Silhouette, Connectivity, Stability, BHI and
BSI. Further information can be found in Brock, G et al. (2008) <doi:
10.18637/jss.v025.i04>.")
(license license:lgpl3)))
(define-public r-dlm
(package
(name "r-dlm")