diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-06-22 12:39:51 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-06-22 12:39:51 +0200 |
commit | 5c1aab1dc152ea8327a74a459417bc4d780993e7 (patch) | |
tree | 43dec430ae13b960001d12d26b7de9d8f05e469e /gnu/packages/cran.scm | |
parent | 6c9834f59f54abdd07ed502a1a7194e592fc7f9a (diff) | |
download | guix-5c1aab1dc152ea8327a74a459417bc4d780993e7.tar.gz |
gnu: r-boruta: Move to (gnu packages cran).
* gnu/packages/statistics.scm (r-boruta): Move this variable from here... * gnu/packages/cran.scm (r-boruta): ...to here.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ebe9e861ce..dc181d435a 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -22143,3 +22143,26 @@ multi-state models.") "This package creates scatterpie plots, especially useful for plotting pies on a map.") (license license:artistic2.0))) + +(define-public r-boruta + (package + (name "r-boruta") + (version "7.0.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "Boruta" version)) + (sha256 + (base32 + "0y2w4wb45kfnzrxcrdsiwgal9fsnlr3wad1sqdc70qv8gp921xbg")))) + (properties `((upstream-name . "Boruta"))) + (build-system r-build-system) + (propagated-inputs `(("r-ranger" ,r-ranger))) + (home-page "https://gitlab.com/mbq/Boruta/") + (synopsis "Wrapper algorithm for all relevant feature selection") + (description + "This package provides an all relevant feature selection wrapper +algorithm. It finds relevant features by comparing original attributes' +importance with importance achievable at random, estimated using their +permuted copies (shadows).") + (license license:gpl2+))) |