From mboxrd@z Thu Jan 1 00:00:00 1970 From: Raoul Bonnal Subject: [PATCH 05/35] gnu: Add r-tsne. Date: Thu, 19 Jan 2017 19:55:00 +0100 Message-ID: <20170119185530.35824-5-ilpuccio.febo@gmail.com> References: <20170119185530.35824-1-ilpuccio.febo@gmail.com> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35147) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cUHsF-0005aq-GU for guix-devel@gnu.org; Thu, 19 Jan 2017 13:55:52 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cUHsE-0004JW-I9 for guix-devel@gnu.org; Thu, 19 Jan 2017 13:55:51 -0500 Received: from mail-wm0-x242.google.com ([2a00:1450:400c:c09::242]:35267) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cUHsE-0004Ig-CH for guix-devel@gnu.org; Thu, 19 Jan 2017 13:55:50 -0500 Received: by mail-wm0-x242.google.com with SMTP id d140so1066419wmd.2 for ; Thu, 19 Jan 2017 10:55:50 -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-tsne): New variable. --- gnu/packages/statistics.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 4686212..8051e57 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -4142,3 +4142,22 @@ Independent Component Analysis ICA and projection pursuit.") (license (list license:gpl2 license:gpl3)))) +(define-public r-tsne + (package + (name "r-tsne") + (version "0.1-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "tsne" version)) + (sha256 + (base32 + "0s8cv2pndkddq62rzlgzgfdjp1vjv5hz5i5957sllnb97vbzbzb6")))) + (build-system r-build-system) + (home-page + "https://github.com/jdonaldson/rtsne/") + (synopsis "t-Distributed Stochastic Neighbor Embedding for R t-SNE") + (description + "This package provides a pure R implementation of the t-SNE algorithm.") + (license (list license:gpl2+ + license:gpl3+)))) -- 1.9.1