From 5c00d9f29d48044f4651365048361596b5613b22 Mon Sep 17 00:00:00 2001 From: Spencer King Date: Wed, 5 Mar 2025 23:59:17 -0600 Subject: [PATCH] gnu: Add r-rrf. * gnu/packages/cran.scm (r-rrf): New variable. Change-Id: Ifaa0867d357eb1bb125182909344f3144ca9c675 --- gnu/packages/cran.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 81938b2dadfb0f42a92f5039bd30f7c4b38c41e4..d83589afbd3100ddb2cd1c4bbeb4076decccbf18 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -44149,6 +44149,31 @@ fast interface using subsampling and confidence regions for variable importance.") (license license:gpl3+))) +(define-public r-rrf + (package + (name "r-rrf") + (version "1.9.4.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "RRF" version)) + (sha256 + (base32 "05sswrqjrwyyk9aha7fvvw78iymgv89y0asl5cqfl9fg7gsw9ghs")))) + (properties `((upstream-name . "RRF"))) + (build-system r-build-system) + (native-inputs (list gfortran)) + (home-page "https://sites.google.com/site/houtaodeng/rrf") + (synopsis "Regularized random forest") + (description + "Feature Selection with Regularized Random Forest. This package is based +on the @code{randomForest} package by Andy Liaw. The key difference is the +@code{RRF()} function that builds a regularized random forest. Fortran +original by Leo Breiman and Adele Cutler, R port by Andy Liaw and Matthew +Wiener, Regularized random forest for classification by Houtao Deng, +Regularized random forest for regression by Xin Guan. Reference: Houtao +Deng (2013) }.") + (license license:gpl2+))) + (define-public r-contfrac (package (name "r-contfrac")