gnu: Add r-ez.

* gnu/packages/cran.scm (r-ez): New variable.
This commit is contained in:
Lars-Dominik Braun 2021-03-12 14:09:45 +01:00
parent 8a51be3cdd
commit 23bfd152c2
No known key found for this signature in database
GPG key ID: 421377011A378446

View file

@ -27313,3 +27313,43 @@ (define-public r-prereg
"This package provides a collection of templates to author
preregistration documents for scientific studies in PDF format.")
(license license:gpl3)))
(define-public r-ez
(package
(name "r-ez")
(version "4.4-0")
(source
(origin
(method url-fetch)
(uri (cran-uri "ez" version))
(sha256
(base32
"0a58s94x576dfz7wcbivrr2hmdh5x1vy16zwkqp9fmdzqx38pagq"))))
(properties `((upstream-name . "ez")))
(build-system r-build-system)
(propagated-inputs
`(("r-car" ,r-car)
("r-ggplot2" ,r-ggplot2)
("r-lme4" ,r-lme4)
("r-mass" ,r-mass)
("r-matrix" ,r-matrix)
("r-mgcv" ,r-mgcv)
("r-plyr" ,r-plyr)
("r-reshape2" ,r-reshape2)
("r-scales" ,r-scales)
("r-stringr" ,r-stringr)))
(home-page "https://github.com/mike-lawrence/ez")
(synopsis "Easy Analysis and Visualization of Factorial Experiments")
(description
"Facilitates easy analysis of factorial experiments, including purely
within-Ss designs (a.k.a. \"repeated measures\"), purely between-Ss designs,
and mixed within-and-between-Ss designs. The functions in this package aim to
provide simple, intuitive and consistent specification of data analysis and
visualization. Visualization functions also include design visualization for
pre-analysis data auditing, and correlation matrix visualization. Finally,
this package includes functions for non-parametric analysis, including
permutation tests and bootstrap resampling. The bootstrap function obtains
predictions either by cell means or by more advanced/powerful mixed effects
models, yielding predictions and confidence intervals that may be easily
visualized at any level of the experiment's design.")
(license license:gpl2+)))