7548160079b2e14d195c16dbe841dd55759fdcdf
[pspp] / tests / language / stats / regression.at
1 AT_BANNER([LINEAR REGRESSION])
2
3 AT_SETUP([LINEAR REGRESSION - basic])
4 AT_DATA([regression.sps], [dnl
5 set format = F22.3.
6 data list notable list / v0 to v2.
7 begin data
8  0.65377128  7.735648 -23.97588
9 -0.13087553  6.142625 -19.63854
10  0.34880368  7.651430 -25.26557
11  0.69249021  6.125125 -16.57090
12 -0.07368178  8.245789 -25.80001
13 -0.34404919  6.031540 -17.56743
14  0.75981559  9.832291 -28.35977
15 -0.46958313  5.343832 -16.79548
16 -0.06108490  8.838262 -29.25689
17  0.56154863  6.200189 -18.58219
18 end data
19 regression /variables=v0 v1 v2 /statistics defaults /dependent=v2 /method=enter /save=pred resid.
20 list.
21 ])
22
23 AT_CHECK([pspp -O format=csv regression.sps], [0], [dnl
24 Table: Model Summary (v2)
25 ,R,R Square,Adjusted R Square,Std. Error of the Estimate
26 ,.971,.942,.925,1.337
27
28 Table: ANOVA (v2)
29 ,,Sum of Squares,df,Mean Square,F,Sig.
30 ,Regression,202.753,2,101.376,56.754,.000
31 ,Residual,12.504,7,1.786,,
32 ,Total,215.256,9,,,
33
34 Table: Coefficients (v2)
35 ,,Unstandardized Coefficients,,Standardized Coefficients,,
36 ,,B,Std. Error,Beta,t,Sig.
37 ,(Constant),2.191,2.357,.000,.930,.380
38 ,v0,1.813,1.053,.171,1.722,.129
39 ,v1,-3.427,.332,-1.026,-10.334,.000
40
41 Table: Data List
42 v0,v1,v2,RES1,PRED1
43 .654,7.736,-23.976,-.84,-23.13
44 -.131,6.143,-19.639,-.54,-19.10
45 .349,7.651,-25.266,-1.87,-23.40
46 .692,6.125,-16.571,.97,-17.54
47 -.074,8.246,-25.800,.40,-26.20
48 -.344,6.032,-17.567,1.53,-19.10
49 .760,9.832,-28.360,1.77,-30.13
50 -.470,5.344,-16.795,.18,-16.97
51 -.061,8.838,-29.257,-1.05,-28.21
52 .562,6.200,-18.582,-.54,-18.04
53 ])
54 AT_CLEANUP
55
56
57 AT_SETUP([LINEAR REGRESSION - one save])
58 AT_DATA([regression.sps], [dnl
59 set format = F22.3.
60 data list notable list / v0 to v2.
61 begin data
62  0.65377128  7.735648 -23.97588
63 -0.13087553  6.142625 -19.63854
64  0.34880368  7.651430 -25.26557
65  0.69249021  6.125125 -16.57090
66 -0.07368178  8.245789 -25.80001
67 -0.34404919  6.031540 -17.56743
68  0.75981559  9.832291 -28.35977
69 -0.46958313  5.343832 -16.79548
70 -0.06108490  8.838262 -29.25689
71  0.56154863  6.200189 -18.58219
72 end data
73 regression /variables=v0 v1 v2 /statistics defaults /dependent=v2 /method=enter /save=resid.
74 regression /variables=v0 v1 v2 /statistics defaults /dependent=v2 /method=enter /save=pred.
75 list.
76 ])
77
78 AT_CHECK([pspp -O format=csv regression.sps], [0], [dnl
79 Table: Model Summary (v2)
80 ,R,R Square,Adjusted R Square,Std. Error of the Estimate
81 ,.971,.942,.925,1.337
82
83 Table: ANOVA (v2)
84 ,,Sum of Squares,df,Mean Square,F,Sig.
85 ,Regression,202.753,2,101.376,56.754,.000
86 ,Residual,12.504,7,1.786,,
87 ,Total,215.256,9,,,
88
89 Table: Coefficients (v2)
90 ,,Unstandardized Coefficients,,Standardized Coefficients,,
91 ,,B,Std. Error,Beta,t,Sig.
92 ,(Constant),2.191,2.357,.000,.930,.380
93 ,v0,1.813,1.053,.171,1.722,.129
94 ,v1,-3.427,.332,-1.026,-10.334,.000
95
96 Table: Model Summary (v2)
97 ,R,R Square,Adjusted R Square,Std. Error of the Estimate
98 ,.971,.942,.925,1.337
99
100 Table: ANOVA (v2)
101 ,,Sum of Squares,df,Mean Square,F,Sig.
102 ,Regression,202.753,2,101.376,56.754,.000
103 ,Residual,12.504,7,1.786,,
104 ,Total,215.256,9,,,
105
106 Table: Coefficients (v2)
107 ,,Unstandardized Coefficients,,Standardized Coefficients,,
108 ,,B,Std. Error,Beta,t,Sig.
109 ,(Constant),2.191,2.357,.000,.930,.380
110 ,v0,1.813,1.053,.171,1.722,.129
111 ,v1,-3.427,.332,-1.026,-10.334,.000
112
113 Table: Data List
114 v0,v1,v2,RES1,PRED1
115 .654,7.736,-23.976,-.84,-23.13
116 -.131,6.143,-19.639,-.54,-19.10
117 .349,7.651,-25.266,-1.87,-23.40
118 .692,6.125,-16.571,.97,-17.54
119 -.074,8.246,-25.800,.40,-26.20
120 -.344,6.032,-17.567,1.53,-19.10
121 .760,9.832,-28.360,1.77,-30.13
122 -.470,5.344,-16.795,.18,-16.97
123 -.061,8.838,-29.257,-1.05,-28.21
124 .562,6.200,-18.582,-.54,-18.04
125 ])
126 AT_CLEANUP
127
128
129 # Test to ensure that the /SAVE subcommand works properly when SPLIT is active
130 AT_SETUP([LINEAR REGRESSION - SAVE vs SPLITS])
131
132 # Generate some test data based on a linear model
133 AT_DATA([gen-data.sps], [dnl
134 set seed = 1.
135 input program.
136 loop #c = 1 to 20.
137      compute x0 = rv.normal (0,1).
138      compute x1 = rv.normal (0,2).
139      compute err = rv.normal (0,0.1).
140      compute y = 4 - 2 * x0 + 3 * x1 + err.
141      compute g = (#c > 10).
142      end case.
143 end loop.
144 end file.
145 end input program.
146
147 print outfile='regdata.txt' /g x0 x1 y err *.
148 execute.
149 ])
150
151 AT_CHECK([pspp -O format=csv gen-data.sps], [0], [ignore])
152
153 # Use our test data to create a predictor and a residual variable
154 # for G == 0
155 AT_DATA([regression0.sps], [dnl
156 data list notable file='regdata.txt' list /g x0 x1 y err *.
157
158 select if (g = 0).
159
160 regression 
161            /variables = x0 x1
162            /dependent = y
163            /statistics = all
164            /save = pred resid.
165            .
166
167 print outfile='outdata-g0.txt' /g x0 x1 y err res1 pred1 *.
168 execute.
169 ])
170
171
172 AT_CHECK([pspp -O format=csv regression0.sps], [0], [ignore])
173
174 # Use our test data to create a predictor and a residual variable
175 # for G == 1
176 AT_DATA([regression1.sps], [dnl
177 data list notable file='regdata.txt' list /g x0 x1 y err *.
178
179 select if (g = 1).
180
181 regression 
182            /variables = x0 x1
183            /dependent = y
184            /statistics = all
185            /save = pred resid.
186            .
187
188 print outfile='outdata-g1.txt' /g x0 x1 y err res1 pred1 *.
189 execute.
190 ])
191
192
193 AT_CHECK([pspp -O format=csv regression1.sps], [0], [ignore])
194
195 # Use our test data to create a predictor and a residual variable
196 # The data is split on G
197 AT_DATA([regression-split.sps], [dnl
198 data list notable file='regdata.txt' list /g x0 x1 y err *.
199
200 split file by g.
201
202 regression 
203            /variables = x0 x1
204            /dependent = y
205            /statistics = all
206            /save = pred resid.
207            .
208
209 print outfile='outdata-split.txt' /g x0 x1 y err res1 pred1 *.
210 execute.
211 ])
212
213 AT_CHECK([pspp -O format=csv regression-split.sps], [0], [ignore])
214
215 # The concatenation of G==0 and G==1 should be identical to the SPLIT data
216 AT_CHECK([cat outdata-g0.txt outdata-g1.txt | diff outdata-split.txt - ], [0], [])
217
218 AT_CLEANUP
219
220
221 # Test that the procedure behaves sensibly when presented with
222 # multiple dependent variables
223 AT_SETUP([LINEAR REGRESSION multiple dependent variables])
224 AT_DATA([regression.sps], [dnl
225 set seed = 2.
226 input program.
227 loop #c = 1 to 200.
228      compute x0 = rv.normal (0, 1).
229      compute x1 = rv.normal (0, 2).
230      compute err = rv.normal (0, 0.8).
231      compute y = 2 - 1.5 * x0 + 8.4 * x1 + err.
232      compute ycopy = y.
233      end case.
234 end loop.
235 end file.
236 end input program.
237
238 regression 
239            /variables = x0 x1
240            /dependent = y ycopy
241            /statistics = default.
242 ])
243
244 AT_CHECK([pspp -O format=csv regression.sps > output], [0], [ignore])
245
246 AT_CHECK([head -16 output > first], [0], [])
247 AT_CHECK([tail -16 output > second], [0], [])
248
249 AT_CHECK([sed -e 's/ycopy/y/g' second | diff first -], [0], [])
250
251
252 AT_CLEANUP
253
254 # Tests the QR decomposition used by the REGRESSION command.
255 AT_SETUP([LINEAR REGRESSION test of QR decomposition])
256 AT_DATA([regression.sps], [dnl
257 data list list / v0 to v1.
258 begin data
259 -12.84099361 0.873270778
260  16.64932538 0.371315664
261  -1.88061907 0.505503722
262  -6.20952354 0.734698282
263   0.33272576 0.891224610
264  -5.54912717 0.052318165
265   6.11832417 0.448853404
266  11.78124974 0.470447593
267   0.75960353 0.565082303
268   6.06432768 0.149316743
269  -2.64919436 0.752532411
270 -10.32250712 0.798263603
271   2.06355038 0.469129797
272  -9.71851742 0.927162270
273   4.65582553 0.250629262
274   9.54574474 0.847032310
275   7.35544368 0.197028541
276  -2.09609740 0.400584261
277  10.30101161 0.671546480
278  -5.24501039 0.929962876
279   1.73412473 0.758161354
280  -3.12732732 0.569785505
281  12.66261501 0.630640223
282  -2.90956805 0.576067804
283   4.89649177 0.624483995
284  13.64613114 0.591089881
285  14.03198397 0.544587572
286   2.23566810 0.967898139
287   5.37367760 0.916246929
288   9.01346888 0.451702743
289   0.75378683 0.235544137
290  -3.47470624 0.742668194
291  -1.02063266 0.860311687
292  -2.67132813 0.082460702
293  23.67661680 0.932553932
294   7.95061359 0.430161125
295   2.05300558 0.066331375
296  -2.01332644 0.163705417
297  20.00663784 0.587292630
298   3.06099417 0.161411889
299  -3.46115358 0.216684625
300  -6.85287183 0.548714855
301  -4.27923809 0.630997663
302  -0.94863395 0.880612945
303   4.47481747 0.359885215
304 -12.80962955 0.886070341
305   9.35753086 0.187176558
306   2.81002235 0.063035095
307   0.01532424 0.964327101
308   0.29867732 0.866408063
309  -2.89035649 0.812135868
310   4.17352811 0.608884061
311  18.15502183 0.920568258
312  -2.92662792 0.550792959
313  -6.08090449 0.965036595
314  -1.09135397 0.862548019
315   7.02816784 0.042277017
316 -21.20245068 0.430673493
317  -8.83397584 0.724976162
318  -0.89055843 0.017934904
319   7.03871587 0.308829557
320   3.84286316 0.685105924
321   4.50280692 0.447635420
322  11.39207346 0.875177896
323  10.86673874 0.518530912
324   7.09853081 0.588367569
325 -12.82864915 0.184667098
326  13.74888760 0.610891139
327   0.37379146 0.557720134
328  -9.79020267 0.942839981
329   0.71574466 0.564570338
330 -17.56040637 0.182061777
331   2.52620466 0.306875011
332   5.37718673 0.366807049
333  -1.83964300 0.465772898
334   6.04848363 0.644501799
335   4.57402403 0.121419591
336   8.55606848 0.373011464
337  -8.46827907 0.491176571
338  -1.77989798 0.734722847
339  -0.68661121 0.540984182
340   1.55798880 0.822587656
341   5.22810831 0.333747878
342   9.50280477 0.068100934
343  -3.74521465 0.248537644
344   1.36045068 0.851827791
345   4.41604088 0.197207162
346  -3.72568327 0.726916693
347  -5.36123334 0.906513529
348   3.61594583 0.414340595
349 -10.01952852 0.140372658
350  25.48681482 0.354309660
351  -3.34529093 0.090075388
352 -18.00437582 0.461438059
353  -5.29782460 0.004362856
354   2.79608522 0.861294398
355  -1.64076209 0.345775481
356   6.82802334 0.137933862
357  -0.45416818 0.404379208
358  -1.66868582 0.797685201
359 -10.02820292 0.075876582
360   5.68232031 0.404815042
361   8.25113850 0.769173748
362  -2.83544237 0.076583474
363   0.87659945 0.092751009
364   6.60270870 0.530444351
365 -12.63924989 0.362099960
366  -6.24451253 0.641993458
367   3.53339015 0.461991892
368  -0.74012232 0.437409755
369  15.37311996 0.974913038
370  -8.09464797 0.543308711
371  -9.61320222 0.221564578
372   0.21843662 0.856512540
373  -1.56958954 0.610709221
374   6.44977372 0.200382138
375 -13.29136274 0.093222309
376   6.46257214 0.024135196
377  -3.82727990 0.601335801
378   0.43081953 0.268230667
379  19.06654416 0.219972815
380  17.02906651 0.996849502
381 -10.18073139 0.012543080
382  12.72088788 0.910600764
383  10.45328185 0.331285901
384   7.14370922 0.896312020
385  -2.81754334 0.048741266
386   6.40217095 0.075796756
387  -3.18030478 0.666325307
388   8.64585957 0.120549153
389   1.37952764 0.899991932
390 -11.81143886 0.601949630
391   0.03899706 0.363808260
392 -10.63828243 0.031092967
393  -6.66940972 0.246204205
394  -5.07374962 0.951272057
395   4.82281566 0.063928187
396 -21.93693564 0.050972680
397  -4.54569883 0.225839693
398  -0.92422779 0.437796785
399  -1.11683029 0.740215139
400  16.77765554 0.851072372
401   9.73614597 0.388180586
402  14.05345168 0.063760129
403   1.20512012 0.665964184
404   8.00307080 0.102447114
405   8.01252623 0.580929209
406 -13.54924183 0.438420739
407   9.87164361 0.970859344
408  17.63437095 0.250501797
409  -3.42503574 0.873290220
410  -2.45873197 0.847756049
411  17.29212092 0.411683187
412   1.15496098 0.530658504
413  -2.14438907 0.592255367
414  -1.79942021 0.517773009
415  -1.30677990 0.830860762
416   1.70233874 0.291826660
417  -3.05532536 0.801767829
418  -4.06732625 0.092294501
419   6.34665476 0.270426235
420   9.46946411 0.196915311
421  14.50919907 0.480357167
422   8.93767237 0.778228613
423   1.90298854 0.903146151
424  18.50500507 0.598561307
425   4.45123027 0.555898218
426  11.37344114 0.616557707
427 -12.14693218 0.409187285
428  18.27198688 0.141619222
429  -5.75939569 0.056989619
430  -4.05515382 0.369281201
431  16.69882098 0.946885257
432   6.39050536 0.679704228
433   4.04213339 0.662792380
434   6.89608366 0.419877433
435   1.56496633 0.358227958
436   5.16679947 0.095144366
437  -3.06280456 0.883265975
438   2.76279175 0.866571973
439   1.84969249 0.264869828
440  21.79840498 0.702650979
441   1.42450528 0.719308635
442   0.96797046 0.111937435
443  18.26840323 0.075621738
444  13.38288377 0.573399086
445   2.41101500 0.766238677
446   3.83866337 0.499888953
447  -1.56577367 0.695244089
448  -0.90342790 0.671654151
449  10.83775583 0.026041124
450  -9.89767935 0.745297991
451  11.74840150 0.309144074
452   1.73069359 0.814063985
453  -5.27966183 0.591005828
454   3.33030043 0.559401806
455   1.31427975 0.520950237
456 -10.04588558 0.507008362
457  10.41228345 0.425867272
458   1.71961097 0.595783108
459 -17.54904427 0.328788939
460  -2.23545419 0.223377350
461  -8.68774333 0.980964240
462  -3.48048220 0.008877675
463  -3.69635326 0.090236718
464   9.76114237 0.769375983
465 -10.25662038 0.508137553
466   0.11155446 0.468504431
467  -8.06824580 0.414098962
468   3.10031660 0.327130207
469  -3.33393146 0.756896774
470  -3.96276749 0.530956360
471  14.53610268 0.846474699
472   1.70505918 0.754662464
473  -1.93495001 0.656650411
474   5.01974522 0.745337633
475  13.41249973 0.489362476
476  11.49288744 0.335924476
477  12.59019763 0.155560469
478 -10.17947298 0.677318449
479   0.05556115 0.655090105
480   3.82092860 0.051838719
481   8.23041456 0.918272190
482  -0.50314649 0.772015826
483  20.05162157 0.880265258
484   8.98816884 0.666646668
485  -6.28312120 0.138534416
486   3.68589909 0.274559458
487   0.59699510 0.253180863
488  -2.74783135 0.983525221
489   0.32515065 0.839969577
490  -3.60606166 0.330646732
491  -0.82037740 0.129591173
492   6.12444860 0.098536516
493  10.95671074 0.033546728
494  -2.84911174 0.720288722
495   6.04597572 0.577061422
496  -0.60147150 0.674096868
497  -5.30458364 0.291468008
498   2.68044943 0.379853840
499   0.85986585 0.984214339
500 -12.77906359 0.882390290
501   7.21420144 0.550884826
502   2.31817022 0.231021556
503  11.60161950 0.888496654
504  -0.19346228 0.242609713
505   5.07478120 0.759161318
506  14.54155003 0.040387654
507   3.81039636 0.874572741
508   2.23233049 0.448317248
509   0.19481869 0.201906051
510   2.81530451 0.132131690
511  12.39893259 0.674693704
512   0.47054642 0.632959494
513   2.16152913 0.734480632
514   0.33398836 0.315024718
515   7.35509037 0.304570986
516  -2.92336559 0.539062343
517   5.79622573 0.392393310
518  -2.37607425 0.403380474
519   0.04498550 0.756875541
520  -1.63674414 0.613789514
521  11.80310547 0.832651469
522   6.30630243 0.850689403
523   1.48394652 0.096243229
524   4.03361865 0.799660045
525   3.54707273 0.408520520
526   2.00327040 0.702944912
527  17.30761707 0.380542812
528   5.72738968 0.105447516
529 -13.64604891 0.328506659
530   8.35976334 0.702173924
531  -7.41197443 0.134396488
532 -15.95683040 0.618526462
533   8.76889573 0.950243069
534  -1.13482624 0.113477080
535  -0.60311407 0.090444247
536   4.95508365 0.612511543
537   5.36934491 0.979213258
538  -0.03554882 0.807185690
539 -11.58131144 0.183341373
540   4.46809041 0.796330582
541  12.49741067 0.346860912
542   8.63824488 0.073684997
543   0.49990913 0.732519306
544  12.82688360 0.109400213
545  13.20375065 0.850369092
546  -8.41110869 0.177717087
547  16.31959963 0.727704840
548  17.59203613 0.235311681
549   0.32148420 0.842195936
550   5.43148331 0.670904647
551   7.14649727 0.028190029
552   0.25410683 0.421535783
553 -12.41047826 0.086404379
554 -10.64180909 0.229659236
555  -6.40185653 0.876365242
556  15.63063324 0.667672536
557   1.94280423 0.799266628
558  -5.76507450 0.367344192
559   8.60895533 0.154109357
560   9.38306751 0.788742770
561   3.43573528 0.284535277
562   4.81848966 0.872283177
563  11.65839314 0.234109111
564  -5.57884822 0.030363060
565  -3.94238060 0.325320686
566   9.38133340 0.201141788
567  -7.65003459 0.647734396
568  11.23091019 0.084927159
569  -6.07705432 0.037273791
570   7.46380750 0.506897136
571   7.42034855 0.869351148
572  -4.43031973 0.231191152
573  -1.07351537 0.480234836
574  -1.40653281 0.690620421
575  -3.82710168 0.990191328
576   5.04583490 0.543427375
577 -11.54265099 0.270542185
578   0.49059479 0.991447248
579  -1.40871469 0.555998766
580   3.64241437 0.743840673
581 -18.30031589 0.357478210
582   4.27487959 0.770619738
583   1.28805821 0.654787106
584  -3.19542768 0.218110139
585  12.53375654 0.011857644
586  11.78889419 0.054127726
587  -5.38392310 0.839309080
588  16.38024181 0.228801038
589  -0.59622631 0.134381782
590  -0.74107258 0.258146632
591 -12.31429450 0.020524447
592  -0.79785028 0.968028764
593   6.39899711 0.038162566
594   7.42024044 0.716163692
595  -3.62470664 0.018201813
596  -2.55049724 0.162446610
597 -10.79888854 0.683070478
598  10.18490144 0.546461234
599  -2.76979044 0.198830067
600   4.85164813 0.094100357
601   0.96477200 0.381801756
602   8.13344336 0.639730450
603   9.04684412 0.786084368
604  10.41746272 0.828304181
605   0.94334368 0.798419831
606  10.13116556 0.191715972
607  -4.12728628 0.575178239
608  -9.59222379 0.876405375
609   1.64680258 0.391003085
610  -4.58897613 0.039176486
611   0.38394379 0.511577564
612  -4.80428215 0.222785463
613   0.35363661 0.681658725
614  -9.63685708 0.183035382
615   3.54363414 0.766127414
616   6.89610808 0.967514568
617  -2.03781105 0.464416752
618   8.67956196 0.421424078
619  -1.09959038 0.061231448
620   7.12587456 0.028601318
621  -6.93064672 0.402561175
622   8.57989199 0.925089270
623  -9.55071810 0.454993099
624  -8.11914736 0.509644286
625  -5.41909698 0.077813151
626 -17.03336572 0.875713545
627  -1.27438609 0.602163625
628   3.09834374 0.105599007
629  -1.59865741 0.439939102
630  11.82272089 0.754984309
631   4.30969696 0.483834579
632 -10.76886192 0.222486992
633   7.05419803 0.903020271
634   7.36096847 0.440357053
635  -2.05864869 0.581170147
636  -9.08366913 0.318677911
637   8.57119930 0.605668919
638   7.87702340 0.570206991
639   5.22035786 0.542344385
640   2.37238850 0.595969470
641  -4.29809941 0.634313781
642   4.51647479 0.796663089
643  -0.62478780 0.562099444
644   8.50866078 0.490014249
645   3.46694991 0.122890089
646  -7.31956453 0.885170890
647   2.20259268 0.167180856
648  -1.81003626 0.702563515
649   8.44526939 0.973495019
650   8.19767069 0.881261264
651  -5.92422578 0.686557351
652  -0.11826129 0.712798344
653   5.66132869 0.922826429
654  -5.40845018 0.642183516
655   6.67839036 0.680978989
656  11.88962825 0.487904896
657   3.32266332 0.931709581
658   0.24234019 0.405641313
659 -12.79023339 0.361005489
660 -13.57875491 0.266289733
661   1.81304596 0.775093821
662   0.36755600 0.400225605
663  -9.15574205 0.518040748
664  -3.90436548 0.396869908
665   9.24764042 0.669374848
666   0.74869385 0.609881390
667  -3.62958907 0.928867495
668  -0.02527232 0.557679930
669   0.04433418 0.152565816
670  11.76152632 0.865663501
671  -4.62181124 0.007000650
672   5.82271403 0.389678502
673   0.33289002 0.532940826
674  -7.65647076 0.681574524
675  11.81023732 0.107165912
676  11.42121999 0.989580324
677  -5.47120641 0.762285550
678   3.82311561 0.388755074
679  16.91059711 0.461236022
680   4.14012105 0.802420151
681  -1.35278659 0.036646959
682 -12.81733350 0.179096148
683  -0.94395134 0.450959878
684  -5.39002376 0.264783062
685   4.16227017 0.780743762
686   7.26179625 0.821382454
687  15.10062276 0.469253936
688   1.45877225 0.685434405
689  -9.87966760 0.767201511
690   7.03156071 0.195142483
691 -11.71327419 0.774014869
692  -4.55518706 0.973103604
693  -1.75221406 0.175172193
694  10.35631400 0.080670414
695   4.97650495 0.597478189
696   2.25703939 0.585949751
697  10.72500409 0.339720931
698  -5.02901029 0.997874377
699   6.24398637 0.655067479
700  -5.83880059 0.184948259
701   2.17256077 0.746741866
702  -5.59809380 0.277523381
703   8.19384177 0.334565607
704   3.35250431 0.952057263
705  16.20874892 0.901400446
706   1.63205839 0.235388475
707  -1.07921163 0.608376332
708   0.24315118 0.862639830
709  15.61923078 0.050955422
710   1.99639207 0.358905687
711   8.14825538 0.190069662
712   4.55210835 0.784025901
713  13.51582298 0.973572910
714  15.42415796 0.969080992
715   2.23978124 0.551857514
716   1.00858991 0.919566804
717  -2.77293574 0.906998180
718   7.10750420 0.934792213
719  -8.01377290 0.682306063
720   9.67873875 0.239576806
721   7.54867950 0.065860266
722  13.85701962 0.733823443
723   8.48212853 0.285731085
724   3.55278843 0.998255904
725  21.94592206 0.205463912
726  -2.07957143 0.948665109
727   1.54169997 0.200109744
728 -11.36934275 0.447122472
729   3.07094572 0.815147945
730   6.45818709 0.007849948
731   1.85594578 0.818796540
732  -2.43799564 0.962013689
733 -17.96539549 0.654190963
734  -0.93433746 0.454930236
735 -11.06904368 0.898560975
736  14.89733742 0.479152492
737  -5.72390675 0.136197255
738   9.46781102 0.669006610
739   5.35954546 0.259381138
740   3.78388994 0.933778797
741   1.95373423 0.517555994
742  10.96772341 0.666138826
743   9.40585102 0.779906833
744   0.75347502 0.142656741
745   7.64803672 0.734297119
746  -0.40051164 0.362230232
747  10.00747057 0.660820381
748 -12.86024975 0.072988046
749   1.43515528 0.229672223
750  -6.75981709 0.658534537
751  -5.61355474 0.795897133
752  -4.40596595 0.038787666
753  -1.37033650 0.371835229
754   6.66666573 0.560963737
755   8.18430044 0.284787698
756  -0.55742330 0.622783662
757  -0.39757686 0.673551753
758 -12.68628005 0.373038561
759   4.06416215 0.760546238
760   4.65859855 0.516761886
761   3.55304076 0.266856843
762  -7.35294817 0.615783196
763   1.01222898 0.158266779
764   9.91052610 0.285619547
765  -6.42966726 0.573689954
766  10.97425098 0.985095061
767   5.79394599 0.404333309
768  10.09106608 0.441037857
769  -1.47295537 0.577661077
770  -2.07959719 0.547176133
771  -8.76910940 0.498979558
772 -11.15658312 0.135862745
773  -0.88456783 0.326480064
774   9.71607440 0.998076370
775  -8.76072622 0.386244511
776 -19.26823092 0.461833959
777  -0.11280313 0.064155908
778   0.64625887 0.172078148
779  -5.35323428 0.331153163
780  -1.71034509 0.330955888
781   4.27104744 0.590544244
782   7.33843789 0.263171531
783  -5.38121637 0.539675802
784  -6.87566548 0.127313096
785  -2.50161298 0.269417630
786  10.99076986 0.097362729
787   6.34017269 0.318528587
788  -4.63672382 0.451038055
789 -11.55122495 0.987073278
790   4.78618612 0.297342215
791   2.97547390 0.197312152
792  -5.54495280 0.499701114
793  17.67606173 0.810316588
794  16.01578815 0.643667608
795  -0.16258467 0.228284761
796   7.92123340 0.784289369
797  -2.26303900 0.270764770
798   5.84136933 0.437763291
799   4.96955217 0.389720490
800  -8.09516710 0.829068548
801  14.59207207 0.513593803
802   2.80954688 0.650799867
803   4.53653552 0.672326278
804   4.49116737 0.807447691
805  18.87549709 0.647303378
806   9.80118464 0.932576117
807 -13.02124969 0.038651904
808  -6.15189291 0.697593318
809  15.81920283 0.249825051
810  10.81503188 0.152372300
811 -23.58738366 0.593560367
812   8.15716338 0.411680007
813   3.45349379 0.351061414
814  -6.39345334 0.374926213
815   8.72924585 0.165759028
816  22.17948804 0.003736780
817  -4.73053410 0.582425257
818  16.88289626 0.484899167
819  -1.78826142 0.663273340
820  -0.78106025 0.337039969
821  -2.92461669 0.810174719
822 -13.89224399 0.177428986
823   4.56809819 0.025010350
824  -1.07452825 0.649632933
825   0.58148751 0.829606422
826  12.13329525 0.354819526
827  17.35605568 0.284862590
828 -12.43678107 0.827661083
829  -1.89492796 0.574929572
830   2.18520382 0.846299917
831  18.11449649 0.603173531
832   4.34508582 0.484049042
833  17.49394569 0.094811656
834  10.67752350 0.166176400
835  17.13374502 0.547208197
836   4.42138123 0.768691494
837   5.38445574 0.788597361
838   0.79946671 0.851883720
839  -4.67547904 0.995621191
840  -5.61496422 0.523793593
841 -20.52093126 0.881207308
842  -8.95996814 0.851078124
843  -7.63483710 0.739657373
844  11.02131097 0.678060014
845 -10.56228517 0.202393048
846   6.48841788 0.143946271
847   3.44853632 0.913249620
848  -0.02080024 0.070765134
849   2.08654297 0.032468089
850   8.13415912 0.439470874
851  11.19028936 0.944954026
852   0.26670866 0.492724593
853  -9.33692734 0.982611921
854  17.23967092 0.313428994
855   0.36906670 0.660669528
856   7.89735684 0.977628886
857  -4.00171487 0.379327632
858   5.01615432 0.735627296
859   0.42214214 0.092461754
860  13.60634772 0.218359635
861   6.57431413 0.067653525
862  -1.77668341 0.717799276
863   5.16227422 0.325502093
864 -15.29091550 0.332815338
865   3.33602480 0.594168551
866  13.80131443 0.817724470
867   5.92111679 0.947854666
868   3.59747624 0.330860216
869  -6.79722403 0.093518715
870  -1.86606213 0.824179728
871  17.05226458 0.466573672
872  10.39712467 0.409067778
873  -4.78536386 0.891470739
874  11.92963128 0.719633060
875  -1.44230992 0.232628002
876 -12.31860616 0.834134222
877   2.93439660 0.957842480
878  14.27963295 0.546264646
879   2.17488820 0.701170328
880  10.78772417 0.612332448
881  -0.47049341 0.378564293
882  -0.35140634 0.034337429
883   5.04887868 0.211697132
884  -3.51562580 0.663243607
885  -0.82013387 0.602497174
886   2.78954743 0.325294790
887   8.67905777 0.820296625
888 -12.70343389 0.315467361
889  -2.59373236 0.015571904
890  -4.60369241 0.293737716
891   1.58669084 0.671091860
892 -10.44245103 0.501340276
893   4.85215578 0.141572007
894  10.46303284 0.801814632
895   1.27898298 0.236929983
896  -1.72225479 0.608500539
897  20.18685735 0.827124630
898   3.27308817 0.542065179
899   1.01596956 0.254672115
900  -8.88872881 0.460876757
901 -11.31397349 0.636168639
902   0.85294367 0.816417328
903   3.54262337 0.944147626
904 -10.53603202 0.675775741
905   4.34832198 0.121988381
906  11.56451662 0.283063133
907  -7.36454369 0.500596540
908  -8.23701113 0.379483261
909  -8.36081323 0.219730782
910  -6.39158860 0.739171315
911  -1.40518544 0.478709398
912  -4.01314821 0.460476388
913  -7.34814047 0.406242873
914  -7.80836711 0.730648091
915  -0.57729135 0.152336258
916   4.98352832 0.026424939
917  -3.78181635 0.453598432
918  20.16821827 0.845273124
919   5.20758271 0.573569671
920  -3.05534245 0.286828574
921  -5.31306254 0.961990401
922   1.09307567 0.006478724
923  -3.75412572 0.598277695
924  -2.38444245 0.777900122
925   2.46837742 0.280363751
926   9.72195519 0.041094463
927   3.96271247 0.604775284
928   2.14105354 0.400315328
929   7.88645912 0.404573389
930  -4.03565076 0.798377309
931  10.80180959 0.932152434
932 -10.89359212 0.446813857
933   1.43144578 0.310194540
934   4.79825196 0.504826858
935  10.73201365 0.384306369
936  -4.07526187 0.893893643
937  -2.84330198 0.390202663
938   5.81825057 0.830581384
939  -2.77842745 0.382966910
940  -7.70333673 0.157692966
941  -3.25753058 0.726303603
942   8.50032387 0.556524444
943   2.35027236 0.857076526
944  -1.70740565 0.194760923
945  -3.40693880 0.696420946
946  -8.03983352 0.514393263
947  -1.85105344 0.609459979
948  -9.01148029 0.526019631
949  18.37344635 0.690793045
950  16.46079416 0.811535334
951   4.10224315 0.043403618
952   7.06657672 0.831274577
953  15.31421824 0.434558881
954 -12.36760970 0.004215634
955   1.95473415 0.277788662
956  -0.93207006 0.368433415
957  15.39919341 0.843189783
958   5.23452387 0.626226925
959  11.40805770 0.002417288
960  -1.30282837 0.072493756
961   3.92130690 0.675355182
962   2.53148399 0.027222295
963   4.92705318 0.934429364
964   5.54978818 0.042268708
965  -2.19608977 0.246743834
966  -0.62565550 0.858214200
967  -8.98329365 0.646827226
968  12.78468146 0.533966352
969   2.01061290 0.418710227
970   1.03689579 0.019241741
971   8.01166696 0.992268130
972  -4.49786437 0.694127903
973  -8.15387184 0.066275002
974   2.22256207 0.083301613
975 -12.27145086 0.535369809
976   9.95709112 0.227692557
977  14.58198717 0.667298058
978   5.98046083 0.922503625
979   1.25640725 0.632933575
980   9.77623752 0.136171032
981   5.57068426 0.374916651
982 -10.07048336 0.470411379
983   3.69267954 0.897278365
984   2.22185354 0.212539549
985   7.96155623 0.720525208
986  -6.21272358 0.771491819
987   2.63054735 0.474989115
988  -2.81488890 0.675381020
989   4.52747191 0.118615879
990  -3.22975936 0.783991133
991  11.42834761 0.423344824
992   0.26512464 0.617515445
993  -5.84322807 0.210915613
994   9.61073028 0.988117333
995  -6.11878012 0.492318959
996   5.30581443 0.339379499
997  -6.40132703 0.903540026
998   1.22921808 0.122161655
999   8.08547837 0.197296588
1000  -0.77943801 0.935963718
1001  11.43194858 0.828270943
1002  -5.41689395 0.556863468
1003  15.14667847 0.565186375
1004  -5.15327419 0.542802437
1005  -3.95903082 0.643379366
1006   5.78847793 0.391369361
1007  11.54430873 0.158789330
1008   1.90340148 0.841316129
1009  14.69680285 0.532022770
1010   0.68552840 0.367073827
1011  -8.72287967 0.250127491
1012   9.35401445 0.836083158
1013   5.32139524 0.996712598
1014 -14.53387897 0.825434481
1015  -2.93925146 0.513153861
1016  12.54386493 0.713306793
1017   2.04842442 0.993893406
1018   2.87461954 0.049843312
1019   4.89765230 0.376710062
1020  -6.23945314 0.321108142
1021  -3.45840168 0.854710947
1022   9.05807160 0.199992188
1023   3.33815006 0.787302467
1024   4.22244242 0.351841910
1025  15.75879160 0.268699469
1026   2.78549859 0.920299974
1027  -4.46643118 0.727283862
1028   0.48021298 0.428672083
1029   2.55814938 0.130915212
1030   5.00692968 0.062266047
1031   4.78801127 0.325124688
1032   6.39524485 0.693406744
1033 -10.46792584 0.458128441
1034  10.14111908 0.353412759
1035 -10.56424183 0.821588957
1036   7.60967746 0.267669137
1037  -2.34956688 0.434855697
1038  23.82269027 0.802311880
1039   8.37170447 0.445185000
1040  10.05024769 0.778687843
1041  -9.15753018 0.957292819
1042  12.17438228 0.774769426
1043   1.57960028 0.783591989
1044   0.06719501 0.849073924
1045  16.21114558 0.243444943
1046  -3.79808298 0.842994720
1047   8.98927715 0.020537113
1048   7.72362992 0.984168340
1049  11.25158442 0.152385348
1050 -21.23936903 0.909204114
1051   7.34995949 0.987249305
1052  -7.99435203 0.335456401
1053  -2.78218185 0.768517548
1054  11.59547596 0.466617637
1055  15.90870706 0.071892573
1056   5.58160897 0.554485703
1057  16.05253351 0.815206562
1058  -3.23103465 0.280495460
1059  -4.61108636 0.035757819
1060   5.41596511 0.746146856
1061   2.92445613 0.136743821
1062  11.23628254 0.681316365
1063 -12.93714705 0.838791576
1064   9.94668264 0.084457395
1065  -4.56061529 0.983605894
1066  -4.24795688 0.601732731
1067  -2.83740044 0.375102341
1068  -0.43078317 0.403870303
1069  15.19689584 0.114826374
1070 -10.29920266 0.731582141
1071   6.01686515 0.641655876
1072   6.69431335 0.496723697
1073   4.62223602 0.328118236
1074  -1.74309026 0.072604771
1075  14.31971261 0.827101483
1076  -1.86629155 0.613346722
1077   8.30971428 0.274948560
1078   8.50080711 0.059822908
1079  -7.94061422 0.121069240
1080  -2.72096492 0.710791774
1081   3.33259421 0.398621625
1082   1.73248470 0.488581205
1083   9.56008489 0.011104565
1084  12.71499762 0.038568985
1085   4.11512127 0.219846314
1086  -0.96707584 0.822646857
1087   4.98621667 0.633779997
1088   4.69384821 0.295708955
1089  10.16008645 0.778287787
1090  -7.72973800 0.097096969
1091   2.87264210 0.796538177
1092   4.56095440 0.862952770
1093   5.02621658 0.934628629
1094   3.18138681 0.805600816
1095  -1.02245780 0.317640678
1096  18.16001652 0.992503640
1097   4.13729026 0.941910149
1098   1.61211303 0.377271914
1099   1.71520009 0.735196094
1100   3.26325421 0.514432564
1101  12.94663819 0.591190711
1102  10.53239931 0.005877708
1103   8.06705056 0.340779884
1104  -5.09007267 0.332516161
1105  12.31973355 0.323119296
1106  -2.69957650 0.633232996
1107  12.51207803 0.377641090
1108   8.02081444 0.859293157
1109  -0.13098726 0.099370804
1110  -0.97757546 0.852873609
1111  16.73605399 0.595854575
1112   3.63219184 0.329310613
1113  -4.79105630 0.247760146
1114  -4.77209495 0.708235587
1115   0.92107647 0.924567254
1116  12.12724271 0.433550712
1117  -5.07731478 0.200109463
1118   9.16019579 0.897456586
1119  18.33260560 0.649877409
1120   1.93596773 0.584401505
1121   8.51254631 0.283154523
1122  11.41092928 0.698703314
1123  10.85035748 0.351078210
1124  12.62749979 0.570101319
1125  -2.32028296 0.313842122
1126  -2.45778301 0.007943144
1127   6.93102526 0.108737491
1128  -0.67304654 0.245399613
1129   9.27294774 0.204010286
1130  14.29292826 0.396294626
1131  14.05843185 0.864613328
1132  -3.73515954 0.305862948
1133   0.36606339 0.116802407
1134  -5.79235478 0.457308058
1135   8.70346900 0.858244380
1136  -8.91321043 0.077001581
1137   0.58499566 0.503209780
1138   0.39160153 0.324883353
1139   7.46715326 0.343451039
1140  12.36256009 0.679483638
1141   8.84283689 0.687359177
1142  -6.39396909 0.113065562
1143  -3.67844896 0.667335667
1144   9.36904962 0.009815419
1145  -3.25244888 0.213105120
1146  19.09389976 0.593130536
1147   7.28826611 0.829483570
1148  -5.44565944 0.956490203
1149   7.96993416 0.770961635
1150   0.20683778 0.006497153
1151  -3.73273760 0.037042812
1152 -10.64745846 0.813594448
1153   5.70578906 0.157678242
1154   4.05282218 0.224663656
1155  14.77711159 0.577586777
1156   0.89685942 0.297213941
1157   3.92600687 0.672347849
1158 -12.29347477 0.367072171
1159  -9.33603480 0.456544225
1160  -0.86683190 0.088696811
1161   4.65685745 0.779783359
1162   1.24438030 0.712958633
1163  11.43533814 0.920345548
1164 -10.18380242 0.044456697
1165  -1.20684029 0.992051648
1166  -9.78059038 0.611477837
1167   3.05588762 0.581933667
1168   3.47419279 0.769325101
1169   0.87528245 0.455214184
1170  -3.13185655 0.805887381
1171  -0.82283965 0.707668384
1172  -1.86717272 0.984060013
1173  16.56357048 0.217369677
1174  -2.11052646 0.474156371
1175  -1.39795364 0.958554209
1176   4.87468692 0.328779186
1177   2.69163553 0.401633221
1178   6.08640626 0.599963560
1179   7.41420081 0.240202007
1180   5.73729928 0.696034193
1181   7.31747120 0.569520861
1182  -6.20465547 0.214005920
1183  17.52477873 0.667125450
1184  12.97855692 0.796977778
1185  -3.35883428 0.379721403
1186  -2.90306972 0.552454626
1187   5.31617371 0.401625473
1188  -3.86414389 0.830986352
1189 -14.94107832 0.702705123
1190  -5.74060402 0.833328045
1191  -8.10116203 0.078855027
1192  23.48247017 0.568666620
1193  20.22005082 0.357069809
1194  -2.53387193 0.637455425
1195  15.72048831 0.845354124
1196  -4.41494567 0.934471473
1197  -8.02254420 0.378467959
1198  -0.13398716 0.489382793
1199   0.95967155 0.813667919
1200   0.14835664 0.215786848
1201  14.31875579 0.675145039
1202  -6.36589196 0.822037848
1203   8.25942906 0.156787526
1204  -7.33597529 0.051076292
1205  12.58936771 0.666507807
1206   2.34653798 0.626196518
1207  -0.69351398 0.050664564
1208   7.08738260 0.808776877
1209   5.19653521 0.779008623
1210   3.20900427 0.197212774
1211   7.81171331 0.744975548
1212   6.49008186 0.991318119
1213   7.27471854 0.839642650
1214  -7.68367290 0.880500743
1215  12.04846713 0.797754890
1216  14.93435279 0.190527791
1217  -3.83641079 0.075995951
1218   2.15090497 0.426560973
1219  -3.61166623 0.777188818
1220   8.49333248 0.891445999
1221  -7.46936100 0.148607446
1222  13.85406193 0.983656455
1223  12.20477754 0.499345090
1224  10.09415710 0.638127733
1225   5.37134772 0.110929011
1226   8.17660840 0.879411588
1227  -4.38804367 0.608933700
1228 -11.78145902 0.265134740
1229   6.18940186 0.970982743
1230 -16.24831477 0.844983635
1231   9.52790402 0.578152651
1232  16.44372225 0.264144422
1233  -2.48286428 0.893865621
1234   5.33297280 0.512990215
1235  -2.68912507 0.851636020
1236   9.94607707 0.644483197
1237  -1.93526852 0.550759844
1238   2.34310539 0.787853650
1239  11.79131608 0.983668283
1240   3.16689104 0.605394987
1241  10.47759320 0.919442774
1242   2.86973133 0.557835916
1243  10.30674302 0.442504870
1244  10.92820575 0.976183635
1245   7.98050212 0.139334994
1246  -0.64719705 0.981199028
1247  -2.63625596 0.341524563
1248  11.38799583 0.858987904
1249   1.37321916 0.202373294
1250  12.66698520 0.142127091
1251   5.83599540 0.864497670
1252   4.88659560 0.472598564
1253  13.00108599 0.961629827
1254   5.79514791 0.408377170
1255  -1.47807631 0.536772872
1256  -3.38142805 0.288956265
1257   6.25154986 0.828695103
1258   2.40919373 0.478123848
1259   3.72990486 0.056539500
1260  -9.90915815 0.603356617
1261   0.21737084 0.737251896
1262   5.36929388 0.026920178
1263  -1.05027354 0.034992509
1264  -4.97887624 0.506301429
1265  -6.40058435 0.014061876
1266  -0.14610837 0.619699963
1267   3.78483619 0.653952701
1268   3.84143365 0.162122572
1269   2.66030676 0.196542503
1270 -10.56809462 0.386200215
1271  -5.01140125 0.711703654
1272  -3.09809005 0.118120179
1273  -2.76110171 0.118809515
1274   2.85825107 0.129646974
1275   2.75993661 0.171779333
1276  11.55931169 0.372165133
1277   9.21211486 0.969079819
1278   6.02207148 0.498965865
1279  -3.52883224 0.954619249
1280  -2.60190803 0.069405278
1281   1.34183694 0.569402487
1282 -11.35155228 0.766344735
1283   1.04661568 0.023673810
1284  -1.90461932 0.179728300
1285  13.72465582 0.467775796
1286  19.14882438 0.476924297
1287  -1.07480326 0.944407858
1288  -8.44289331 0.059804028
1289   1.89732882 0.743225795
1290  -7.87832463 0.672539050
1291 -12.24163608 0.916803014
1292 -12.77212790 0.648129714
1293   6.39197262 0.622954436
1294   5.26261666 0.494421400
1295 -10.65239640 0.695527931
1296   4.63841458 0.499519163
1297  -2.94276544 0.429201572
1298   4.68788953 0.639613685
1299  -1.03031400 0.349342009
1300  -2.69946354 0.221796918
1301 -15.32237714 0.631289988
1302  -8.31962698 0.925363812
1303  -5.80897714 0.833536878
1304   7.16070989 0.832098478
1305 -10.99679727 0.794048223
1306   0.84514458 0.748014415
1307   2.23308495 0.111176288
1308   3.56351018 0.599805508
1309   0.88336430 0.746908710
1310 -14.63461670 0.314391808
1311   4.39039715 0.079604833
1312  -7.07001439 0.633705345
1313   2.11252583 0.461468123
1314   7.60219364 0.497389476
1315  -4.87713428 0.039952736
1316   2.17515292 0.421830084
1317   0.64302362 0.267982804
1318 -22.29371533 0.646257366
1319   0.31652779 0.060548371
1320   7.93445046 0.343570449
1321   0.28292029 0.651909785
1322   2.77775640 0.637679287
1323   6.22941586 0.291132945
1324  23.68567532 0.708513840
1325   9.49503014 0.645200206
1326   0.87405420 0.063154289
1327  -4.04931224 0.110797498
1328   8.91607239 0.732917195
1329  -5.77728018 0.635435595
1330 -16.37296319 0.343727613
1331   9.87409940 0.774177478
1332  -8.11360210 0.377765616
1333  14.54242540 0.204343527
1334   0.36239636 0.115528352
1335  19.51009176 0.181365423
1336   1.23592729 0.011676577
1337 -15.81877035 0.767155028
1338  -0.05911251 0.737944231
1339  -6.55395965 0.214062137
1340  -7.85591487 0.539865054
1341  -9.73010882 0.730924287
1342  11.79433862 0.267116856
1343  -8.84308360 0.088069165
1344  -5.56689174 0.405987947
1345   7.59010135 0.655631611
1346  10.07629305 0.031106157
1347  -6.19331485 0.052350502
1348  -4.58626710 0.326901540
1349  -5.19431549 0.125740555
1350  -2.08129025 0.034657174
1351 -10.48798034 0.153632237
1352  13.04657686 0.317295703
1353   1.94142067 0.731437668
1354  -1.62470735 0.701070475
1355 -12.27046912 0.505781742
1356  -2.96095228 0.122808075
1357  -2.91847765 0.372668438
1358 -14.83230131 0.100749725
1359  16.57350659 0.707854947
1360  10.05473238 0.244046174
1361   5.50858969 0.070691273
1362   7.65309196 0.245393047
1363   7.16359996 0.056261015
1364   4.33026356 0.318855549
1365  -4.65721575 0.271249938
1366   2.85909691 0.309377566
1367   3.02736080 0.553944209
1368   6.22796768 0.763945813
1369  -4.47036396 0.197721195
1370   2.78901176 0.441166128
1371  -9.94574794 0.964660659
1372   1.86451969 0.704635530
1373 -10.38926659 0.772304221
1374  -5.36565800 0.029527218
1375   1.99230152 0.578448308
1376  13.65547415 0.936050102
1377  -2.05229879 0.851521142
1378   0.99504588 0.974891334
1379  -1.46027404 0.320227281
1380  -8.45614275 0.727910071
1381  -0.95201934 0.199101032
1382  -2.46642929 0.462252060
1383  -6.44060430 0.703637604
1384  -2.58115910 0.084948525
1385   0.76248197 0.125769097
1386  12.00603845 0.675927328
1387   1.97538215 0.782502470
1388   2.23331320 0.870228155
1389  -3.10226060 0.485056198
1390  12.59337170 0.584729095
1391  -2.42247402 0.387588168
1392   9.41981063 0.374604221
1393   6.26806243 0.727453335
1394  -5.30630356 0.427294265
1395  13.81542647 0.394246994
1396   1.05647858 0.646684666
1397 -12.25005208 0.010531726
1398  -4.58162076 0.077133994
1399   0.58094190 0.400275636
1400   5.79443858 0.641731247
1401   8.87635216 0.913593476
1402   9.71048520 0.955285711
1403  13.10563373 0.908471848
1404   4.99194220 0.967014095
1405  15.88178853 0.041518216
1406   9.35962068 0.864770023
1407  -7.53095731 0.300106124
1408  12.18427585 0.248876997
1409   9.22034502 0.450149366
1410  -1.02861237 0.684246939
1411  -2.98140404 0.326901490
1412  -4.64316598 0.425381055
1413  15.35233259 0.630774937
1414  -1.85655250 0.226889991
1415  15.43748330 0.584219351
1416  10.39060893 0.387854461
1417   2.80705696 0.564024865
1418   3.48201221 0.787103673
1419   7.03787977 0.112019552
1420   8.41853061 0.798376796
1421  15.63925527 0.873984550
1422  -4.05742183 0.699131238
1423   6.56954685 0.720018710
1424   2.44007265 0.232697343
1425   3.75597926 0.975133449
1426   2.92362149 0.290975435
1427  -4.74372257 0.003738451
1428   1.28365940 0.987536495
1429  15.65288265 0.179629701
1430 -11.76385004 0.850614822
1431   1.56331228 0.592017435
1432  -9.64774741 0.024951969
1433  -9.44879860 0.993960270
1434  29.33340056 0.913358233
1435   7.97233120 0.021820585
1436 -12.10837953 0.401535846
1437  -1.20729618 0.984977268
1438   3.63219301 0.491142613
1439   2.79853507 0.663823888
1440   3.19584583 0.612511282
1441  -0.81790885 0.908769330
1442  -1.67795944 0.611690031
1443   2.55137163 0.109447998
1444   4.36572889 0.382049700
1445  -6.35667866 0.162787163
1446  -0.76239101 0.892383562
1447  -3.99558996 0.466572017
1448  -0.47513018 0.457760464
1449 -10.69568261 0.544872910
1450   4.30943512 0.982456072
1451   2.91825703 0.823403368
1452   0.10753188 0.945676881
1453  -8.38623073 0.923085521
1454   4.95690232 0.188128654
1455   5.39956649 0.331692462
1456  -1.47421789 0.327711090
1457  -1.81689665 0.713285385
1458   5.15137860 0.414906436
1459   5.68897151 0.110799415
1460   0.78825159 0.396824099
1461  -1.78376652 0.929264595
1462   0.76991060 0.950124414
1463  15.81469073 0.951245195
1464  -4.33820920 0.009896093
1465   1.67174323 0.821983745
1466   0.38997945 0.928857784
1467   1.97848484 0.175680230
1468  -5.81067801 0.772580245
1469 -10.45208478 0.418845035
1470  13.34024524 0.905645046
1471  -8.79585122 0.906516178
1472   2.89093397 0.113010960
1473   2.22324289 0.799940482
1474   8.95497981 0.984663669
1475   0.93288527 0.277914575
1476 -17.35306978 0.455587022
1477  -3.26914604 0.406757639
1478   8.75871227 0.067059659
1479   1.79914932 0.784879863
1480  -0.67305388 0.006393497
1481   1.66805704 0.039614073
1482   9.03868439 0.601066847
1483   4.29458670 0.015772820
1484  -8.15564320 0.939633197
1485  12.50538902 0.766347628
1486  -0.45547258 0.464314122
1487  -9.47180656 0.640114882
1488 -13.25567198 0.125841930
1489   2.87660101 0.381931128
1490   7.37834152 0.648958712
1491  -0.45874073 0.303139498
1492   4.87941450 0.500090729
1493   4.50344891 0.311329309
1494  -6.14257896 0.061368838
1495   5.98243271 0.873804882
1496  -2.64694079 0.080493398
1497 -17.79727796 0.188420116
1498 -13.52552336 0.798403568
1499   2.29086373 0.518700767
1500   5.21493652 0.788828533
1501  -8.09641615 0.775041349
1502   5.87005782 0.079447757
1503  10.74795720 0.955691540
1504  -8.01115709 0.004508053
1505  -7.53735064 0.054195934
1506  -6.79130165 0.877193354
1507  -1.26419539 0.837772170
1508   8.31082852 0.967509866
1509  21.83090247 0.261529880
1510  11.20453234 0.913858875
1511   7.19128396 0.541942489
1512  -2.93623595 0.860095891
1513  -3.61446403 0.022418065
1514  -6.59997709 0.532998307
1515   3.71486934 0.522669434
1516  18.03420874 0.295064126
1517  -8.75452291 0.390175021
1518  -7.83680812 0.263760724
1519  -1.10263921 0.501819826
1520   2.05633484 0.338684642
1521   5.25636848 0.558667384
1522  -7.33260497 0.457327559
1523   3.86721296 0.612182242
1524 -15.94331373 0.478329365
1525   3.71501899 0.264241588
1526  18.26175822 0.023212661
1527  -5.21093378 0.184378036
1528  -2.44074986 0.297114134
1529 -11.88339919 0.875956945
1530   7.52127093 0.927322099
1531   5.31597834 0.416344968
1532  11.42012314 0.952491078
1533  13.64950955 0.794183413
1534  12.50861255 0.390723282
1535  -3.48142207 0.538708662
1536  14.32910902 0.085221990
1537   5.76196699 0.313860477
1538   2.63751452 0.917424732
1539   2.99975231 0.208662214
1540   7.09852825 0.798246964
1541  -1.95742636 0.352166210
1542   7.80534904 0.386523123
1543  -4.47229047 0.290188493
1544  -4.35535158 0.761527294
1545   1.47083860 0.447897289
1546   3.09504296 0.048513534
1547   3.50446804 0.925072429
1548  12.00487617 0.574499971
1549  10.35171466 0.934193962
1550  -5.63256003 0.968833982
1551   7.15625220 0.467160468
1552  -7.81378393 0.790220187
1553   4.52101003 0.014459969
1554  12.90773453 0.990835752
1555   7.70737851 0.785329264
1556  -3.37196794 0.066025357
1557  -5.12793918 0.347459322
1558  -7.96083724 0.216608294
1559  12.81247279 0.287880308
1560   4.63872463 0.426881173
1561  -3.85439309 0.336532356
1562   4.55633320 0.108001536
1563  -2.40824634 0.135247519
1564   1.65932541 0.005108006
1565   3.26129578 0.093163961
1566  -3.52114597 0.544041275
1567  -9.08479260 0.111212700
1568   7.75150456 0.942726234
1569   7.44829768 0.396996218
1570  14.44430576 0.525470762
1571  -2.13457508 0.207577358
1572   9.74871681 0.537177845
1573  -4.53338693 0.625854028
1574  16.15962824 0.947933141
1575  -0.17711664 0.480940902
1576  -7.21470818 0.006952612
1577  -6.27644212 0.737909602
1578  -0.81648165 0.230003567
1579  -2.10429152 0.209671398
1580   7.69291241 0.987903443
1581  -0.32284504 0.183904658
1582  -0.90833921 0.782169770
1583  10.35542238 0.201758865
1584  10.40788689 0.540802365
1585  10.80011849 0.298263948
1586   7.39943598 0.785716539
1587 -12.71674257 0.154135834
1588  16.67139866 0.116794235
1589  12.47832985 0.998179468
1590   3.24041348 0.653080096
1591  -5.50381593 0.995396942
1592 -10.41952811 0.576472768
1593   4.33514092 0.146434686
1594   4.41294276 0.507165968
1595  -0.14746982 0.698144836
1596  -1.33323051 0.466481571
1597  -7.01201350 0.797150114
1598   6.58669848 0.942287809
1599   7.19444974 0.053569397
1600  -5.66046997 0.435728340
1601  -5.07828702 0.497727572
1602  13.72045272 0.324222944
1603   9.99111984 0.355713969
1604  -4.42363728 0.071790181
1605  -2.34300923 0.618434528
1606   4.98594041 0.605667438
1607  -2.45307721 0.894546647
1608  -3.52276424 0.760086779
1609  -3.69489441 0.960758209
1610  13.04792817 0.511273320
1611  21.61433486 0.236270637
1612  -9.57303968 0.964235539
1613  11.70400744 0.391045695
1614   4.25170422 0.411577090
1615   7.87516537 0.952858161
1616   9.89202673 0.971106687
1617   7.51554467 0.505791978
1618   2.17944879 0.893835908
1619   0.82420351 0.213912155
1620   2.47121932 0.688019842
1621 -14.88503628 0.640950883
1622   8.16032283 0.277742858
1623  -4.65776244 0.129415853
1624   7.48274838 0.074213153
1625   7.70537066 0.476778957
1626   5.88202944 0.351838898
1627   1.95618325 0.106331699
1628   7.22064623 0.511434587
1629 -18.64632081 0.009314188
1630  -6.16794611 0.526204245
1631   2.14042033 0.675800465
1632  -1.89535048 0.916845690
1633  -7.77156605 0.069742819
1634  -6.84078801 0.865082345
1635   8.17539904 0.095895629
1636  10.75170309 0.821383078
1637  14.31498805 0.117893208
1638  -2.82264467 0.809086411
1639   0.11117380 0.400587471
1640   6.43898314 0.333163663
1641   9.48110784 0.465173316
1642   5.39395511 0.695273081
1643  -2.05636570 0.508060862
1644   0.68666117 0.647109494
1645  -6.41880322 0.267530762
1646  -0.12096589 0.986901165
1647   6.46062643 0.588580914
1648  -4.20926136 0.550783675
1649   4.07354300 0.907963701
1650  10.84045143 0.900920521
1651   2.64504664 0.767700269
1652  10.34578229 0.197810342
1653  -0.19222273 0.281932395
1654   3.47400952 0.977555902
1655  11.04549389 0.694010579
1656   6.79729856 0.056652433
1657   9.28300628 0.598930531
1658  -3.53453282 0.183412212
1659   8.04028248 0.250746943
1660   5.75964045 0.424692336
1661  -4.98252741 0.867446071
1662  12.00352175 0.289615080
1663   7.53497791 0.350915526
1664   2.54579776 0.655113837
1665  -9.29572208 0.900136667
1666   6.41659249 0.100570650
1667   7.37095646 0.907179211
1668 -12.78417775 0.262214556
1669   0.87962107 0.624657444
1670  -5.96939907 0.296725805
1671  -2.56857339 0.604065931
1672   4.27131811 0.962952479
1673  21.72603838 0.442485270
1674   6.10056565 0.418383130
1675  10.48099521 0.333593221
1676  19.28363092 0.382408442
1677   2.12080726 0.601206970
1678  -6.82450704 0.740158518
1679  11.32395692 0.627015570
1680   5.00040701 0.476274658
1681 -11.64750733 0.105099095
1682   5.77442654 0.576560214
1683   0.31340364 0.516479036
1684  -2.09881449 0.146089191
1685   5.12411327 0.368130477
1686   1.70530391 0.621828438
1687 -12.95649749 0.355726301
1688   8.43735652 0.275383759
1689 -15.56161079 0.413160084
1690   5.28942694 0.069125495
1691   5.96040877 0.438716686
1692  -2.59318107 0.571116303
1693   6.95988992 0.650760909
1694  14.00074797 0.623645969
1695   1.66101456 0.558763985
1696  -2.57968349 0.648185379
1697  -5.47584253 0.716901151
1698   6.37222581 0.060563130
1699   2.83664864 0.842419730
1700   1.48926558 0.620280308
1701   0.33471689 0.170312461
1702   5.21648412 0.317639631
1703   0.51733642 0.843867329
1704   9.86005834 0.306036746
1705  -5.81145791 0.975655452
1706  -5.43219061 0.303385368
1707   5.87157118 0.677369776
1708   2.08889926 0.310200439
1709  -2.53433085 0.194730908
1710   7.01359575 0.674259533
1711  -2.00936260 0.682056466
1712  -2.98240739 0.787899917
1713  -7.43289210 0.357483044
1714 -12.58905988 0.981387385
1715   5.78095517 0.533526274
1716  -1.23065889 0.687266774
1717  -6.82309960 0.293249774
1718   8.47000829 0.842056399
1719  -5.81624772 0.303700280
1720 -14.83571031 0.311387926
1721   4.66808472 0.091222946
1722  -2.90144463 0.438301785
1723  10.62458662 0.828335698
1724   7.88002491 0.990156110
1725  10.27680283 0.251087079
1726  -9.42498970 0.292462244
1727   6.73027640 0.213065205
1728   1.28169895 0.353152789
1729 -14.29203733 0.264563048
1730  20.35772711 0.265208837
1731   3.55095071 0.242905653
1732 -17.97067670 0.373951756
1733  10.53141139 0.247520698
1734   0.05293205 0.579940423
1735  12.79674707 0.288031751
1736  -5.44235185 0.075899079
1737  14.29464811 0.960707538
1738  -1.36753291 0.124265178
1739  -4.25946974 0.521720352
1740 -12.46519252 0.385503339
1741  -6.65343143 0.540942219
1742   5.55949184 0.143194404
1743  -1.20480594 0.515905644
1744  -4.13839908 0.164461445
1745  -2.21345425 0.812969725
1746   3.94223380 0.229238952
1747 -10.78661097 0.395049514
1748   3.06997341 0.791234255
1749  24.82205477 0.110859039
1750   6.28791249 0.867125744
1751  -2.80296119 0.703583849
1752  13.24274039 0.425951975
1753  -0.19577471 0.361568727
1754  -2.34894781 0.954814545
1755  19.76339577 0.635462177
1756  -1.87591480 0.149121567
1757  -7.70962391 0.711708342
1758  -2.46291902 0.390902746
1759 end data
1760 regression /variables=v0 v1 /statistics defaults /dependent=v0 /method=enter.
1761 ])
1762
1763 AT_CHECK([pspp -O format=csv regression.sps], [0], [dnl
1764 Table: Reading free-form data from INLINE.
1765 Variable,Format
1766 v0,F8.0
1767 v1,F8.0
1768
1769 Table: Model Summary (v0)
1770 ,R,R Square,Adjusted R Square,Std. Error of the Estimate
1771 ,.05,.00,.00,8.11
1772
1773 Table: ANOVA (v0)
1774 ,,Sum of Squares,df,Mean Square,F,Sig.
1775 ,Regression,235.23,1,235.23,3.58,.059
1776 ,Residual,98438.40,1498,65.71,,
1777 ,Total,98673.63,1499,,,
1778
1779 Table: Coefficients (v0)
1780 ,,Unstandardized Coefficients,,Standardized Coefficients,,
1781 ,,B,Std. Error,Beta,t,Sig.
1782 ,(Constant),1.24,.42,.00,2.95,.003
1783 ,v1,1.37,.72,.05,1.89,.059
1784 ])
1785
1786 AT_CLEANUP
1787
1788 AT_SETUP([LINEAR REGRESSION no crash on all missing])
1789 AT_DATA([regcrash.sps], [dnl
1790 data list list /x * y.
1791 begin data.
1792  . .
1793  . .
1794  . .
1795  . .
1796  . .
1797  . .
1798  . .
1799  . .
1800  . .
1801  . .
1802 end data.
1803
1804
1805 regression /variables=x y /dependent=y.
1806 ])
1807
1808 AT_CHECK([pspp -o pspp.csv regcrash.sps], [1], [ignore], [ignore])
1809
1810 AT_CLEANUP
1811
1812
1813
1814 AT_SETUP([LINEAR REGRESSION missing dependent variable])
1815
1816 dnl Test for a bug where missing values in the dependent variable were not being
1817 dnl ignored like they should have been.
1818 AT_DATA([reg-mdv-ref.sps], [dnl
1819 data list notable list / v0 to v2.
1820 begin data
1821  0.65377128  7.735648 -23.97588
1822 -0.13087553  6.142625 -19.63854
1823  0.34880368  7.651430 -25.26557
1824  0.69249021  6.125125 -16.57090
1825 -0.07368178  8.245789 -25.80001
1826 -0.34404919  6.031540 -17.56743
1827  0.75981559  9.832291 -28.35977
1828 -0.46958313  5.343832 -16.79548
1829 -0.06108490  8.838262 -29.25689
1830  0.56154863  6.200189 -18.58219
1831 end data
1832 regression /variables=v0 v1
1833              /statistics defaults
1834              /dependent=v2
1835              /method=enter.
1836 ])
1837
1838 AT_CHECK([pspp -o pspp-ref.csv reg-mdv-ref.sps])
1839
1840 AT_DATA([reg-mdv.sps], [dnl
1841 data list notable list / v0 to v2.
1842 begin data
1843  0.65377128  7.735648 -23.97588
1844 -0.13087553  6.142625 -19.63854
1845  0.34880368  7.651430 -25.26557
1846  0.69249021  6.125125 -16.57090
1847 -0.07368178  8.245789 -25.80001
1848 -0.34404919  6.031540 -17.56743
1849  0.75981559  9.832291 -28.35977
1850 -0.46958313  5.343832 -16.79548
1851 -0.06108490  8.838262 -29.25689
1852  0.56154863  6.200189 -18.58219
1853  0.5         8         9
1854 end data
1855
1856 missing values v2 (9).
1857
1858 regression /variables=v0 v1
1859              /statistics defaults
1860              /dependent=v2
1861              /method=enter.
1862 ])
1863
1864 AT_CHECK([pspp -o pspp.csv reg-mdv.sps])
1865
1866 AT_CHECK([diff pspp.csv pspp-ref.csv])
1867
1868
1869 AT_CLEANUP
1870
1871 AT_SETUP([LINEAR REGRESSION with invalid syntax (and empty dataset)])
1872
1873 AT_DATA([ss.sps], [dnl
1874 data list notable list / v0 to v2.
1875 begin data
1876 end data.
1877
1878 regression /variables=v0 v1
1879              /statistics r coeff anova
1880              /dependent=v2
1881              /method=enter v2.
1882 ])
1883
1884 AT_CHECK([pspp ss.sps], [1], [ignore])
1885
1886 AT_CLEANUP
1887
1888
1889 dnl The following example comes from 
1890 dnl http://www.ats.ucla.edu/stat/spss/output/reg_spss%28long%29.htm
1891 AT_SETUP([LINEAR REGRESSION coefficient confidence interval])
1892
1893 AT_DATA([conf.sps], [dnl
1894 set format = F22.3.
1895
1896 data list notable list /math female socst read science *
1897 begin data.
1898     41.00       .00     57.00     57.00     47.00
1899     53.00      1.00     61.00     68.00     63.00
1900     54.00       .00     31.00     44.00     58.00
1901     47.00       .00     56.00     63.00     53.00
1902     57.00       .00     61.00     47.00     53.00
1903     51.00       .00     61.00     44.00     63.00
1904     42.00       .00     61.00     50.00     53.00
1905     45.00       .00     36.00     34.00     39.00
1906     54.00       .00     51.00     63.00     58.00
1907     52.00       .00     51.00     57.00     50.00
1908     51.00       .00     61.00     60.00     53.00
1909     51.00       .00     61.00     57.00     63.00
1910     71.00       .00     71.00     73.00     61.00
1911     57.00       .00     46.00     54.00     55.00
1912     50.00       .00     56.00     45.00     31.00
1913     43.00       .00     56.00     42.00     50.00
1914     51.00       .00     56.00     47.00     50.00
1915     60.00       .00     56.00     57.00     58.00
1916     62.00       .00     61.00     68.00     55.00
1917     57.00       .00     46.00     55.00     53.00
1918     35.00       .00     41.00     63.00     66.00
1919     75.00       .00     66.00     63.00     72.00
1920     45.00       .00     56.00     50.00     55.00
1921     57.00       .00     61.00     60.00     61.00
1922     45.00       .00     46.00     37.00     39.00
1923     46.00       .00     31.00     34.00     39.00
1924     66.00       .00     66.00     65.00     61.00
1925     57.00       .00     46.00     47.00     58.00
1926     49.00       .00     46.00     44.00     39.00
1927     49.00       .00     41.00     52.00     55.00
1928     57.00       .00     51.00     42.00     47.00
1929     64.00       .00     61.00     76.00     64.00
1930     63.00       .00     71.00     65.00     66.00
1931     57.00       .00     31.00     42.00     72.00
1932     50.00       .00     61.00     52.00     61.00
1933     58.00       .00     66.00     60.00     61.00
1934     75.00       .00     66.00     68.00     66.00
1935     68.00       .00     66.00     65.00     66.00
1936     44.00       .00     36.00     47.00     36.00
1937     40.00       .00     51.00     39.00     39.00
1938     41.00       .00     51.00     47.00     42.00
1939     62.00       .00     51.00     55.00     58.00
1940     57.00       .00     51.00     52.00     55.00
1941     43.00       .00     41.00     42.00     50.00
1942     48.00       .00     66.00     65.00     63.00
1943     63.00       .00     46.00     55.00     69.00
1944     39.00       .00     47.00     50.00     49.00
1945     70.00       .00     51.00     65.00     63.00
1946     63.00       .00     46.00     47.00     53.00
1947     59.00       .00     51.00     57.00     47.00
1948     61.00       .00     56.00     53.00     57.00
1949     38.00       .00     41.00     39.00     47.00
1950     61.00       .00     46.00     44.00     50.00
1951     49.00       .00     71.00     63.00     55.00
1952     73.00       .00     66.00     73.00     69.00
1953     44.00       .00     42.00     39.00     26.00
1954     42.00       .00     32.00     37.00     33.00
1955     39.00       .00     46.00     42.00     56.00
1956     55.00       .00     41.00     63.00     58.00
1957     52.00       .00     51.00     48.00     44.00
1958     45.00       .00     61.00     50.00     58.00
1959     61.00       .00     66.00     47.00     69.00
1960     39.00       .00     46.00     44.00     34.00
1961     41.00       .00     36.00     34.00     36.00
1962     50.00       .00     61.00     50.00     36.00
1963     40.00       .00     26.00     44.00     50.00
1964     60.00       .00     66.00     60.00     55.00
1965     47.00       .00     26.00     47.00     42.00
1966     59.00       .00     44.00     63.00     65.00
1967     49.00       .00     36.00     50.00     44.00
1968     46.00       .00     51.00     44.00     39.00
1969     58.00       .00     61.00     60.00     58.00
1970     71.00       .00     66.00     73.00     63.00
1971     58.00       .00     66.00     68.00     74.00
1972     46.00       .00     51.00     55.00     58.00
1973     43.00       .00     31.00     47.00     45.00
1974     54.00       .00     61.00     55.00     49.00
1975     56.00       .00     66.00     68.00     63.00
1976     46.00       .00     46.00     31.00     39.00
1977     54.00       .00     56.00     47.00     42.00
1978     57.00       .00     56.00     63.00     55.00
1979     54.00       .00     36.00     36.00     61.00
1980     71.00       .00     56.00     68.00     66.00
1981     48.00       .00     56.00     63.00     63.00
1982     40.00       .00     41.00     55.00     44.00
1983     64.00       .00     66.00     55.00     63.00
1984     51.00       .00     56.00     52.00     53.00
1985     39.00       .00     56.00     34.00     42.00
1986     40.00       .00     31.00     50.00     34.00
1987     61.00       .00     56.00     55.00     61.00
1988     66.00       .00     46.00     52.00     47.00
1989     49.00       .00     46.00     63.00     66.00
1990     65.00      1.00     61.00     68.00     69.00
1991     52.00      1.00     48.00     39.00     44.00
1992     46.00      1.00     51.00     44.00     47.00
1993     61.00      1.00     51.00     50.00     63.00
1994     72.00      1.00     56.00     71.00     66.00
1995     71.00      1.00     71.00     63.00     69.00
1996     40.00      1.00     41.00     34.00     39.00
1997     69.00      1.00     61.00     63.00     61.00
1998     64.00      1.00     66.00     68.00     69.00
1999     56.00      1.00     61.00     47.00     66.00
2000     49.00      1.00     41.00     47.00     33.00
2001     54.00      1.00     51.00     63.00     50.00
2002     53.00      1.00     51.00     52.00     61.00
2003     66.00      1.00     56.00     55.00     42.00
2004     67.00      1.00     56.00     60.00     50.00
2005     40.00      1.00     33.00     35.00     51.00
2006     46.00      1.00     56.00     47.00     50.00
2007     69.00      1.00     71.00     71.00     58.00
2008     40.00      1.00     56.00     57.00     61.00
2009     41.00      1.00     51.00     44.00     39.00
2010     57.00      1.00     66.00     65.00     46.00
2011     58.00      1.00     56.00     68.00     59.00
2012     57.00      1.00     66.00     73.00     55.00
2013     37.00      1.00     41.00     36.00     42.00
2014     55.00      1.00     46.00     43.00     55.00
2015     62.00      1.00     66.00     73.00     58.00
2016     64.00      1.00     56.00     52.00     58.00
2017     40.00      1.00     51.00     41.00     39.00
2018     50.00      1.00     51.00     60.00     50.00
2019     46.00      1.00     56.00     50.00     50.00
2020     53.00      1.00     56.00     50.00     39.00
2021     52.00      1.00     46.00     47.00     48.00
2022     45.00      1.00     46.00     47.00     34.00
2023     56.00      1.00     61.00     55.00     58.00
2024     45.00      1.00     56.00     50.00     44.00
2025     54.00      1.00     41.00     39.00     50.00
2026     56.00      1.00     46.00     50.00     47.00
2027     41.00      1.00     26.00     34.00     29.00
2028     54.00      1.00     56.00     57.00     50.00
2029     72.00      1.00     56.00     57.00     54.00
2030     56.00      1.00     51.00     68.00     50.00
2031     47.00      1.00     46.00     42.00     47.00
2032     49.00      1.00     66.00     61.00     44.00
2033     60.00      1.00     66.00     76.00     67.00
2034     54.00      1.00     46.00     47.00     58.00
2035     55.00      1.00     56.00     46.00     44.00
2036     33.00      1.00     41.00     39.00     42.00
2037     49.00      1.00     61.00     52.00     44.00
2038     43.00      1.00     51.00     28.00     44.00
2039     50.00      1.00     52.00     42.00     50.00
2040     52.00      1.00     51.00     47.00     39.00
2041     48.00      1.00     41.00     47.00     44.00
2042     58.00      1.00     66.00     52.00     53.00
2043     43.00      1.00     61.00     47.00     48.00
2044     41.00      1.00     31.00     50.00     55.00
2045     43.00      1.00     51.00     44.00     44.00
2046     46.00      1.00     41.00     47.00     40.00
2047     44.00      1.00     41.00     45.00     34.00
2048     43.00      1.00     46.00     47.00     42.00
2049     61.00      1.00     56.00     65.00     58.00
2050     40.00      1.00     51.00     43.00     50.00
2051     49.00      1.00     61.00     47.00     53.00
2052     56.00      1.00     66.00     57.00     58.00
2053     61.00      1.00     71.00     68.00     55.00
2054     50.00      1.00     61.00     52.00     54.00
2055     51.00      1.00     61.00     42.00     47.00
2056     42.00      1.00     41.00     42.00     42.00
2057     67.00      1.00     66.00     66.00     61.00
2058     53.00      1.00     61.00     47.00     53.00
2059     50.00      1.00     58.00     57.00     51.00
2060     51.00      1.00     31.00     47.00     63.00
2061     72.00      1.00     61.00     57.00     61.00
2062     48.00      1.00     61.00     52.00     55.00
2063     40.00      1.00     31.00     44.00     40.00
2064     53.00      1.00     61.00     50.00     61.00
2065     39.00      1.00     36.00     39.00     47.00
2066     63.00      1.00     41.00     57.00     55.00
2067     51.00      1.00     37.00     57.00     53.00
2068     45.00      1.00     43.00     42.00     50.00
2069     39.00      1.00     61.00     47.00     47.00
2070     42.00      1.00     39.00     42.00     31.00
2071     62.00      1.00     51.00     60.00     61.00
2072     44.00      1.00     51.00     44.00     35.00
2073     65.00      1.00     66.00     63.00     54.00
2074     63.00      1.00     71.00     65.00     55.00
2075     54.00      1.00     41.00     39.00     53.00
2076     45.00      1.00     36.00     50.00     58.00
2077     60.00      1.00     51.00     52.00     56.00
2078     49.00      1.00     51.00     60.00     50.00
2079     48.00      1.00     51.00     44.00     39.00
2080     57.00      1.00     61.00     52.00     63.00
2081     55.00      1.00     61.00     55.00     50.00
2082     66.00      1.00     56.00     50.00     66.00
2083     64.00      1.00     71.00     65.00     58.00
2084     55.00      1.00     51.00     52.00     53.00
2085     42.00      1.00     36.00     47.00     42.00
2086     56.00      1.00     61.00     63.00     55.00
2087     53.00      1.00     66.00     50.00     53.00
2088     41.00      1.00     41.00     42.00     42.00
2089     42.00      1.00     41.00     36.00     50.00
2090     53.00      1.00     56.00     50.00     55.00
2091     42.00      1.00     51.00     41.00     34.00
2092     60.00      1.00     56.00     47.00     50.00
2093     52.00      1.00     56.00     55.00     42.00
2094     38.00      1.00     46.00     42.00     36.00
2095     57.00      1.00     52.00     57.00     55.00
2096     58.00      1.00     61.00     55.00     58.00
2097     65.00      1.00     61.00     63.00     53.00
2098 end data.
2099
2100 regression
2101  /variables = math female socst read
2102  /statistics = coeff r anova ci (95)
2103  /dependent = science
2104  /method = enter 
2105 ])
2106
2107 AT_CHECK([pspp -O format=csv conf.sps], [0], [dnl
2108 Table: Model Summary (science)
2109 ,R,R Square,Adjusted R Square,Std. Error of the Estimate
2110 ,.699,.489,.479,7.148
2111
2112 Table: ANOVA (science)
2113 ,,Sum of Squares,df,Mean Square,F,Sig.
2114 ,Regression,9543.721,4,2385.930,46.695,.000
2115 ,Residual,9963.779,195,51.096,,
2116 ,Total,19507.500,199,,,
2117
2118 Table: Coefficients (science)
2119 ,,Unstandardized Coefficients,,Standardized Coefficients,,,95% Confidence Interval for B,
2120 ,,B,Std. Error,Beta,t,Sig.,Lower Bound,Upper Bound
2121 ,(Constant),12.325,3.194,.000,3.859,.000,6.027,18.624
2122 ,math,.389,.074,.368,5.252,.000,.243,.535
2123 ,female,-2.010,1.023,-.101,-1.965,.051,-4.027,.007
2124 ,socst,.050,.062,.054,.801,.424,-.073,.173
2125 ,read,.335,.073,.347,4.607,.000,.192,.479
2126 ])
2127
2128
2129 AT_CLEANUP