3200
|
1 ## Copyright (C) 1995, 1996, 1997 Kurt Hornik |
3426
|
2 ## |
3922
|
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 |
3200
|
7 ## the Free Software Foundation; either version 2, or (at your option) |
|
8 ## any later version. |
3426
|
9 ## |
3922
|
10 ## Octave is distributed in the hope that it will be useful, but |
3200
|
11 ## WITHOUT ANY WARRANTY; without even the implied warranty of |
|
12 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
3426
|
13 ## General Public License for more details. |
|
14 ## |
3200
|
15 ## You should have received a copy of the GNU General Public License |
3922
|
16 ## along with Octave; see the file COPYING. If not, write to the Free |
5307
|
17 ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
18 ## 02110-1301, USA. |
3200
|
19 |
3454
|
20 ## -*- texinfo -*- |
|
21 ## @deftypefn {Function File} {[@var{pval}, @var{t}, @var{df}] =} t_test_2 (@var{x}, @var{y}, @var{alt}) |
3200
|
22 ## For two samples x and y from normal distributions with unknown means |
|
23 ## and unknown equal variances, perform a two-sample t-test of the null |
3454
|
24 ## hypothesis of equal means. Under the null, the test statistic |
|
25 ## @var{t} follows a Student distribution with @var{df} degrees of |
|
26 ## freedom. |
3200
|
27 ## |
3454
|
28 ## With the optional argument string @var{alt}, the alternative of |
|
29 ## interest can be selected. If @var{alt} is @code{"!="} or |
|
30 ## @code{"<>"}, the null is tested against the two-sided alternative |
|
31 ## @code{mean (@var{x}) != mean (@var{y})}. If @var{alt} is @code{">"}, |
|
32 ## the one-sided alternative @code{mean (@var{x}) > mean (@var{y})} is |
3457
|
33 ## used. Similarly for @code{"<"}, the one-sided alternative @code{mean |
|
34 ## (@var{x}) < mean (@var{y})} is used. The default is the two-sided |
|
35 ## case. |
3200
|
36 ## |
3454
|
37 ## The p-value of the test is returned in @var{pval}. |
3426
|
38 ## |
3200
|
39 ## If no output argument is given, the p-value of the test is displayed. |
3454
|
40 ## @end deftypefn |
3426
|
41 |
5428
|
42 ## Author: KH <Kurt.Hornik@wu-wien.ac.at> |
3456
|
43 ## Description: Student's two-sample t test |
3200
|
44 |
|
45 function [pval, t, df] = t_test_2 (x, y, alt) |
3426
|
46 |
3200
|
47 if ((nargin < 2) || (nargin > 3)) |
3456
|
48 usage ("[pval, t, df] = t_test_2 (x, y, alt)"); |
3200
|
49 endif |
3426
|
50 |
4030
|
51 if (! (isvector (x) && isvector (y))) |
3456
|
52 error ("t_test_2: both x and y must be vectors"); |
3200
|
53 endif |
|
54 |
|
55 n_x = length (x); |
|
56 n_y = length (y); |
|
57 df = n_x + n_y - 2; |
|
58 mu_x = sum (x) / n_x; |
|
59 mu_y = sum (y) / n_y; |
|
60 v = sumsq (x - mu_x) + sumsq (y - mu_y); |
3457
|
61 t = (mu_x - mu_y) * sqrt ((n_x * n_y * df) / (v * (n_x + n_y))); |
3200
|
62 cdf = t_cdf (t, df); |
|
63 |
|
64 if (nargin == 2) |
|
65 alt = "!="; |
|
66 endif |
|
67 |
5443
|
68 if (! ischar (alt)) |
3456
|
69 error ("t_test_2: alt must be a string"); |
3200
|
70 endif |
|
71 if (strcmp (alt, "!=") || strcmp (alt, "<>")) |
|
72 pval = 2 * min (cdf, 1 - cdf); |
|
73 elseif strcmp (alt, ">") |
|
74 pval = 1 - cdf; |
|
75 elseif strcmp (alt, "<") |
|
76 pval = cdf; |
|
77 else |
3456
|
78 error ("t_test_2: option %s not recognized", alt); |
3200
|
79 endif |
|
80 |
|
81 if (nargout == 0) |
3456
|
82 printf (" pval: %g\n", pval); |
3200
|
83 endif |
|
84 |
|
85 endfunction |