guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH 05/35] gnu: Add r-tsne.


From: Raoul Bonnal
Subject: [PATCH 05/35] gnu: Add r-tsne.
Date: Thu, 19 Jan 2017 19:55:00 +0100

From: Raoul Jean Pierre Bonnal <address@hidden>

* 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




reply via email to

[Prev in Thread] Current Thread [Next in Thread]