summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2026-02-16 18:55:25 +0100
committerAndreas Enge <andreas@enge.fr>2026-03-07 11:57:24 +0100
commitc2a92688a90f842353f540e2a441def10ed65130 (patch)
tree8e36728f49a315f67e3af7dfde6afbf5fe2e1f68
parent4ca3126412d0cbd83234fe6e77924c8e6aca3d75 (diff)
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
-rw-r--r--gnu/packages/cran.scm18
-rw-r--r--gnu/packages/statistics.scm18
2 files changed, 18 insertions, 18 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index e195fd5d4ca..79f7430bfcf 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -13236,6 +13236,24 @@ of the points.")
13236 ;; Any GPL version 13236 ;; Any GPL version
13237 (license (list license:gpl2+ license:gpl3+)))) 13237 (license (list license:gpl2+ license:gpl3+))))
13238 13238
13239(define-public r-tsne
13240 (package
13241 (name "r-tsne")
13242 (version "0.1-3.1")
13243 (source
13244 (origin
13245 (method url-fetch)
13246 (uri (cran-uri "tsne" version))
13247 (sha256
13248 (base32
13249 "126q6ha25wx9mdsfngzkyp8j2fj81ri1knjdq1iyvwx3q1dwdaql"))))
13250 (build-system r-build-system)
13251 (home-page "https://github.com/jdonaldson/rtsne/")
13252 (synopsis "t-Distributed Stochastic Neighbor Embedding for R")
13253 (description
13254 "This package provides a pure R implementation of the t-SNE algorithm.")
13255 (license license:gpl2+)))
13256
13239(define-public r-rvest 13257(define-public r-rvest
13240 (package 13258 (package
13241 (name "r-rvest") 13259 (name "r-rvest")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index f9b48d039c5..e2ab69d1306 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -1658,24 +1658,6 @@ following problems:
1658@end enumerate\n") 1658@end enumerate\n")
1659 (license license:gpl3+))) 1659 (license license:gpl3+)))
1660 1660
1661(define-public r-tsne
1662 (package
1663 (name "r-tsne")
1664 (version "0.1-3.1")
1665 (source
1666 (origin
1667 (method url-fetch)
1668 (uri (cran-uri "tsne" version))
1669 (sha256
1670 (base32
1671 "126q6ha25wx9mdsfngzkyp8j2fj81ri1knjdq1iyvwx3q1dwdaql"))))
1672 (build-system r-build-system)
1673 (home-page "https://github.com/jdonaldson/rtsne/")
1674 (synopsis "t-Distributed Stochastic Neighbor Embedding for R")
1675 (description
1676 "This package provides a pure R implementation of the t-SNE algorithm.")
1677 (license license:gpl2+)))
1678
1679(define-public r-tgconfig 1661(define-public r-tgconfig
1680 (let ((commit "15cf199436ae0b2ac0006b2ca7f0aeeb5c9d4445") 1662 (let ((commit "15cf199436ae0b2ac0006b2ca7f0aeeb5c9d4445")
1681 (revision "1")) 1663 (revision "1"))