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

commit 5b1f7963a2d79e03f182bca11f6663447be582d0
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 17:05:23 2026 +0100

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

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 413ac1f844..6ee4b3963c 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -7490,6 +7490,33 @@ included.")
 informative error messages when it's not available.")
     (license license:expat)))
 
+(define-public r-rtsne
+  (package
+    (name "r-rtsne")
+    (version "0.17")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "Rtsne" version))
+       (sha256
+        (base32
+         "02srqmfkdj7v9gyhssaqdarg4ljn2ds77w25a5w0dm66sqa6ibis"))))
+    (properties
+     `((upstream-name . "Rtsne")
+       (updater-extra-native-inputs . ("r-irlba"))))
+    (build-system r-build-system)
+    (propagated-inputs
+     (list r-rcpp))
+    (native-inputs (list r-irlba r-testthat))
+    (home-page "https://github.com/jkrijthe/Rtsne";)
+    (synopsis "T-distributed stochastic neighbor embedding")
+    (description
+     "This package provides an R wrapper around the fast T-distributed
+Stochastic Neighbor Embedding using a Barnes-Hut implementation.")
+    ;; The declared license for this package is BSD-3, but it also includes
+    ;; code licensed under BSD-4.
+    (license (list license:bsd-3 license:bsd-4))))
+
 (define-public r-runner
   (package
     (name "r-runner")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 7f63ca56cb..bbe1bd6eca 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1746,33 +1746,6 @@ matrices.  It includes Cholesky decomposition and 
backsolving as well as
 standard R subsetting and Kronecker products.")
     (license license:gpl2+)))
 
-(define-public r-rtsne
-  (package
-    (name "r-rtsne")
-    (version "0.17")
-    (source
-     (origin
-       (method url-fetch)
-       (uri (cran-uri "Rtsne" version))
-       (sha256
-        (base32
-         "02srqmfkdj7v9gyhssaqdarg4ljn2ds77w25a5w0dm66sqa6ibis"))))
-    (properties
-     `((upstream-name . "Rtsne")
-       (updater-extra-native-inputs . ("r-irlba"))))
-    (build-system r-build-system)
-    (propagated-inputs
-     (list r-rcpp))
-    (native-inputs (list r-irlba r-testthat))
-    (home-page "https://github.com/jkrijthe/Rtsne";)
-    (synopsis "T-distributed stochastic neighbor embedding")
-    (description
-     "This package provides an R wrapper around the fast T-distributed
-Stochastic Neighbor Embedding using a Barnes-Hut implementation.")
-    ;; The declared license for this package is BSD-3, but it also includes
-    ;; code licensed under BSD-4.
-    (license (list license:bsd-3 license:bsd-4))))
-
 (define-public r-synchronicity
   (package
     (name "r-synchronicity")

Reply via email to