Sat Jul 30 21:54:23 2005 Ben Pfaff <blp@gnu.org>
[pspp-builds.git] / tests / command / oneway-with-splits.sh
1 #!/bin/sh
2
3 # This program tests that the ONEWAY anova command works OK
4 # when SPLIT FILE is active
5
6 TEMPDIR=/tmp/pspp-tst-$$
7 TESTFILE=$TEMPDIR/`basename $0`.sps
8
9 here=`pwd`;
10
11 # ensure that top_srcdir is absolute
12 cd $top_srcdir; top_srcdir=`pwd`
13
14 STAT_CONFIG_PATH=$top_srcdir/config
15 export STAT_CONFIG_PATH
16
17
18 cleanup()
19 {
20     if [ x"$PSPP_TEST_NO_CLEANUP" != x ] ; then 
21         echo Not cleaning $TEMPDIR;
22         return ; 
23     fi
24     cd /
25     rm -rf $TEMPDIR
26 }
27
28
29 fail()
30 {
31     echo $activity
32     echo FAILED
33     cleanup;
34     exit 1;
35 }
36
37
38 no_result()
39 {
40     echo $activity
41     echo NO RESULT;
42     cleanup;
43     exit 2;
44 }
45
46 pass()
47 {
48     cleanup;
49     exit 0;
50 }
51
52 mkdir -p $TEMPDIR
53
54 cd $TEMPDIR
55
56 activity="create program"
57 cat > $TESTFILE <<EOF
58 DATA LIST LIST /QUALITY * BRAND * S *.
59 BEGIN DATA
60 3 1 1
61 2 1 1
62 1 1 1
63 1 1 1
64 4 1 1
65 5 2 1
66 2 2 1
67 4 2 2
68 2 2 2
69 3 2 2
70 7  3 2
71 4  3 2
72 5  3 2
73 3  3 2
74 6  3 2
75 END DATA
76
77 VARIABLE LABELS brand 'Manufacturer'.
78 VARIABLE LABELS quality 'Breaking Strain'.
79
80 VALUE LABELS /brand 1 'Aspeger' 2 'Bloggs' 3 'Charlies'.
81
82 SPLIT FILE by s.
83
84 ONEWAY
85         quality BY brand
86         /STATISTICS descriptives homogeneity
87         /CONTRAST =  -2 2
88         /CONTRAST = -1 1
89         .
90 EOF
91 if [ $? -ne 0 ] ; then no_result ; fi
92
93
94 activity="run program"
95 $SUPERVISOR $here/../src/pspp -o raw-ascii $TESTFILE
96 if [ $? -ne 0 ] ; then no_result ; fi
97
98 diff -b -B $TEMPDIR/pspp.list - << EOF
99 1.1 DATA LIST.  Reading free-form data from the command file.
100 +--------+------+
101 |Variable|Format|
102 #========#======#
103 |QUALITY |F8.0  |
104 |BRAND   |F8.0  |
105 |S       |F8.0  |
106 +--------+------+
107
108 Variable Value    Label
109 S            1.00
110
111 2.1 ONEWAY.  Descriptives
112 #===============#=======#=#====#==============#==========#=======================#=======#=======#
113 #               |       # |    |              |          |    95% Confidence     |       |       #
114 #               |       # |    |              |          +-----------+-----------+       |       #
115 #               |       #N|Mean|Std. Deviation|Std. Error|Lower Bound|Upper Bound|Minimum|Maximum#
116 #===============#=======#=#====#==============#==========#===========#===========#=======#=======#
117 #Breaking Strain|Aspeger#5|2.20|          1.30|       .58|        .58|       3.82|   1.00|   4.00#
118 #               |Bloggs #2|3.50|          2.12|      1.50|     -15.56|      22.56|   2.00|   5.00#
119 #               |Total  #7|2.57|          1.51|       .57|       1.17|       3.97|   1.00|   5.00#
120 #===============#=======#=#====#==============#==========#===========#===========#=======#=======#
121
122 2.2 ONEWAY.  Test of Homogeneity of Variances
123 #===============#================#===#===#============#
124 #               #Levene Statistic|df1|df2|Significance#
125 #===============#================#===#===#============#
126 #Breaking Strain#           1.086|  1|  5|        .345#
127 #===============#================#===#===#============#
128
129 2.3 ONEWAY.  ANOVA
130 #==============================#==============#==#===========#=====#============#
131 #                              #Sum of Squares|df|Mean Square|  F  |Significance#
132 #===============#==============#==============#==#===========#=====#============#
133 #Breaking Strain|Between Groups#          2.41| 1|      2.414|1.068|        .349#
134 #               |Within Groups #         11.30| 5|      2.260|     |            #
135 #               |Total         #         13.71| 6|           |     |            #
136 #===============#==============#==============#==#===========#=====#============#
137
138 2.4 ONEWAY.  Contrast Coefficients
139 #==========#==============#
140 #          # Manufacturer #
141 #          #-------+------#
142 #          #Aspeger|Bloggs#
143 #========#=#=======#======#
144 #Contrast|1#     -2|     2#
145 #        |2#     -1|     1#
146 #========#=#=======#======#
147
148 2.5 ONEWAY.  Contrast Tests
149 #===============================================#=================#==========#=====#=====#===============#
150 #                                       Contrast#Value of Contrast|Std. Error|  t  |  df |Sig. (2-tailed)#
151 #===============#======================#========#=================#==========#=====#=====#===============#
152 #Breaking Strain|Assume equal variances|    1   #             2.60|     2.516|1.034|    5|           .349#
153 #               |                      |    2   #             1.30|     1.258|1.034|    5|           .349#
154 #               |Does not assume equal |    1   #             2.60|     3.219| .808|1.318|           .539#
155 #               |                      |    2   #             1.30|     1.609| .808|1.318|           .539#
156 #===============#======================#========#=================#==========#=====#=====#===============#
157
158 Variable Value    Label
159 S            2.00
160
161 2.6 ONEWAY.  Descriptives
162 #===============#========#=#====#==============#==========#=======================#=======#=======#
163 #               |        # |    |              |          |    95% Confidence     |       |       #
164 #               |        # |    |              |          +-----------+-----------+       |       #
165 #               |        #N|Mean|Std. Deviation|Std. Error|Lower Bound|Upper Bound|Minimum|Maximum#
166 #===============#========#=#====#==============#==========#===========#===========#=======#=======#
167 #Breaking Strain|Bloggs  #3|3.00|          1.00|       .58|        .52|       5.48|   2.00|   4.00#
168 #               |Charlies#5|5.00|          1.58|       .71|       3.04|       6.96|   3.00|   7.00#
169 #               |Total   #8|4.25|          1.67|       .59|       2.85|       5.65|   2.00|   7.00#
170 #===============#========#=#====#==============#==========#===========#===========#=======#=======#
171
172 2.7 ONEWAY.  Test of Homogeneity of Variances
173 #===============#================#===#===#============#
174 #               #Levene Statistic|df1|df2|Significance#
175 #===============#================#===#===#============#
176 #Breaking Strain#            .923|  1|  6|        .374#
177 #===============#================#===#===#============#
178
179 2.8 ONEWAY.  ANOVA
180 #==============================#==============#==#===========#=====#============#
181 #                              #Sum of Squares|df|Mean Square|  F  |Significance#
182 #===============#==============#==============#==#===========#=====#============#
183 #Breaking Strain|Between Groups#          7.50| 1|      7.500|3.750|        .101#
184 #               |Within Groups #         12.00| 6|      2.000|     |            #
185 #               |Total         #         19.50| 7|           |     |            #
186 #===============#==============#==============#==#===========#=====#============#
187
188 2.9 ONEWAY.  Contrast Coefficients
189 #==========#===============#
190 #          #  Manufacturer #
191 #          #------+--------#
192 #          #Bloggs|Charlies#
193 #========#=#======#========#
194 #Contrast|1#    -2|       2#
195 #        |2#    -1|       1#
196 #========#=#======#========#
197
198 2.10 ONEWAY.  Contrast Tests
199 #===============================================#=================#==========#=====#=====#===============#
200 #                                       Contrast#Value of Contrast|Std. Error|  t  |  df |Sig. (2-tailed)#
201 #===============#======================#========#=================#==========#=====#=====#===============#
202 #Breaking Strain|Assume equal variances|    1   #             4.00|     2.066|1.936|    6|           .101#
203 #               |                      |    2   #             2.00|     1.033|1.936|    6|           .101#
204 #               |Does not assume equal |    1   #             4.00|     1.826|2.191|5.882|           .072#
205 #               |                      |    2   #             2.00|      .913|2.191|5.882|           .072#
206 #===============#======================#========#=================#==========#=====#=====#===============#
207
208 EOF
209 if [ $? -ne 0 ] ; then fail ; fi
210
211 pass