guix_mirror_bot pushed a commit to branch r-team
in repository guix.
commit c6e96754bd3bd56e55a7c482eb490d0d07689684
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Mon Mar 2 09:39:01 2026 +0100
gnu: Add r-doe-base.
* gnu/packages/cran.scm (r-doe-base): New variable.
Change-Id: Ic0a57453a3281d020025ad700c8a5295cddff97e
---
gnu/packages/cran.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index ed2b15765e..3bda62ece7 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -3215,6 +3215,35 @@ edition of the book \"Data Mining with R, learning with
case studies\"
by Luis Torgo, published by CRC Press.")
(license license:gpl2+)))
+(define-public r-doe-base
+ (package
+ (name "r-doe-base")
+ (version "1.2-5")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "DoE.base" version))
+ (sha256
+ (base32 "1fglnzhjygpq6y967ffw7z7p7c2fiy72ama68lnpkvvvzqm4xk2r"))))
+ (properties `((upstream-name . "DoE.base")))
+ (build-system r-build-system)
+ (propagated-inputs (list r-combinat
+ r-conf-design
+ r-lattice
+ r-mass
+ r-numbers
+ r-partitions
+ r-vcd))
+ (home-page "https://prof.bht-berlin.de/groemping/DoE/")
+ (synopsis
+ "Full factorials, orthogonal arrays and base utilities for DoE packages")
+ (description
+ "This package creates full factorial experimental designs and designs
+based on orthogonal arrays for (industrial) experiments. It provides diverse
+quality criteria and utility functions for the class design, which is also
+used by other packages for designed experiments.")
+ (license license:gpl2+)))
+
(define-public r-domc
(package
(name "r-domc")