From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 04/35] gnu: Add r-fastica. Date: Thu, 19 Jan 2017 19:54:59 +0100 Message-ID: <20170119185530.35824-4-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35129) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsD-0005ab-Se for guix-devel@gnu.org; Thu, 19 Jan 2017 13:55:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsC-0004I3-K9 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:55:49 -0500 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:33151) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsC-0004Hx-D0 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:55:48 -0500 Received: by mail-wm0-x242.google.com with SMTP id r144so1082304wme.0 for ; Thu, 19 Jan 2017 10:55:48 -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-fastica): New variable. --- gnu/packages/statistics.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index d9b494f..4686212 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4121,3 +4121,24 @@ regression and infinitesimal forward stagewise regression are related to the lasso, as described in the paper below.") (license license:gpl2))) +(define-public r-fastica + (package + (name "r-fastica") + (version "1.2-0") + (source + (origin + (method url-fetch) + (uri (cran-uri "fastICA" version)) + (sha256 + (base32 + "0ykk78fsk5da2g16i4wji85bvji7nayjvkfp07hyaxq9d15jmf0r")))) + (properties `((upstream-name . "fastICA"))) + (build-system r-build-system) + (home-page "http://cran.r-project.org/web/packages/fastICA") + (synopsis "FastICA algorithms to perform ICA and projection pursuit") + (description + "This package provides an implementation of FastICA algorithm to perform +Independent Component Analysis ICA and projection pursuit.") + (license (list license:gpl2 + license:gpl3)))) + -- 1.9.1