951e58eda4ab02744bafe6d9cf48737150a10746
[pspp-builds.git] / src / group.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 GROUP_H
21 #define GROUP_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
36 /* Statistics for grouped data */
37 struct group_statistics
38   {
39     /* The value of the independent variable for this group */
40     union value id;
41
42     /* The criterium matching for comparing with id 
43        (applicable only to T-TEST) FIXME: therefore it shouldn't be here
44      */
45     enum comparison criterion;
46
47     /* The arithmetic mean */
48     double mean;
49
50     /* Population std. deviation */
51     double std_dev;
52
53     /* Sample std. deviation */
54     double s_std_dev;
55     
56     /* count */
57     double n;
58
59     double sum;
60
61     /* Sum of squares */
62     double ssq;
63
64     /* Std Err of Mean */
65     double se_mean;
66
67     /* Sum of differences */
68     double sum_diff;
69
70     /* Mean of differences */
71     double mean_diff ;
72
73     /* Running total of the Levene for this group */
74     double lz_total;
75     
76     /* Group mean of Levene */
77     double lz_mean; 
78
79
80     /* min and max values */
81     double minimum ; 
82     double maximum ;
83
84
85   };
86
87
88 #endif