diff options
author | Arne Babenhauserheide <arne_bab@web.de> | 2020-08-04 16:05:26 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-08-04 16:11:43 +0200 |
commit | cbfb8812f105803f320e887b548a31fcd9346075 (patch) | |
tree | b260be9962e665beeec90378e0132b0c369c539b /gnu/packages | |
parent | 1a9acdef399d26508a209670d06490c411635437 (diff) | |
download | guix-cbfb8812f105803f320e887b548a31fcd9346075.tar.gz guix-cbfb8812f105803f320e887b548a31fcd9346075.zip |
gnu: Add r-dae.
* gnu/packages/cran.scm (r-dae): New variable.
Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 40 |
1 files changed, 40 insertions, 0 deletions
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 <brettg@gnu.org> ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com> ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz> +;;; Copyright © 2019 Arne Babenhauserheide <arne_bab@web.de> ;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com> ;;; Copyright © 2020 Danjela Lura <danielaluraa@gmail.com> ;;; Copyright © 2020 Naga Malleswari <nagamalli@riseup.net> @@ -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") |