mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add r-paramhelpers.
* gnu/packages/cran.scm (r-paramhelpers): New variable.
This commit is contained in:
parent
eb55223e28
commit
828f75ce75
1 changed files with 24 additions and 0 deletions
|
@ -2410,6 +2410,30 @@ (define-public r-paralleldist
|
|||
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")
|
||||
|
|
Loading…
Reference in a new issue