diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2023-06-23 13:48:45 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-03 09:43:43 +0200 |
commit | 828f75ce75a013b56b51910b9acae02492c015a2 (patch) | |
tree | a1a9642a296547e4738455d9faccd1d478ea705f | |
parent | eb55223e28db853f34b4c80c0045ddf5199abd7b (diff) | |
download | guix-828f75ce75a013b56b51910b9acae02492c015a2.tar.gz |
gnu: Add r-paramhelpers.
* gnu/packages/cran.scm (r-paramhelpers): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 606fd6a011..28c1126e0d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -2410,6 +2410,30 @@ extends the signature of the @code{dist} function and uses the same parameter naming conventions as distance methods of existing R packages.") (license license:gpl2+))) +(define-public r-paramhelpers + (package + (name "r-paramhelpers") + (version "1.14.1") + (source (origin + (method url-fetch) + (uri (cran-uri "ParamHelpers" version)) + (sha256 + (base32 + "088sl3az4ysq8cyw82brdn9xm5yy7rqskxih462d1m5hi62gyl04")))) + (properties `((upstream-name . "ParamHelpers"))) + (build-system r-build-system) + (propagated-inputs (list r-backports r-bbmisc r-checkmate r-fastmatch)) + (home-page "https://paramhelpers.mlr-org.com") + (synopsis + "Helpers for parameters in black-box optimization, tuning, and machine learning") + (description + "This is a package for parameter description and operations in +optimization, tuning and machine learning. Parameters can be described (type, +constraints, defaults, etc.), combined to parameter sets and can in general be +programmed on. A useful @code{OptPath} object (archive) to log function +evaluations is also provided.") + (license license:bsd-2))) + (define-public r-pheatmap (package (name "r-pheatmap") |