diff options
| author | Ricardo Wurmus <rekado@elephly.net> | 2026-02-16 17:05:23 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-03-07 11:57:22 +0100 |
| commit | 559bc2611fbfe54fb2149a8fe480f3339b945fe6 (patch) | |
| tree | c238abc41935b451605c2961b6e2051e68da4f1c | |
| parent | ef1fbeb61a9c829a53aefea338080e595dc3afbd (diff) | |
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
| -rw-r--r-- | gnu/packages/cran.scm | 27 | ||||
| -rw-r--r-- | 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 a679a521988..efcb7d3dc0f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7537,6 +7537,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 3a1c92aac36..661bc0f1b3e 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") |
