File: wilcoxon.mac

package info (click to toggle)
maxima-sage 5.35.1-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 122,828 kB
  • ctags: 58,669
  • sloc: lisp: 337,392; fortran: 14,666; perl: 14,351; tcl: 11,056; sh: 4,532; makefile: 1,409; ansic: 471; awk: 24; sed: 10
file content (56 lines) | stat: -rw-r--r-- 1,968 bytes parent folder | download | duplicates (12)
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
/* copyright 2007 by Robert Dodier
 * I release this file under the terms of the GNU General Public License.
 */

wilcoxon (X, C) := block ([X1, X0, X10, R, n1, n0, Rsum, W],

    X1 : X [C = 1, 1],
    X0 : X [C = 0, 1],
    n1 : nrows (X1),
    n0 : nrows (X0),
    if n1 = 0 or n0 = 0
        then 1/2
        else
           (X10 : append (elements (X1), elements (X0)),
            R : ranks (X10),
            Rsum : sum (R[i], i, 1, n1),
            W : (Rsum - n1 * (n1 + 1) / 2) / (n1 * n0)));

ranks (L) := block ([n : length (L), x, dx, runs, %ranks, L1, L2], 
    makelist ([L[i], i], i, 1, n),
    sort (%%, lambda ([x, y], orderlessp (first (x), first (y)))),
    [L1 : map (first, %%), L2 : map (second, %%)],
    makelist ([L2[i], i], i, 1, n),
    sort (%%, lambda ([x, y], orderlessp (first (x), first (y)))),
    %ranks : map (second, %%),
    runs : find_runs_nontrivial (L1),
    for e in runs do block ([avg_rank],
        avg_rank : (1/second(e)) * sum (%ranks [L2[i]], i, first(e), first(e) + second(e) - 1),
        for i : first(e) thru first(e) + second(e) - 1 do %ranks [L2[i]] : avg_rank),
    %ranks);

find_runs (x) := 
    if x = [] then []
    else block ([dx, ii, di],
        dx : makelist (x[i] - x[i - 1], i, 2, length (x)),
        ii : cons (1, 1 + ev (sublist_indices (dx, lambda ([x], x # 0 and x # 0.0 and x # 0b0)))),
        di : endcons (length (x) + 1 - last (ii), makelist (ii[i + 1] - ii[i], i, 1, length (ii) - 1)),
        makelist ([ii[i], di[i]], i, 1, length (di)));

find_runs_nontrivial (x) :=
   (find_runs (x),
    sublist (%%, lambda ([e], second (e) > 1)));

permute (L, p) :=
    map
       (second,
        sort
           (map (lambda ([x, i], [i, x]), L, p),
            lambda ([a, b], orderlessp (first(a),  first(b)))));

inverse_permutation (p) :=
    map
       (second,
        sort
           (makelist ([p[i], i], i, 1, length (p)),
            lambda ([a, b], orderlessp (first(a), first(b)))));