gnu: Add r-dicedesign.

* gnu/packages/cran.scm (r-dicedesign): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Peter Lo 2020-06-29 13:50:31 +08:00 committed by Ricardo Wurmus
parent fb76feaf7e
commit 26beaffa2d
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -23768,3 +23768,23 @@ and regression metrics (e.g., RMSE).")
"This package provides classes and functions to create and summarize "This package provides classes and functions to create and summarize
different types of resampling objects (e.g. bootstrap, cross-validation).") different types of resampling objects (e.g. bootstrap, cross-validation).")
(license license:gpl2))) (license license:gpl2)))
(define-public r-dicedesign
(package
(name "r-dicedesign")
(version "1.8-1")
(source
(origin
(method url-fetch)
(uri (cran-uri "DiceDesign" version))
(sha256
(base32
"11s1m543kxd6gv4amh8z6pph1n67sj9sfwm6hjy83wfs65syf5vp"))))
(properties `((upstream-name . "DiceDesign")))
(build-system r-build-system)
(home-page "http://dice.emse.fr/")
(synopsis "Designs of computer experiments")
(description
"This package provides tools to create some specific @code{Space-Filling
Design} (SFD) and to test their quality.")
(license license:gpl3)))