From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 14/35] gnu: Add r-fpc. Date: Thu, 19 Jan 2017 19:55:09 +0100 Message-ID: <20170119185530.35824-14-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35488) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsW-0005rQ-13 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsU-0004Y9-Ab for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:08 -0500 Received: from mail-wm0-x244.google.com ([2a00:1450:400c:c09::244]:33205) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsU-0004XX-42 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:56:06 -0500 Received: by mail-wm0-x244.google.com with SMTP id r144so1084406wme.0 for ; Thu, 19 Jan 2017 10:56:05 -0800 (PST) In-Reply-To: <20170119185530.35824-1-ilpuccio.febo@gmail.com> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org From: Raoul Jean Pierre Bonnal * gnu/packages/statistics.scm (r-fpc): New variable. --- gnu/packages/statistics.scm | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index d729e6d..336b7c0 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4333,3 +4333,32 @@ regression methodology including model selections and multivariate statistics.") "Trimmed k-means clustering.") (license (list license:gpl2+ license:gpl3+)))) + +(define-public r-fpc + (package + (name "r-fpc") + (version "2.1-10") + (source + (origin + (method url-fetch) + (uri (cran-uri "fpc" version)) + (sha256 + (base32 + "15m0p9l9w2v7sl0cnzyg81i2fmx3hrhvr3371544mwn3fpsca5sx")))) + (build-system r-build-system) + (propagated-inputs + `(("r-diptest" ,r-diptest) + ("r-flexmix" ,r-flexmix) + ("r-kernlab" ,r-kernlab) + ("r-mclust" ,r-mclust) + ("r-mvtnorm" ,r-mvtnorm) + ("r-prabclus" ,r-prabclus) + ("r-robustbase" ,r-robustbase) + ("r-trimcluster" ,r-trimcluster))) + (home-page "http://www.homepages.ucl.ac.uk/~ucakche/") + (synopsis "Flexible procedures for clustering") + (description + "This package provides various methods for clustering and cluster validation. +Fixed point clustering.") + (license (list license:gpl2+ + license:gpl3+)))) -- 1.9.1