From 9cd3ae8620ed27fb54da1face9ec1a4265746602 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sat, 14 Dec 2019 13:32:02 +0100 Subject: gnu: Add r-icge. * gnu/packages/cran.scm (r-icge): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 354837823b..8482f274b6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -18486,3 +18486,27 @@ In addition, the package provides methods for data preprocessing (normalization and discretization), visualization, and validation of bicluster solutions.") (license license:gpl3))) + +(define-public r-icge + (package + (name "r-icge") + (version "0.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "ICGE" version)) + (sha256 + (base32 + "0xin7zml1nbygyi08hhg3wwr2jr1zcsvrlgia89zp4xanxlzgaqa")))) + (properties `((upstream-name . "ICGE"))) + (build-system r-build-system) + (propagated-inputs + `(("r-cluster" ,r-cluster) + ("r-mass" ,r-mass))) + (home-page "https://cran.r-project.org/web/packages/ICGE/") + (synopsis "Cluster estimation and identification of atypical units") + (description + "ICGE is a package that helps to estimate the number of real clusters in +data as well as to identify atypical units. The underlying methods are based +on distances rather than on unit x variables.") + (license license:gpl2+))) -- cgit v1.2.3