guix_mirror_bot pushed a commit to branch r-team
in repository guix.

commit ef31e7e160e171c7ee75415796a8c9ae6bdfad7c
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 18:55:25 2026 +0100

    gnu: r-tsne: Move to (gnu packages cran).
    
    * gnu/packages/statistics.scm (r-tsne): Move from here...
    * gnu/packages/cran.scm (r-tsne): ...to here.
    
    Change-Id: I50f0b37af9c894e738ebe56726f70a563f1b9ec0
---
 gnu/packages/cran.scm       | 18 ++++++++++++++++++
 gnu/packages/statistics.scm | 18 ------------------
 2 files changed, 18 insertions(+), 18 deletions(-)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 27324b92e7..3c20bba22e 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13189,6 +13189,24 @@ of the points.")
     ;; Any GPL version
     (license (list license:gpl2+ license:gpl3+))))
 
+(define-public r-tsne
+  (package
+    (name "r-tsne")
+    (version "0.1-3.1")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "tsne" version))
+       (sha256
+        (base32
+         "126q6ha25wx9mdsfngzkyp8j2fj81ri1knjdq1iyvwx3q1dwdaql"))))
+    (build-system r-build-system)
+    (home-page "https://github.com/jdonaldson/rtsne/";)
+    (synopsis "t-Distributed Stochastic Neighbor Embedding for R")
+    (description
+     "This package provides a pure R implementation of the t-SNE algorithm.")
+    (license license:gpl2+)))
+
 (define-public r-rvest
   (package
     (name "r-rvest")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index bb132b7d99..3f5417df19 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1658,24 +1658,6 @@ following problems:
 @end enumerate\n")
     (license license:gpl3+)))
 
-(define-public r-tsne
-  (package
-    (name "r-tsne")
-    (version "0.1-3.1")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "tsne" version))
-       (sha256
-        (base32
-         "126q6ha25wx9mdsfngzkyp8j2fj81ri1knjdq1iyvwx3q1dwdaql"))))
-    (build-system r-build-system)
-    (home-page "https://github.com/jdonaldson/rtsne/";)
-    (synopsis "t-Distributed Stochastic Neighbor Embedding for R")
-    (description
-     "This package provides a pure R implementation of the t-SNE algorithm.")
-    (license license:gpl2+)))
-
 (define-public r-tgconfig
   (let ((commit "15cf199436ae0b2ac0006b2ca7f0aeeb5c9d4445")
         (revision "1"))

Reply via email to