diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2024-05-08 03:02:46 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-05-08 15:07:04 +0200 |
commit | ab56d90bae477b053f0b6e6bf05ff90a75ff21ef (patch) | |
tree | c55c5093983668379666d3af2de8adba94c808d0 /gnu | |
parent | 4171f8bf3fcf13dba1a22ace82633973c8f951ee (diff) | |
download | guix-ab56d90bae477b053f0b6e6bf05ff90a75ff21ef.tar.gz guix-ab56d90bae477b053f0b6e6bf05ff90a75ff21ef.zip |
gnu: Add r-mlr3filters.
* gnu/packages/cran.scm (r-mlr3filters): New variable.
Change-Id: I94bd79843f5f35eeacb1ea788a76b63e9028f548
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7fc7f9bf8e..e660721b05 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -37959,6 +37959,33 @@ algorithms. Data sets are automatically added to the dictionary of tasks if mlr3 is loaded.") (license license:lgpl3))) +(define-public r-mlr3filters + (package + (name "r-mlr3filters") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "mlr3filters" version)) + (sha256 + (base32 "16z359bc2li7f35xk4g08np3r2a3127avv0ak6bn9bywcs13z6bl")))) + (properties `((upstream-name . "mlr3filters"))) + (build-system r-build-system) + (propagated-inputs (list r-backports + r-checkmate + r-data-table + r-mlr3 + r-mlr3misc + r-paradox + r-r6)) + (home-page "https://mlr3filters.mlr-org.com") + (synopsis "Filter based feature selection for mlr3") + (description + "This package extends mlr3 with filter methods for feature selection. Besides +standalone filter methods built-in methods of any machine-learning algorithm are +supported. Partial scoring of multivariate filter methods is supported.") + (license license:lgpl3))) + (define-public r-mlr3measures (package (name "r-mlr3measures") |