diff options
author | Navid Afkhami <navid.afkhami@mdc-berlin.de> | 2023-06-23 13:48:54 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-03 09:57:56 +0200 |
commit | 6398fa786032ad0919267019e260082354980635 (patch) | |
tree | d53a31d1cb5d975e311f961037920cb4b0365236 | |
parent | 896c8723065a062b1d4063bb6460a646cf8c290e (diff) | |
download | guix-6398fa786032ad0919267019e260082354980635.tar.gz |
gnu: Add r-dunn-test.
* gnu/packages/cran.scm (r-dunn-test): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index fc2c4afa89..736a0aefde 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -27358,6 +27358,31 @@ forest) is fit on the kernel matrix of a subset of the training data.") classes into dummy/indicator variables.") (license license:gpl2+))) +(define-public r-dunn-test + (package + (name "r-dunn-test") + (version "1.3.5") + (source (origin + (method url-fetch) + (uri (cran-uri "dunn.test" version)) + (sha256 + (base32 + "0lqwvyl3pyygfc73nf81gzw3zl3w43r7ki0yw2dgrzhkpb2iji4a")))) + (properties `((upstream-name . "dunn.test"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/package=dunn.test") + (synopsis "Dunn's test of multiple comparisons using rank sums") + (description + "Dunn's test computes stochastic dominance & reports pairwise comparisons. +This is done following a Kruskal-Wallis test (Kruskal and Wallis, 1952). It +employs Dunn's z-test-statistic approximations for rank statistics, conducting +k(k-1)/2 comparisons. The null hypothesis assumes that the probability of a +randomly selected value from the first group being larger than one from the +second group is one half, similar to the Wilcoxon-Mann-Whitney test. Dunn's +test serves as a test for median difference and takes into account tied +ranks.") + (license license:gpl2))) + (define-public r-acrm (package (name "r-acrm") |