diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-06-13 11:47:35 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-06-13 11:51:28 +0200 |
commit | 0c9868aa5b008504b2046d824f5ae428f2bbd928 (patch) | |
tree | 5074df006c9217e3f4cfa91dd6d67dfbc604ba7f /gnu | |
parent | f22bfee9454879e0356ad79efe3a029ff72b16bb (diff) | |
download | patches-0c9868aa5b008504b2046d824f5ae428f2bbd928.tar patches-0c9868aa5b008504b2046d824f5ae428f2bbd928.tar.gz |
gnu: Add r-nbclust.
* gnu/packages/cran.scm (r-nbclust): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c971b4d34d..90eab5c288 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4385,3 +4385,24 @@ Mixed Data), @code{MFA} (Multiple Factor Analysis) and packages. It contains also functions for simplifying some clustering analysis steps and provides ggplot2-based elegant data visualization.") (license license:gpl2))) + +(define-public r-nbclust + (package + (name "r-nbclust") + (version "3.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "NbClust" version)) + (sha256 + (base32 + "1vwb48zy6ln1ddpqmfngii1i80n8qmqyxnzdp6gbaq96lakl3w3c")))) + (properties `((upstream-name . "NbClust"))) + (build-system r-build-system) + (home-page "https://sites.google.com/site/malikacharrad/research/nbclust-package") + (synopsis "Determine the best number of clusters in a data set") + (description + "NbClust provides 30 indexes for determining the optimal number of +clusters in a data set and offers the best clustering scheme from different +results to the user.") + (license license:gpl2))) |