diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 16:45:50 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-13 22:41:37 +0100 |
commit | ae07172c659796f07d9ad878c33be6a7c79ec6ee (patch) | |
tree | 2966a046e49c980bed272eb3cf3e1e2b9d362d9b /gnu/packages/cran.scm | |
parent | 84822497c2b7854ab16c35599c11edba3fa84b7a (diff) |
gnu: Add r-abcrlda.
* gnu/packages/cran.scm (r-abcrlda): New variable.
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 c3b9a56c81..6432af9392 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16327,3 +16327,26 @@ integer linear programming} (MILP) and other related problems.") Flux Balance Analysis and informative analysis of the data generated during simulation.") (license license:gpl2))) + +(define-public r-abcrlda + (package + (name "r-abcrlda") + (version "1.0.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "abcrlda" version)) + (sha256 + (base32 + "0j29ifsvmxfx2g6v4bpbb4s6miwfpf4vlkpbgj6f2q078s4clc85")))) + (properties `((upstream-name . "abcrlda"))) + (build-system r-build-system) + (home-page "https://ieeexplore.ieee.org/document/8720003/") + (synopsis "Asymptotically bias-corrected regularized linear discriminant analysis") + (description + "This package offers methods to perform @dfn{asymptotically +bias-corrected regularized linear discriminant analysis} (ABC_RLDA) for +cost-sensitive binary classification. The bias-correction is an estimate of +the bias term added to regularized discriminant analysis that minimizes the +overall risk.") + (license license:gpl3))) |