Added support for T-TEST where the group criteria is specified as a threshold
[pspp-builds.git] / src / t-test.h
1 /* PSPP - computes sample statistics.
2    Copyright (C) 2004 Free Software Foundation, Inc.
3    Written by John Darrington <john@darrington.wattle.id.au>
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program 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 this program; if not, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 #ifndef T_TEST_H
21 #define T_TEST_H
22
23 #include "val.h"
24
25
26 enum comparison
27   {
28     CMP_LE = -2,
29     CMP_LT = -1,
30     CMP_EQ = 0,
31     CMP_GT = 1,
32     CMP_GE = 2
33   };
34
35 /* Statistics for grouped data */
36 struct group_statistics
37   {
38     /* The value of the independent variable for this group */
39     union value id;
40
41     /* The criterium matching for comparing with id */
42     enum comparison criterion;
43
44     /* The arithmetic mean */
45     double mean;
46
47     /* Population std. deviation */
48     double std_dev;
49
50     /* Sample std. deviation */
51     double s_std_dev;
52     
53     /* count */
54     double n;
55
56     double sum;
57
58     /* Sum of squares */
59     double ssq;
60
61     /* Std Err of Mean */
62     double se_mean;
63
64     /* Sum of differences */
65     double sum_diff;
66
67     /* Mean of differences */
68     double mean_diff ;
69
70     /* Running total of the Levene for this group */
71     double lz_total;
72     
73     /* Group mean of Levene */
74     double lz_mean; 
75
76   };
77
78
79 /* T-TEST private data */
80 struct t_test_proc
81 {
82   /* Stats for the `universal group' */
83   struct group_statistics ugs;
84
85   /* Number of groups */
86   int n_groups ;
87
88   /* Stats for individual groups */
89   struct group_statistics *gs;
90
91   /* The levene statistic */
92   double levene ;
93 };
94
95 #endif