gnu: Add r-additivitytests.

* gnu/packages/cran.scm (r-additivitytests): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-14 13:30:50 +01:00
parent 5458490ebb
commit 94ecf71344
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -18405,3 +18405,24 @@ (define-public r-tolerance
and multivariate regression), and analysis of variance tolerance intervals.
Visualizations are also available for most of these settings.")
(license license:gpl2+)))
(define-public r-additivitytests
(package
(name "r-additivitytests")
(version "1.1-4")
(source
(origin
(method url-fetch)
(uri (cran-uri "additivityTests" version))
(sha256
(base32
"048ds90wqjdjy1nyhna3m06asdklbh8sx1n556kss2j1r1pma1sw"))))
(properties
`((upstream-name . "additivityTests")))
(build-system r-build-system)
(home-page "https://github.com/simecek/additivityTests")
(synopsis "Additivity tests in the two way Anova with single sub-class numbers")
(description
"This package provides an implementation of the Tukey, Mandel,
Johnson-Graybill, LBI, Tusell and modified Tukey non-additivity tests.")
(license license:gpl3)))