From cbfb8812f105803f320e887b548a31fcd9346075 Mon Sep 17 00:00:00 2001 From: Arne Babenhauserheide Date: Tue, 4 Aug 2020 16:05:26 +0200 Subject: gnu: Add r-dae. * gnu/packages/cran.scm (r-dae): New variable. Co-authored-by: Ricardo Wurmus Signed-off-by: Ricardo Wurmus --- gnu/packages/cran.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'gnu/packages/cran.scm') diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5ede11a4e3..81fa72f3f2 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -17,6 +17,7 @@ ;;; Copyright © 2018, 2019 Brett Gilio ;;; Copyright © 2019 Nicolò Balzarotti ;;; Copyright © 2019 Wiktor Żelazny +;;; Copyright © 2019 Arne Babenhauserheide ;;; Copyright © 2020 Todor Kondić ;;; Copyright © 2020 Danjela Lura ;;; Copyright © 2020 Naga Malleswari @@ -15794,6 +15795,45 @@ contributions in a concise graphical way. This package works for classification and regression models.") (license license:gpl3))) +(define-public r-dae + (package + (name "r-dae") + (version "3.0-32") + (source + (origin + (method url-fetch) + (uri (cran-uri "dae" version)) + (sha256 + (base32 + "0syv6kjnicb0x7sxbaavxhiv9mcqvc2zzbf4wyar933q3hzrxnrd")))) + (build-system r-build-system) + (propagated-inputs + `(("r-ggplot2" ,r-ggplot2) + ("r-plyr" ,r-plyr))) + (native-inputs + `(("r-r-rsp" ,r-r-rsp))) ; vignette builder + (home-page "http://chris.brien.name") + (synopsis "Functions useful in the design and ANOVA of experiments") + (description + "This package provides functions useful in the design and ANOVA of +experiments. The content falls into the following groupings: + +@enumerate +@item data, +@item factor manipulation functions, +@item design functions, +@item ANOVA functions, +@item matrix functions, +@item projector and canonical efficiency functions, and +@item miscellaneous functions. +@end enumerate + +There is a vignette called @code{DesignNotes} describing how to use the design +functions for randomizing and assessing designs. The ANOVA functions +facilitate the extraction of information when the @code{Error} function has +been used in the call to @code{aov}.") + (license license:gpl2))) + (define-public r-dalex (package (name "r-dalex") -- cgit v1.2.3