guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit 7fde72f73300bc54ff20cd00eb077ec67ef873da
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Feb 16 15:40:08 2026 +0100
gnu: r-randomforest: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-randomforest): Move from here...
* gnu/packages/cran.scm (r-randomforest): ...to here.
Change-Id: I74f2cdf3f9596da6d5925640a1d46a2942cf3b5a
---
gnu/packages/cran.scm | 23 +++++++++++++++++++++++
gnu/packages/statistics.scm | 22 ----------------------
2 files changed, 23 insertions(+), 22 deletions(-)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 6f0c7dac83..f3c4533771 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -6426,6 +6426,29 @@ private members, and they support inheritance, even when
the classes are
defined in different packages.")
(license license:expat)))
+(define-public r-randomforest
+ (package
+ (name "r-randomforest")
+ (version "4.7-1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "randomForest" version))
+ (sha256
+ (base32
+ "04aan0wzkfdl2nh4z8fls7qhgz80xl7px7c4282dbfj8nqkk5lxa"))))
+ (properties `((upstream-name . "randomForest")))
+ (build-system r-build-system)
+ (home-page "https://www.stat.berkeley.edu/~breiman/RandomForests/")
+ (native-inputs (list gfortran))
+ (synopsis
+ "Breiman and Cutler's random forests for classification and regression")
+ (description
+"This package provides the Breiman and Cutler's random forests algorithm,
+based on a forest of trees using random inputs, for classification and
+regression.")
+ (license license:gpl2+)))
+
(define-public r-rcolorbrewer
(package
(name "r-rcolorbrewer")
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index 8094ed51aa..58e61d4506 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -2631,28 +2631,6 @@ dataset in O(N log N) time using Arya and Mount's ANN
library. Provides
approximate, exact searches, fixed radius searches, bd and kb trees.")
(license license:gpl3+)))
-(define-public r-randomforest
- (package
- (name "r-randomforest")
- (version "4.7-1.2")
- (source
- (origin
- (method url-fetch)
- (uri (cran-uri "randomForest" version))
- (sha256
- (base32
- "04aan0wzkfdl2nh4z8fls7qhgz80xl7px7c4282dbfj8nqkk5lxa"))))
- (properties `((upstream-name . "randomForest")))
- (build-system r-build-system)
- (home-page "https://www.stat.berkeley.edu/~breiman/RandomForests/")
- (native-inputs
- (list gfortran))
- (synopsis "Breiman and Cutler's random forests for classification and
regression")
- (description
-"This package provides the Breiman and Cutler's random forests algorithm,
based on a
-forest of trees using random inputs, for classification and regression.")
- (license license:gpl2+)))
-
(define-public r-robustbase
(package
(name "r-robustbase")