]> Creatis software - CreaPhase.git/blob - octave_packages/m/statistics/tests/wilcoxon_test.m
update packages
[CreaPhase.git] / octave_packages / m / statistics / tests / wilcoxon_test.m
1 ## Copyright (C) 1995-2012 Kurt Hornik
2 ##
3 ## This file is part of Octave.
4 ##
5 ## Octave is free software; you can redistribute it and/or modify it
6 ## under the terms of the GNU General Public License as published by
7 ## the Free Software Foundation; either version 3 of the License, or (at
8 ## your option) any later version.
9 ##
10 ## Octave is distributed in the hope that it will be useful, but
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 ## General Public License for more details.
14 ##
15 ## You should have received a copy of the GNU General Public License
16 ## along with Octave; see the file COPYING.  If not, see
17 ## <http://www.gnu.org/licenses/>.
18
19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {[@var{pval}, @var{z}] =} wilcoxon_test (@var{x}, @var{y}, @var{alt})
21 ## For two matched-pair sample vectors @var{x} and @var{y}, perform a
22 ## Wilcoxon signed-rank test of the null hypothesis PROB (@var{x} >
23 ## @var{y}) == 1/2.  Under the null, the test statistic @var{z}
24 ## approximately follows a standard normal distribution when @var{n} > 25.
25 ##
26 ## @strong{Caution:} This function assumes a normal distribution for @var{z}
27 ## and thus is invalid for @var{n} @leq{} 25.
28 ##
29 ## With the optional argument string @var{alt}, the alternative of
30 ## interest can be selected.  If @var{alt} is @code{"!="} or
31 ## @code{"<>"}, the null is tested against the two-sided alternative
32 ## PROB (@var{x} > @var{y}) != 1/2.  If alt is @code{">"}, the one-sided
33 ## alternative PROB (@var{x} > @var{y}) > 1/2 is considered.  Similarly
34 ## for @code{"<"}, the one-sided alternative PROB (@var{x} > @var{y}) <
35 ## 1/2 is considered.  The default is the two-sided case.
36 ##
37 ## The p-value of the test is returned in @var{pval}.
38 ##
39 ## If no output argument is given, the p-value of the test is displayed.
40 ## @end deftypefn
41
42 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
43 ## Description: Wilcoxon signed-rank test
44
45 function [pval, z] = wilcoxon_test (x, y, alt)
46
47   if (nargin < 2 || nargin > 3)
48     print_usage ();
49   endif
50
51   if (! (isvector (x) && isvector (y) && (length (x) == length (y))))
52     error ("wilcoxon_test: X and Y must be vectors of the same length");
53   endif
54
55   n = length (x);
56   x = reshape (x, 1, n);
57   y = reshape (y, 1, n);
58   d = x - y;
59   d = d (find (d != 0));
60   n = length (d);
61   if (n > 25)
62     r = ranks (abs (d));
63     z = sum (r (find (d > 0)));
64     z = ((z - n * (n + 1) / 4) / sqrt (n * (n + 1) * (2 * n + 1) / 24));
65   else
66     error ("wilcoxon_test: implementation requires more than 25 different pairs");
67   endif
68
69   cdf = stdnormal_cdf (z);
70
71   if (nargin == 2)
72     alt = "!=";
73   endif
74
75   if (! ischar (alt))
76     error("wilcoxon_test: ALT must be a string");
77   elseif (strcmp (alt, "!=") || strcmp (alt, "<>"))
78     pval = 2 * min (cdf, 1 - cdf);
79   elseif (strcmp (alt, ">"))
80     pval = 1 - cdf;
81   elseif (strcmp (alt, "<"))
82     pval = cdf;
83   else
84     error ("wilcoxon_test: option %s not recognized", alt);
85   endif
86
87   if (nargout == 0)
88     printf ("  pval: %g\n", pval);
89   endif
90
91 endfunction