deno.land / x / simplestatistic@v7.7.1 / test / wilcoxon_rank_sum.test.js

wilcoxon_rank_sum.test.js
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/* eslint no-shadow: 0 */
const test = require("tap").test;const ss = require("../");
test("wilcoxonRankSum", function (t) { t.test("x is dominated by y", function (t) { const x = [1, 2, 3]; const y = [4, 5, 6]; const res = ss.wilcoxonRankSum(x, y); t.equal(res, 6); t.end(); });
t.test("y is dominated by x", function (t) { const x = [4, 5, 6]; const y = [1, 2, 3]; const res = ss.wilcoxonRankSum(x, y); t.equal(res, 15); t.end(); });
t.test("x and y are interleaved", function (t) { const x = [1, 3, 5]; const y = [2, 4, 6]; const res = ss.wilcoxonRankSum(x, y); t.equal(res, 9); t.end(); });
t.test("x and y overlap at one value", function (t) { const x = [1, 2, 3]; const y = [3, 4, 5]; const res = ss.wilcoxonRankSum(x, y); t.equal(res, 6.5); t.end(); });
t.test("trailing tied ranks are handled correctly", function (t) { const x = [1, 2, 3]; const y = [3]; const res = ss.wilcoxonRankSum(x, y); t.equal(res, 6.5); t.end(); });
t.test("empty input throws", function (t) { const message = "Neither sample can be empty"; t.throws(function () { ss.wilcoxonRankSum([], []); }, message); t.throws(function () { ss.wilcoxonRankSum([1, 2, 3], []); }, message); t.throws(function () { ss.wilcoxonRankSum([], [1, 2, 3]); }, message); t.end(); });
t.end();});
simplestatistic

Version Info

Tagged at
2 years ago