guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 97eea7404088be31df2caf7dd0d42ac265737217
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 16:00:18 2026 +0100
gnu: r-ranger: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-ranger): Move from here...
* gnu/packages/cran.scm (r-ranger): ...to here.
Change-Id: Ic78a424c261eae69f4445c8da12f557a061dac40
---
gnu/packages/cran.scm | 24 ++++++++++++++++++++++++
gnu/packages/statistics.scm | 24 ------------------------
2 files changed, 24 insertions(+), 24 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index f3c4533771..8e41978b2e 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6449,6 +6449,30 @@ based on a forest of trees using random inputs, for
classification and
regression.")
(license license:gpl2+)))
+(define-public r-ranger
+ (package
+ (name "r-ranger")
+ (version "0.18.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "ranger" version))
+ (sha256
+ (base32
+ "0kdlfnv0j1if8nnygf6pl2hxwvdyi4d1vrvjpaxr48nrgk3f9icl"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ (list r-matrix r-rcpp r-rcppeigen))
+ (native-inputs (list r-pheatmap r-survival r-testthat r-tibble))
+ (home-page "https://github.com/imbs-hl/ranger")
+ (synopsis "Fast implementation of random forests")
+ (description
+ "This package provides a fast implementation of Random Forests,
+particularly suited for high dimensional data. Ensembles of classification,
+regression, survival and probability prediction trees are supported. Data
+from genome-wide association studies can be analyzed efficiently.")
+ (license license:gpl3)))
+
(define-public r-rcolorbrewer
(package
(name "r-rcolorbrewer")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 58e61d4506..39dd30e17f 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2878,30 +2878,6 @@ algorithms (@code{tclust}) based on trimming and
including some graphical
diagnostic tools (@code{ctlcurves} and @code{DiscrFact}).")
(license license:gpl3)))
-(define-public r-ranger
- (package
- (name "r-ranger")
- (version "0.18.0")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "ranger" version))
- (sha256
- (base32
- "0kdlfnv0j1if8nnygf6pl2hxwvdyi4d1vrvjpaxr48nrgk3f9icl"))))
- (build-system r-build-system)
- (propagated-inputs
- (list r-matrix r-rcpp r-rcppeigen))
- (native-inputs (list r-pheatmap r-survival r-testthat r-tibble))
- (home-page "https://github.com/imbs-hl/ranger")
- (synopsis "Fast implementation of random forests")
- (description
- "This package provides a fast implementation of Random Forests,
-particularly suited for high dimensional data. Ensembles of classification,
-regression, survival and probability prediction trees are supported. Data from
-genome-wide association studies can be analyzed efficiently.")
- (license license:gpl3)))
-
(define-public r-tsne
(package
(name "r-tsne")