From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:34958) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzKHa-0004Nh-U8 for guix-patches@gnu.org; Mon, 10 Sep 2018 07:23:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzKHW-00009s-NI for guix-patches@gnu.org; Mon, 10 Sep 2018 07:23:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46783) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fzKHW-00009i-Hr for guix-patches@gnu.org; Mon, 10 Sep 2018 07:23:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fzKHW-00046F-9r for guix-patches@gnu.org; Mon, 10 Sep 2018 07:23:02 -0400 Subject: [bug#32678] [PATCH] gnu: Add r-abodoutlier. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34590) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzKGv-0003Um-5X for guix-patches@gnu.org; Mon, 10 Sep 2018 07:22:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzKGl-000816-SQ for guix-patches@gnu.org; Mon, 10 Sep 2018 07:22:21 -0400 Received: from venus.bbbm.mdc-berlin.de ([141.80.25.30]:48952) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fzKGe-0007wm-OA for guix-patches@gnu.org; Mon, 10 Sep 2018 07:22:10 -0400 Received: from localhost (localhost [127.0.0.1]) by venus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 61D5B380F6B for ; Mon, 10 Sep 2018 13:22:05 +0200 (CEST) Received: from venus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (venus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id O3cjsN0hh5h5 for ; Mon, 10 Sep 2018 13:22:04 +0200 (CEST) Received: from SW-IT-P-CAS4.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by venus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Mon, 10 Sep 2018 13:22:04 +0200 (CEST) From: pimi Date: Mon, 10 Sep 2018 13:21:38 +0200 Message-ID: <20180910112138.24192-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32678@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-abodoutlier): New variable. --- gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 814439172..962b82168 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5564,3 +5564,31 @@ gf_density(), and so on, bring the formula interface to ggplot(). This captures and extends the excellent simplicity of the lattice-graphics formula interface, while providing the intuitive capabilities of @code{r-ggplot2}.") (license license:expat))) + +(define-public r-abodoutlier + (package + (name "r-abodoutlier") + (version "0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "abodOutlier" version)) + (sha256 + (base32 "1pvhgxmh23br84r0fbmv7g53z2427birdja96a67vqgz18r3fdvj")))) + (properties `((upstream-name . "abodOutlier"))) + (build-system r-build-system) + (propagated-inputs + `(("r-cluster" ,r-cluster))) + (home-page "https://cran.r-project.org/web/packages/abodOutlier/") + (synopsis "Angle-based outlier detection") + (description + "This package performs angle-based outlier detection on a given data frame. + The @code{r-abodoutlier} package offers three methods to process data: +@enumerate +@item - full but slow implementation using all the data that has cubic +complexity; +@item - a fully randomized method; +@item - a method using k-nearest neighbours. +@end enumerate + These algorithms are well suited for high dimensional data outlier detection.") + (license license:expat))) -- 2.17.1