diff options
author | Peter Lo <peterloleungyau@gmail.com> | 2020-06-29 13:50:31 +0800 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-09-11 18:29:48 +0200 |
commit | 26beaffa2dcffe88095291bea7a13ddf7ad5a537 (patch) | |
tree | 837c1487d8ad71b78169b6c6b621cd62c88a6fde | |
parent | fb76feaf7eac49d954adc02ca458c52c966de8dd (diff) | |
download | guix-26beaffa2dcffe88095291bea7a13ddf7ad5a537.tar.gz |
gnu: Add r-dicedesign.
* gnu/packages/cran.scm (r-dicedesign): New variable. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 769d8e6d7a..90052452bc 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -23768,3 +23768,23 @@ and regression metrics (e.g., RMSE).") "This package provides classes and functions to create and summarize different types of resampling objects (e.g. bootstrap, cross-validation).") (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))) |