diff options
author | Peter Lo <peterloleungyau@gmail.com> | 2020-06-28 17:29:42 +0800 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-09-11 11:01:58 +0200 |
commit | 466ccbcad620507bea46ed6fbff483f25aebd403 (patch) | |
tree | 546ff6352180a269da50e13c181636ee980d0c9f /gnu | |
parent | 38c2eb31bb11090fee73420d6c6aaa311be6231a (diff) | |
download | guix-466ccbcad620507bea46ed6fbff483f25aebd403.tar guix-466ccbcad620507bea46ed6fbff483f25aebd403.tar.gz |
gnu: Add r-exactranktests.
* gnu/packages/cran.scm (r-exactranktests): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index cc1069e560..996d61db2f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -23474,3 +23474,24 @@ Springer.") of right-censored survival data. These extend the methods available in the @code{survival} package.") (license license:gpl2))) + +(define-public r-exactranktests + (package + (name "r-exactranktests") + (version "0.8-31") + (source + (origin + (method url-fetch) + (uri (cran-uri "exactRankTests" version)) + (sha256 + (base32 + "1154dkcid3njhamdp87qs9bnx7l8bdqkcjsds9q9f2xmizs9x8gw")))) + (properties + `((upstream-name . "exactRankTests"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/exactRankTests/") + (synopsis "Exact distributions for rank and permutation tests") + (description + "This package computes exact conditional p-values and quantiles using an +implementation of the Shift-Algorithm by Streitberg & Roehmel.") + (license license:gpl2+))) |