gnu: Add r-perm.

* gnu/packages/cran.scm (r-perm): New variable.

Co-authored-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Peter Lo 2020-06-29 16:03:38 +08:00 committed by Ricardo Wurmus
parent 4a13770003
commit 962c7ceff5
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -24213,3 +24213,26 @@ (define-public r-mlecens
censored data with competing risks (see data set @code{menopause}). The
package also provides functions to visualize the observed data and the MLE.")
(license license:gpl2+)))
(define-public r-perm
(package
(name "r-perm")
(version "1.0-0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "perm" version))
(sha256
(base32
"0075awl66ynv10vypg63fcxk33qzvxddrp8mi4w08ysvimcyxijk"))))
(properties `((upstream-name . "perm")))
(build-system r-build-system)
(home-page "https://cran.r-project.org/web/packages/perm/")
(synopsis "Exact or asymptotic permutation tests")
(description
"This package provides several methods for performing permutation tests.
It has three main functions, to perform linear permutation tests. These tests
are tests where the test statistic is the sum of the product of a
covariate (usually group indicator) and the scores.")
;; Any version of the GPL
(license license:gpl2+)))