Fixed incorrect behaviour of REGRESSION when multiple dependent variables are entered
[pspp] / src / language / stats / oneway.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2007, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <gsl/gsl_cdf.h>
20 #include <gsl/gsl_matrix.h>
21 #include <math.h>
22
23 #include "data/case.h"
24 #include "data/casegrouper.h"
25 #include "data/casereader.h"
26 #include "data/dataset.h"
27 #include "data/dictionary.h"
28 #include "data/format.h"
29 #include "data/value.h"
30 #include "language/command.h"
31 #include "language/dictionary/split-file.h"
32 #include "language/lexer/lexer.h"
33 #include "language/lexer/value-parser.h"
34 #include "language/lexer/variable-parser.h"
35 #include "libpspp/ll.h"
36 #include "libpspp/message.h"
37 #include "libpspp/misc.h"
38 #include "libpspp/taint.h"
39 #include "linreg/sweep.h"
40 #include "tukey/tukey.h"
41 #include "math/categoricals.h"
42 #include "math/interaction.h"
43 #include "math/covariance.h"
44 #include "math/levene.h"
45 #include "math/moments.h"
46 #include "output/tab.h"
47
48 #include "gettext.h"
49 #define _(msgid) gettext (msgid)
50 #define N_(msgid) msgid
51
52 /* Workspace variable for each dependent variable */
53 struct per_var_ws
54 {
55   struct interaction *iact;
56   struct categoricals *cat;
57   struct covariance *cov;
58   struct levene *nl;
59
60   double n;
61
62   double sst;
63   double sse;
64   double ssa;
65
66   int n_groups;
67
68   double mse;
69 };
70
71 /* Per category data */
72 struct descriptive_data
73 {
74   const struct variable *var;
75   struct moments1 *mom;
76
77   double minimum;
78   double maximum;
79 };
80
81 enum missing_type
82   {
83     MISS_LISTWISE,
84     MISS_ANALYSIS,
85   };
86
87 enum statistics
88   {
89     STATS_DESCRIPTIVES = 0x0001,
90     STATS_HOMOGENEITY = 0x0002
91   };
92
93 struct coeff_node
94 {
95   struct ll ll; 
96   double coeff; 
97 };
98
99
100 struct contrasts_node
101 {
102   struct ll ll; 
103   struct ll_list coefficient_list;
104 };
105
106
107 struct oneway_spec;
108
109 typedef double df_func (const struct per_var_ws *pvw, const struct moments1 *mom_i, const struct moments1 *mom_j);
110 typedef double ts_func (int k, const struct moments1 *mom_i, const struct moments1 *mom_j, double std_err);
111 typedef double p1tail_func (double ts, double df1, double df2);
112
113 typedef double pinv_func (double std_err, double alpha, double df, int k, const struct moments1 *mom_i, const struct moments1 *mom_j);
114
115
116 struct posthoc
117 {
118   const char *syntax;
119   const char *label;
120
121   df_func *dff;
122   ts_func *tsf;
123   p1tail_func *p1f;
124
125   pinv_func *pinv;
126 };
127
128 struct oneway_spec
129 {
130   size_t n_vars;
131   const struct variable **vars;
132
133   const struct variable *indep_var;
134
135   enum statistics stats;
136
137   enum missing_type missing_type;
138   enum mv_class exclude;
139
140   /* List of contrasts */
141   struct ll_list contrast_list;
142
143   /* The weight variable */
144   const struct variable *wv;
145
146   /* The confidence level for multiple comparisons */
147   double alpha;
148
149   int *posthoc;
150   int n_posthoc;
151 };
152
153 static double
154 df_common (const struct per_var_ws *pvw, const struct moments1 *mom_i UNUSED, const struct moments1 *mom_j UNUSED)
155 {
156   return  pvw->n - pvw->n_groups;
157 }
158
159 static double
160 df_individual (const struct per_var_ws *pvw UNUSED, const struct moments1 *mom_i, const struct moments1 *mom_j)
161 {
162   double n_i, var_i;
163   double n_j, var_j;
164   double nom,denom;
165
166   moments1_calculate (mom_i, &n_i, NULL, &var_i, 0, 0);  
167   moments1_calculate (mom_j, &n_j, NULL, &var_j, 0, 0);
168   
169   if ( n_i <= 1.0 || n_j <= 1.0)
170     return SYSMIS;
171
172   nom = pow2 (var_i/n_i + var_j/n_j);
173   denom = pow2 (var_i/n_i) / (n_i - 1) + pow2 (var_j/n_j) / (n_j - 1);
174
175   return nom / denom;
176 }
177
178 static double lsd_pinv (double std_err, double alpha, double df, int k UNUSED, const struct moments1 *mom_i UNUSED, const struct moments1 *mom_j UNUSED)
179 {
180   return std_err * gsl_cdf_tdist_Pinv (1.0 - alpha / 2.0, df);
181 }
182
183 static double bonferroni_pinv (double std_err, double alpha, double df, int k, const struct moments1 *mom_i UNUSED, const struct moments1 *mom_j UNUSED)
184 {
185   const int m = k * (k - 1) / 2;
186   return std_err * gsl_cdf_tdist_Pinv (1.0 - alpha / (2.0 * m), df);
187 }
188
189 static double sidak_pinv (double std_err, double alpha, double df, int k, const struct moments1 *mom_i UNUSED, const struct moments1 *mom_j UNUSED)
190 {
191   const double m = k * (k - 1) / 2;
192   double lp = 1.0 - exp (log (1.0 - alpha) / m ) ;
193   return std_err * gsl_cdf_tdist_Pinv (1.0 - lp / 2.0, df);
194 }
195
196 static double tukey_pinv (double std_err, double alpha, double df, int k, const struct moments1 *mom_i UNUSED, const struct moments1 *mom_j UNUSED)
197 {
198   if ( k < 2 || df < 2)
199     return SYSMIS;
200
201   return std_err / sqrt (2.0)  * qtukey (1 - alpha, 1.0, k, df, 1, 0);
202 }
203
204 static double scheffe_pinv (double std_err, double alpha, double df, int k, const struct moments1 *mom_i UNUSED, const struct moments1 *mom_j UNUSED)
205 {
206   double x = (k - 1) * gsl_cdf_fdist_Pinv (1.0 - alpha, k - 1, df);
207   return std_err * sqrt (x);
208 }
209
210 static double gh_pinv (double std_err UNUSED, double alpha, double df, int k, const struct moments1 *mom_i, const struct moments1 *mom_j)
211 {
212   double n_i, mean_i, var_i;
213   double n_j, mean_j, var_j;
214   double m;
215
216   moments1_calculate (mom_i, &n_i, &mean_i, &var_i, 0, 0);  
217   moments1_calculate (mom_j, &n_j, &mean_j, &var_j, 0, 0);
218
219   m = sqrt ((var_i/n_i + var_j/n_j) / 2.0);
220
221   if ( k < 2 || df < 2)
222     return SYSMIS;
223
224   return m * qtukey (1 - alpha, 1.0, k, df, 1, 0);
225 }
226
227
228 static double 
229 multiple_comparison_sig (double std_err,
230                                        const struct per_var_ws *pvw,
231                                        const struct descriptive_data *dd_i, const struct descriptive_data *dd_j,
232                                        const struct posthoc *ph)
233 {
234   int k = pvw->n_groups;
235   double df = ph->dff (pvw, dd_i->mom, dd_j->mom);
236   double ts = ph->tsf (k, dd_i->mom, dd_j->mom, std_err);
237   if ( df == SYSMIS)
238     return SYSMIS;
239   return  ph->p1f (ts, k - 1, df);
240 }
241
242 static double 
243 mc_half_range (const struct oneway_spec *cmd, const struct per_var_ws *pvw, double std_err, const struct descriptive_data *dd_i, const struct descriptive_data *dd_j, const struct posthoc *ph)
244 {
245   int k = pvw->n_groups;
246   double df = ph->dff (pvw, dd_i->mom, dd_j->mom);
247   if ( df == SYSMIS)
248     return SYSMIS;
249
250   return ph->pinv (std_err, cmd->alpha, df, k, dd_i->mom, dd_j->mom);
251 }
252
253 static double tukey_1tailsig (double ts, double df1, double df2)
254 {
255   double twotailedsig;
256
257   if (df2 < 2 || df1 < 1)
258     return SYSMIS;
259
260   twotailedsig = 1.0 - ptukey (ts, 1.0, df1 + 1, df2, 1, 0);
261
262   return twotailedsig / 2.0;
263 }
264
265 static double lsd_1tailsig (double ts, double df1 UNUSED, double df2)
266 {
267   return ts < 0 ? gsl_cdf_tdist_P (ts, df2) : gsl_cdf_tdist_Q (ts, df2);
268 }
269
270 static double sidak_1tailsig (double ts, double df1, double df2)
271 {
272   double ex = (df1 + 1.0) * df1 / 2.0;
273   double lsd_sig = 2 * lsd_1tailsig (ts, df1, df2);
274
275   return 0.5 * (1.0 - pow (1.0 - lsd_sig, ex));
276 }
277
278 static double bonferroni_1tailsig (double ts, double df1, double df2)
279 {
280   const int m = (df1 + 1) * df1 / 2;
281
282   double p = ts < 0 ? gsl_cdf_tdist_P (ts, df2) : gsl_cdf_tdist_Q (ts, df2);
283   p *= m;
284
285   return p > 0.5 ? 0.5 : p;
286 }
287
288 static double scheffe_1tailsig (double ts, double df1, double df2)
289 {
290   return 0.5 * gsl_cdf_fdist_Q (ts, df1, df2);
291 }
292
293
294 static double tukey_test_stat (int k UNUSED, const struct moments1 *mom_i, const struct moments1 *mom_j, double std_err)
295 {
296   double ts;
297   double n_i, mean_i, var_i;
298   double n_j, mean_j, var_j;
299
300   moments1_calculate (mom_i, &n_i, &mean_i, &var_i, 0, 0);  
301   moments1_calculate (mom_j, &n_j, &mean_j, &var_j, 0, 0);
302
303   ts =  (mean_i - mean_j) / std_err;
304   ts = fabs (ts) * sqrt (2.0);
305
306   return ts;
307 }
308
309 static double lsd_test_stat (int k UNUSED, const struct moments1 *mom_i, const struct moments1 *mom_j, double std_err)
310 {
311   double n_i, mean_i, var_i;
312   double n_j, mean_j, var_j;
313
314   moments1_calculate (mom_i, &n_i, &mean_i, &var_i, 0, 0);  
315   moments1_calculate (mom_j, &n_j, &mean_j, &var_j, 0, 0);
316
317   return (mean_i - mean_j) / std_err;
318 }
319
320 static double scheffe_test_stat (int k, const struct moments1 *mom_i, const struct moments1 *mom_j, double std_err)
321 {
322   double t;
323   double n_i, mean_i, var_i;
324   double n_j, mean_j, var_j;
325
326   moments1_calculate (mom_i, &n_i, &mean_i, &var_i, 0, 0);  
327   moments1_calculate (mom_j, &n_j, &mean_j, &var_j, 0, 0);
328
329   t = (mean_i - mean_j) / std_err;
330   t = pow2 (t);
331   t /= k - 1;
332
333   return t;
334 }
335
336 static double gh_test_stat (int k UNUSED, const struct moments1 *mom_i, const struct moments1 *mom_j, double std_err UNUSED)
337 {
338   double ts;
339   double thing;
340   double n_i, mean_i, var_i;
341   double n_j, mean_j, var_j;
342
343   moments1_calculate (mom_i, &n_i, &mean_i, &var_i, 0, 0);  
344   moments1_calculate (mom_j, &n_j, &mean_j, &var_j, 0, 0);
345
346   thing = var_i / n_i + var_j / n_j;
347   thing /= 2.0;
348   thing = sqrt (thing);
349
350   ts = (mean_i - mean_j) / thing;
351
352   return fabs (ts);
353 }
354
355
356
357 static const struct posthoc ph_tests [] = 
358   {
359     { "LSD",        N_("LSD"),          df_common, lsd_test_stat,     lsd_1tailsig,          lsd_pinv},
360     { "TUKEY",      N_("Tukey HSD"),    df_common, tukey_test_stat,   tukey_1tailsig,        tukey_pinv},
361     { "BONFERRONI", N_("Bonferroni"),   df_common, lsd_test_stat,     bonferroni_1tailsig,   bonferroni_pinv},
362     { "SCHEFFE",    N_("Scheffé"),      df_common, scheffe_test_stat, scheffe_1tailsig,      scheffe_pinv},
363     { "GH",         N_("Games-Howell"), df_individual, gh_test_stat,  tukey_1tailsig,        gh_pinv},
364     { "SIDAK",      N_("Å idák"),        df_common, lsd_test_stat,     sidak_1tailsig,        sidak_pinv}
365   };
366
367
368 struct oneway_workspace
369 {
370   /* The number of distinct values of the independent variable, when all
371      missing values are disregarded */
372   int actual_number_of_groups;
373
374   struct per_var_ws *vws;
375
376   /* An array of descriptive data.  One for each dependent variable */
377   struct descriptive_data **dd_total;
378 };
379
380 /* Routines to show the output tables */
381 static void show_anova_table (const struct oneway_spec *, const struct oneway_workspace *);
382 static void show_descriptives (const struct oneway_spec *, const struct oneway_workspace *);
383 static void show_homogeneity (const struct oneway_spec *, const struct oneway_workspace *);
384
385 static void output_oneway (const struct oneway_spec *, struct oneway_workspace *ws);
386 static void run_oneway (const struct oneway_spec *cmd, struct casereader *input, const struct dataset *ds);
387
388
389 static void
390 destroy_coeff_list (struct contrasts_node *coeff_list)
391 {
392   struct coeff_node *cn = NULL;
393   struct coeff_node *cnx = NULL;
394   struct ll_list *cl = &coeff_list->coefficient_list;
395   
396   ll_for_each_safe (cn, cnx, struct coeff_node, ll, cl)
397     {
398       free (cn);
399     }
400   
401   free (coeff_list);
402 }
403
404 static void
405 oneway_cleanup (struct oneway_spec *cmd)
406 {
407   struct contrasts_node *coeff_list  = NULL;
408   struct contrasts_node *coeff_next  = NULL;
409   ll_for_each_safe (coeff_list, coeff_next, struct contrasts_node, ll, &cmd->contrast_list)
410     {
411       destroy_coeff_list (coeff_list);
412     }
413
414   free (cmd->posthoc);
415 }
416
417
418
419 int
420 cmd_oneway (struct lexer *lexer, struct dataset *ds)
421 {
422   const struct dictionary *dict = dataset_dict (ds);  
423   struct oneway_spec oneway ;
424   oneway.n_vars = 0;
425   oneway.vars = NULL;
426   oneway.indep_var = NULL;
427   oneway.stats = 0;
428   oneway.missing_type = MISS_ANALYSIS;
429   oneway.exclude = MV_ANY;
430   oneway.wv = dict_get_weight (dict);
431   oneway.alpha = 0.05;
432   oneway.posthoc = NULL;
433   oneway.n_posthoc = 0;
434
435   ll_init (&oneway.contrast_list);
436
437   
438   if ( lex_match (lexer, T_SLASH))
439     {
440       if (!lex_force_match_id (lexer, "VARIABLES"))
441         {
442           goto error;
443         }
444       lex_match (lexer, T_EQUALS);
445     }
446
447   if (!parse_variables_const (lexer, dict,
448                               &oneway.vars, &oneway.n_vars,
449                               PV_NO_DUPLICATE | PV_NUMERIC))
450     goto error;
451
452   lex_force_match (lexer, T_BY);
453
454   oneway.indep_var = parse_variable_const (lexer, dict);
455
456   while (lex_token (lexer) != T_ENDCMD)
457     {
458       lex_match (lexer, T_SLASH);
459
460       if (lex_match_id (lexer, "STATISTICS"))
461         {
462           lex_match (lexer, T_EQUALS);
463           while (lex_token (lexer) != T_ENDCMD && lex_token (lexer) != T_SLASH)
464             {
465               if (lex_match_id (lexer, "DESCRIPTIVES"))
466                 {
467                   oneway.stats |= STATS_DESCRIPTIVES;
468                 }
469               else if (lex_match_id (lexer, "HOMOGENEITY"))
470                 {
471                   oneway.stats |= STATS_HOMOGENEITY;
472                 }
473               else
474                 {
475                   lex_error (lexer, NULL);
476                   goto error;
477                 }
478             }
479         }
480       else if (lex_match_id (lexer, "POSTHOC"))
481         {
482           lex_match (lexer, T_EQUALS);
483           while (lex_token (lexer) != T_ENDCMD && lex_token (lexer) != T_SLASH)
484             {
485               int p;
486               bool method = false;
487               for (p = 0 ; p < sizeof (ph_tests) / sizeof (struct posthoc); ++p)
488                 {
489                   if (lex_match_id (lexer, ph_tests[p].syntax))
490                     {
491                       oneway.n_posthoc++;
492                       oneway.posthoc = xrealloc (oneway.posthoc, sizeof (*oneway.posthoc) * oneway.n_posthoc);
493                       oneway.posthoc[oneway.n_posthoc - 1] = p;
494                       method = true;
495                       break;
496                     }
497                 }
498               if ( method == false)
499                 {
500                   if (lex_match_id (lexer, "ALPHA"))
501                     {
502                       if ( !lex_force_match (lexer, T_LPAREN))
503                         goto error;
504                       lex_force_num (lexer);
505                       oneway.alpha = lex_number (lexer);
506                       lex_get (lexer);
507                       if ( !lex_force_match (lexer, T_RPAREN))
508                         goto error;
509                     }
510                   else
511                     {
512                       msg (SE, _("The post hoc analysis method %s is not supported."), lex_tokcstr (lexer));
513                       lex_error (lexer, NULL);
514                       goto error;
515                     }
516                 }
517             }
518         }
519       else if (lex_match_id (lexer, "CONTRAST"))
520         {
521           struct contrasts_node *cl = xzalloc (sizeof *cl);
522
523           struct ll_list *coefficient_list = &cl->coefficient_list;
524           lex_match (lexer, T_EQUALS);
525
526           ll_init (coefficient_list);
527
528           while (lex_token (lexer) != T_ENDCMD && lex_token (lexer) != T_SLASH)
529             {
530               if ( lex_is_number (lexer))
531                 {
532                   struct coeff_node *cc = xmalloc (sizeof *cc);
533                   cc->coeff = lex_number (lexer);
534
535                   ll_push_tail (coefficient_list, &cc->ll);
536                   lex_get (lexer);
537                 }
538               else
539                 {
540                   destroy_coeff_list (cl);
541                   lex_error (lexer, NULL);
542                   goto error;
543                 }
544             }
545
546           ll_push_tail (&oneway.contrast_list, &cl->ll);
547         }
548       else if (lex_match_id (lexer, "MISSING"))
549         {
550           lex_match (lexer, T_EQUALS);
551           while (lex_token (lexer) != T_ENDCMD && lex_token (lexer) != T_SLASH)
552             {
553               if (lex_match_id (lexer, "INCLUDE"))
554                 {
555                   oneway.exclude = MV_SYSTEM;
556                 }
557               else if (lex_match_id (lexer, "EXCLUDE"))
558                 {
559                   oneway.exclude = MV_ANY;
560                 }
561               else if (lex_match_id (lexer, "LISTWISE"))
562                 {
563                   oneway.missing_type = MISS_LISTWISE;
564                 }
565               else if (lex_match_id (lexer, "ANALYSIS"))
566                 {
567                   oneway.missing_type = MISS_ANALYSIS;
568                 }
569               else
570                 {
571                   lex_error (lexer, NULL);
572                   goto error;
573                 }
574             }
575         }
576       else
577         {
578           lex_error (lexer, NULL);
579           goto error;
580         }
581     }
582
583
584   {
585     struct casegrouper *grouper;
586     struct casereader *group;
587     bool ok;
588
589     grouper = casegrouper_create_splits (proc_open (ds), dict);
590     while (casegrouper_get_next_group (grouper, &group))
591       run_oneway (&oneway, group, ds);
592     ok = casegrouper_destroy (grouper);
593     ok = proc_commit (ds) && ok;
594   }
595
596   oneway_cleanup (&oneway);
597   free (oneway.vars);
598   return CMD_SUCCESS;
599
600  error:
601   oneway_cleanup (&oneway);
602   free (oneway.vars);
603   return CMD_FAILURE;
604 }
605
606
607 \f
608
609
610 static struct descriptive_data *
611 dd_create (const struct variable *var)
612 {
613   struct descriptive_data *dd = xmalloc (sizeof *dd);
614
615   dd->mom = moments1_create (MOMENT_VARIANCE);
616   dd->minimum = DBL_MAX;
617   dd->maximum = -DBL_MAX;
618   dd->var = var;
619
620   return dd;
621 }
622
623 static void
624 dd_destroy (struct descriptive_data *dd)
625 {
626   moments1_destroy (dd->mom);
627   free (dd);
628 }
629
630 static void *
631 makeit (const void *aux1, void *aux2 UNUSED)
632 {
633   const struct variable *var = aux1;
634
635   struct descriptive_data *dd = dd_create (var);
636
637   return dd;
638 }
639
640 static void 
641 killit (const void *aux1 UNUSED, void *aux2 UNUSED, void *user_data)
642 {
643   struct descriptive_data *dd = user_data;
644
645   dd_destroy (dd);
646 }
647
648
649 static void 
650 updateit (const void *aux1, void *aux2, void *user_data,
651           const struct ccase *c, double weight)
652 {
653   struct descriptive_data *dd = user_data;
654
655   const struct variable *varp = aux1;
656
657   const union value *valx = case_data (c, varp);
658
659   struct descriptive_data *dd_total = aux2;
660
661   moments1_add (dd->mom, valx->f, weight);
662   if (valx->f < dd->minimum)
663     dd->minimum = valx->f;
664
665   if (valx->f > dd->maximum)
666     dd->maximum = valx->f;
667
668   {
669     const struct variable *var = dd_total->var;
670     const union value *val = case_data (c, var);
671
672     moments1_add (dd_total->mom,
673                   val->f,
674                   weight);
675
676     if (val->f < dd_total->minimum)
677       dd_total->minimum = val->f;
678
679     if (val->f > dd_total->maximum)
680       dd_total->maximum = val->f;
681   }
682 }
683
684 static void
685 run_oneway (const struct oneway_spec *cmd,
686             struct casereader *input,
687             const struct dataset *ds)
688 {
689   int v;
690   struct taint *taint;
691   struct dictionary *dict = dataset_dict (ds);
692   struct casereader *reader;
693   struct ccase *c;
694
695   struct oneway_workspace ws;
696
697   ws.actual_number_of_groups = 0;
698   ws.vws = xzalloc (cmd->n_vars * sizeof (*ws.vws));
699   ws.dd_total = xmalloc (sizeof (struct descriptive_data) * cmd->n_vars);
700
701   for (v = 0 ; v < cmd->n_vars; ++v)
702     ws.dd_total[v] = dd_create (cmd->vars[v]);
703
704   for (v = 0; v < cmd->n_vars; ++v)
705     {
706       struct payload payload;
707       payload.create = makeit;
708       payload.update = updateit;
709       payload.calculate = NULL;
710       payload.destroy = killit;
711
712       ws.vws[v].iact = interaction_create (cmd->indep_var);
713       ws.vws[v].cat = categoricals_create (&ws.vws[v].iact, 1, cmd->wv,
714                                            cmd->exclude, cmd->exclude);
715
716       categoricals_set_payload (ws.vws[v].cat, &payload, 
717                                 CONST_CAST (struct variable *, cmd->vars[v]),
718                                 ws.dd_total[v]);
719
720
721       ws.vws[v].cov = covariance_2pass_create (1, &cmd->vars[v],
722                                                ws.vws[v].cat, 
723                                                cmd->wv, cmd->exclude);
724       ws.vws[v].nl = levene_create (var_get_width (cmd->indep_var), NULL);
725     }
726
727   c = casereader_peek (input, 0);
728   if (c == NULL)
729     {
730       casereader_destroy (input);
731       goto finish;
732     }
733   output_split_file_values (ds, c);
734   case_unref (c);
735
736   taint = taint_clone (casereader_get_taint (input));
737
738   input = casereader_create_filter_missing (input, &cmd->indep_var, 1,
739                                             cmd->exclude, NULL, NULL);
740   if (cmd->missing_type == MISS_LISTWISE)
741     input = casereader_create_filter_missing (input, cmd->vars, cmd->n_vars,
742                                               cmd->exclude, NULL, NULL);
743   input = casereader_create_filter_weight (input, dict, NULL, NULL);
744
745   reader = casereader_clone (input);
746   for (; (c = casereader_read (reader)) != NULL; case_unref (c))
747     {
748       int i;
749       double w = dict_get_case_weight (dict, c, NULL);
750
751       for (i = 0; i < cmd->n_vars; ++i)
752         {
753           struct per_var_ws *pvw = &ws.vws[i];
754           const struct variable *v = cmd->vars[i];
755           const union value *val = case_data (c, v);
756
757           if ( MISS_ANALYSIS == cmd->missing_type)
758             {
759               if ( var_is_value_missing (v, val, cmd->exclude))
760                 continue;
761             }
762
763           covariance_accumulate_pass1 (pvw->cov, c);
764           levene_pass_one (pvw->nl, val->f, w, case_data (c, cmd->indep_var));
765         }
766     }
767   casereader_destroy (reader);
768
769   reader = casereader_clone (input);
770   for ( ; (c = casereader_read (reader) ); case_unref (c))
771     {
772       int i;
773       double w = dict_get_case_weight (dict, c, NULL);
774       for (i = 0; i < cmd->n_vars; ++i)
775         {
776           struct per_var_ws *pvw = &ws.vws[i];
777           const struct variable *v = cmd->vars[i];
778           const union value *val = case_data (c, v);
779
780           if ( MISS_ANALYSIS == cmd->missing_type)
781             {
782               if ( var_is_value_missing (v, val, cmd->exclude))
783                 continue;
784             }
785
786           covariance_accumulate_pass2 (pvw->cov, c);
787           levene_pass_two (pvw->nl, val->f, w, case_data (c, cmd->indep_var));
788         }
789     }
790   casereader_destroy (reader);
791
792   reader = casereader_clone (input);
793   for ( ; (c = casereader_read (reader) ); case_unref (c))
794     {
795       int i;
796       double w = dict_get_case_weight (dict, c, NULL);
797
798       for (i = 0; i < cmd->n_vars; ++i)
799         {
800           struct per_var_ws *pvw = &ws.vws[i];
801           const struct variable *v = cmd->vars[i];
802           const union value *val = case_data (c, v);
803
804           if ( MISS_ANALYSIS == cmd->missing_type)
805             {
806               if ( var_is_value_missing (v, val, cmd->exclude))
807                 continue;
808             }
809
810           levene_pass_three (pvw->nl, val->f, w, case_data (c, cmd->indep_var));
811         }
812     }
813   casereader_destroy (reader);
814
815
816   for (v = 0; v < cmd->n_vars; ++v)
817     {
818       const gsl_matrix *ucm;
819       gsl_matrix *cm;
820       struct per_var_ws *pvw = &ws.vws[v];
821       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
822       const bool ok = categoricals_sane (cats);
823
824       if ( ! ok)
825         {
826           msg (MW, 
827                _("Dependent variable %s has no non-missing values.  No analysis for this variable will be done."),
828                var_get_name (cmd->vars[v]));
829           continue;
830         }
831
832       ucm = covariance_calculate_unnormalized (pvw->cov);
833
834       cm = gsl_matrix_alloc (ucm->size1, ucm->size2);
835       gsl_matrix_memcpy (cm, ucm);
836
837       moments1_calculate (ws.dd_total[v]->mom, &pvw->n, NULL, NULL, NULL, NULL);
838
839       pvw->sst = gsl_matrix_get (cm, 0, 0);
840
841       reg_sweep (cm, 0);
842
843       pvw->sse = gsl_matrix_get (cm, 0, 0);
844
845       pvw->ssa = pvw->sst - pvw->sse;
846
847       pvw->n_groups = categoricals_n_total (cats);
848
849       pvw->mse = (pvw->sst - pvw->ssa) / (pvw->n - pvw->n_groups);
850     }
851
852   for (v = 0; v < cmd->n_vars; ++v)
853     {
854       const struct categoricals *cats = covariance_get_categoricals (ws.vws[v].cov);
855
856       if ( ! categoricals_is_complete (cats))
857         {
858           continue;
859         }
860
861       if (categoricals_n_total (cats) > ws.actual_number_of_groups)
862         ws.actual_number_of_groups = categoricals_n_total (cats);
863     }
864
865   casereader_destroy (input);
866
867   if (!taint_has_tainted_successor (taint))
868     output_oneway (cmd, &ws);
869
870   taint_destroy (taint);
871
872  finish:
873
874   for (v = 0; v < cmd->n_vars; ++v)
875     {
876       covariance_destroy (ws.vws[v].cov);
877       levene_destroy (ws.vws[v].nl);
878       dd_destroy (ws.dd_total[v]);
879       interaction_destroy (ws.vws[v].iact);
880     }
881
882   free (ws.vws);
883   free (ws.dd_total);
884 }
885
886 static void show_contrast_coeffs (const struct oneway_spec *cmd, const struct oneway_workspace *ws);
887 static void show_contrast_tests (const struct oneway_spec *cmd, const struct oneway_workspace *ws);
888 static void show_comparisons (const struct oneway_spec *cmd, const struct oneway_workspace *ws, int depvar);
889
890 static void
891 output_oneway (const struct oneway_spec *cmd, struct oneway_workspace *ws)
892 {
893   size_t i = 0;
894
895   /* Check the sanity of the given contrast values */
896   struct contrasts_node *coeff_list  = NULL;
897   struct contrasts_node *coeff_next  = NULL;
898   ll_for_each_safe (coeff_list, coeff_next, struct contrasts_node, ll, &cmd->contrast_list)
899     {
900       struct coeff_node *cn = NULL;
901       double sum = 0;
902       struct ll_list *cl = &coeff_list->coefficient_list;
903       ++i;
904
905       if (ll_count (cl) != ws->actual_number_of_groups)
906         {
907           msg (SW,
908                _("In contrast list %zu, the number of coefficients (%zu) does not equal the number of groups (%d). This contrast list will be ignored."),
909                i, ll_count (cl), ws->actual_number_of_groups);
910
911           ll_remove (&coeff_list->ll);
912           destroy_coeff_list (coeff_list);
913           continue;
914         }
915
916       ll_for_each (cn, struct coeff_node, ll, cl)
917         sum += cn->coeff;
918
919       if ( sum != 0.0 )
920         msg (SW, _("Coefficients for contrast %zu do not total zero"), i);
921     }
922
923   if (cmd->stats & STATS_DESCRIPTIVES)
924     show_descriptives (cmd, ws);
925
926   if (cmd->stats & STATS_HOMOGENEITY)
927     show_homogeneity (cmd, ws);
928
929   show_anova_table (cmd, ws);
930
931   if (ll_count (&cmd->contrast_list) > 0)
932     {
933       show_contrast_coeffs (cmd, ws);
934       show_contrast_tests (cmd, ws);
935     }
936
937   if ( cmd->posthoc )
938     {
939       int v;
940       for (v = 0 ; v < cmd->n_vars; ++v)
941         {
942           const struct categoricals *cats = covariance_get_categoricals (ws->vws[v].cov);
943
944           if ( categoricals_is_complete (cats))
945             show_comparisons (cmd, ws, v);
946         }
947     }
948 }
949
950
951 /* Show the ANOVA table */
952 static void
953 show_anova_table (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
954 {
955   size_t i;
956   int n_cols =7;
957   size_t n_rows = cmd->n_vars * 3 + 1;
958
959   struct tab_table *t = tab_create (n_cols, n_rows);
960
961   tab_headers (t, 2, 0, 1, 0);
962
963   tab_box (t,
964            TAL_2, TAL_2,
965            -1, TAL_1,
966            0, 0,
967            n_cols - 1, n_rows - 1);
968
969   tab_hline (t, TAL_2, 0, n_cols - 1, 1 );
970   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
971   tab_vline (t, TAL_0, 1, 0, 0);
972
973   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Sum of Squares"));
974   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df"));
975   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Mean Square"));
976   tab_text (t, 5, 0, TAB_CENTER | TAT_TITLE, _("F"));
977   tab_text (t, 6, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
978
979
980   for (i = 0; i < cmd->n_vars; ++i)
981     {
982       double n;
983       double df1, df2;
984       double msa;
985       const char *s = var_to_string (cmd->vars[i]);
986       const struct per_var_ws *pvw = &ws->vws[i];
987
988       moments1_calculate (ws->dd_total[i]->mom, &n, NULL, NULL, NULL, NULL);
989
990       df1 = pvw->n_groups - 1;
991       df2 = n - pvw->n_groups;
992       msa = pvw->ssa / df1;
993
994       tab_text (t, 0, i * 3 + 1, TAB_LEFT | TAT_TITLE, s);
995       tab_text (t, 1, i * 3 + 1, TAB_LEFT | TAT_TITLE, _("Between Groups"));
996       tab_text (t, 1, i * 3 + 2, TAB_LEFT | TAT_TITLE, _("Within Groups"));
997       tab_text (t, 1, i * 3 + 3, TAB_LEFT | TAT_TITLE, _("Total"));
998
999       if (i > 0)
1000         tab_hline (t, TAL_1, 0, n_cols - 1, i * 3 + 1);
1001
1002
1003       /* Sums of Squares */
1004       tab_double (t, 2, i * 3 + 1, 0, pvw->ssa, NULL);
1005       tab_double (t, 2, i * 3 + 3, 0, pvw->sst, NULL);
1006       tab_double (t, 2, i * 3 + 2, 0, pvw->sse, NULL);
1007
1008
1009       /* Degrees of freedom */
1010       tab_fixed (t, 3, i * 3 + 1, 0, df1, 4, 0);
1011       tab_fixed (t, 3, i * 3 + 2, 0, df2, 4, 0);
1012       tab_fixed (t, 3, i * 3 + 3, 0, n - 1, 4, 0);
1013
1014       /* Mean Squares */
1015       tab_double (t, 4, i * 3 + 1, TAB_RIGHT, msa, NULL);
1016       tab_double (t, 4, i * 3 + 2, TAB_RIGHT, pvw->mse, NULL);
1017
1018       {
1019         const double F = msa / pvw->mse ;
1020
1021         /* The F value */
1022         tab_double (t, 5, i * 3 + 1, 0,  F, NULL);
1023
1024         /* The significance */
1025         tab_double (t, 6, i * 3 + 1, 0, gsl_cdf_fdist_Q (F, df1, df2), NULL);
1026       }
1027     }
1028
1029   tab_title (t, _("ANOVA"));
1030   tab_submit (t);
1031 }
1032
1033
1034 /* Show the descriptives table */
1035 static void
1036 show_descriptives (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1037 {
1038   size_t v;
1039   int n_cols = 10;
1040   struct tab_table *t;
1041   int row;
1042
1043   const double confidence = 0.95;
1044   const double q = (1.0 - confidence) / 2.0;
1045
1046   const struct fmt_spec *wfmt = cmd->wv ? var_get_print_format (cmd->wv) : &F_8_0;
1047
1048   int n_rows = 2;
1049
1050   for (v = 0; v < cmd->n_vars; ++v)
1051     n_rows += ws->actual_number_of_groups + 1;
1052
1053   t = tab_create (n_cols, n_rows);
1054   tab_headers (t, 2, 0, 2, 0);
1055
1056   /* Put a frame around the entire box, and vertical lines inside */
1057   tab_box (t,
1058            TAL_2, TAL_2,
1059            -1, TAL_1,
1060            0, 0,
1061            n_cols - 1, n_rows - 1);
1062
1063   /* Underline headers */
1064   tab_hline (t, TAL_2, 0, n_cols - 1, 2);
1065   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
1066
1067   tab_text (t, 2, 1, TAB_CENTER | TAT_TITLE, _("N"));
1068   tab_text (t, 3, 1, TAB_CENTER | TAT_TITLE, _("Mean"));
1069   tab_text (t, 4, 1, TAB_CENTER | TAT_TITLE, _("Std. Deviation"));
1070   tab_text (t, 5, 1, TAB_CENTER | TAT_TITLE, _("Std. Error"));
1071
1072
1073   tab_vline (t, TAL_0, 7, 0, 0);
1074   tab_hline (t, TAL_1, 6, 7, 1);
1075   tab_joint_text_format (t, 6, 0, 7, 0, TAB_CENTER | TAT_TITLE,
1076                          _("%g%% Confidence Interval for Mean"),
1077                          confidence*100.0);
1078
1079   tab_text (t, 6, 1, TAB_CENTER | TAT_TITLE, _("Lower Bound"));
1080   tab_text (t, 7, 1, TAB_CENTER | TAT_TITLE, _("Upper Bound"));
1081
1082   tab_text (t, 8, 1, TAB_CENTER | TAT_TITLE, _("Minimum"));
1083   tab_text (t, 9, 1, TAB_CENTER | TAT_TITLE, _("Maximum"));
1084
1085   tab_title (t, _("Descriptives"));
1086
1087   row = 2;
1088   for (v = 0; v < cmd->n_vars; ++v)
1089     {
1090       const char *s = var_to_string (cmd->vars[v]);
1091       const struct fmt_spec *fmt = var_get_print_format (cmd->vars[v]);
1092
1093       int count = 0;
1094
1095       struct per_var_ws *pvw = &ws->vws[v];
1096       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
1097
1098       tab_text (t, 0, row, TAB_LEFT | TAT_TITLE, s);
1099       if ( v > 0)
1100         tab_hline (t, TAL_1, 0, n_cols - 1, row);
1101
1102       for (count = 0; count < categoricals_n_total (cats); ++count)
1103         {
1104           double T;
1105           double n, mean, variance;
1106           double std_dev, std_error ;
1107
1108           struct string vstr;
1109
1110           const struct ccase *gcc = categoricals_get_case_by_category (cats, count);
1111           const struct descriptive_data *dd = categoricals_get_user_data_by_category (cats, count);
1112
1113           moments1_calculate (dd->mom, &n, &mean, &variance, NULL, NULL);
1114
1115           std_dev = sqrt (variance);
1116           std_error = std_dev / sqrt (n) ;
1117
1118           ds_init_empty (&vstr);
1119
1120           var_append_value_name (cmd->indep_var, case_data (gcc, cmd->indep_var), &vstr);
1121
1122           tab_text (t, 1, row + count,
1123                     TAB_LEFT | TAT_TITLE,
1124                     ds_cstr (&vstr));
1125
1126           ds_destroy (&vstr);
1127
1128           /* Now fill in the numbers ... */
1129
1130           tab_double (t, 2, row + count, 0, n, wfmt);
1131
1132           tab_double (t, 3, row + count, 0, mean, NULL);
1133
1134           tab_double (t, 4, row + count, 0, std_dev, NULL);
1135
1136
1137           tab_double (t, 5, row + count, 0, std_error, NULL);
1138
1139           /* Now the confidence interval */
1140
1141           T = gsl_cdf_tdist_Qinv (q, n - 1);
1142
1143           tab_double (t, 6, row + count, 0,
1144                       mean - T * std_error, NULL);
1145
1146           tab_double (t, 7, row + count, 0,
1147                       mean + T * std_error, NULL);
1148
1149           /* Min and Max */
1150
1151           tab_double (t, 8, row + count, 0,  dd->minimum, fmt);
1152           tab_double (t, 9, row + count, 0,  dd->maximum, fmt);
1153         }
1154
1155       if (categoricals_is_complete (cats))
1156       {
1157         double T;
1158         double n, mean, variance;
1159         double std_dev;
1160         double std_error;
1161
1162         moments1_calculate (ws->dd_total[v]->mom, &n, &mean, &variance, NULL, NULL);
1163
1164         std_dev = sqrt (variance);
1165         std_error = std_dev / sqrt (n) ;
1166
1167         tab_text (t, 1, row + count,
1168                   TAB_LEFT | TAT_TITLE, _("Total"));
1169
1170         tab_double (t, 2, row + count, 0, n, wfmt);
1171
1172         tab_double (t, 3, row + count, 0, mean, NULL);
1173
1174         tab_double (t, 4, row + count, 0, std_dev, NULL);
1175
1176         tab_double (t, 5, row + count, 0, std_error, NULL);
1177
1178         /* Now the confidence interval */
1179         T = gsl_cdf_tdist_Qinv (q, n - 1);
1180
1181         tab_double (t, 6, row + count, 0,
1182                     mean - T * std_error, NULL);
1183
1184         tab_double (t, 7, row + count, 0,
1185                     mean + T * std_error, NULL);
1186
1187
1188         /* Min and Max */
1189         tab_double (t, 8, row + count, 0,  ws->dd_total[v]->minimum, fmt);
1190         tab_double (t, 9, row + count, 0,  ws->dd_total[v]->maximum, fmt);
1191       }
1192
1193       row += categoricals_n_total (cats) + 1;
1194     }
1195
1196   tab_submit (t);
1197 }
1198
1199 /* Show the homogeneity table */
1200 static void
1201 show_homogeneity (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1202 {
1203   size_t v;
1204   int n_cols = 5;
1205   size_t n_rows = cmd->n_vars + 1;
1206
1207   struct tab_table *t = tab_create (n_cols, n_rows);
1208   tab_headers (t, 1, 0, 1, 0);
1209
1210   /* Put a frame around the entire box, and vertical lines inside */
1211   tab_box (t,
1212            TAL_2, TAL_2,
1213            -1, TAL_1,
1214            0, 0,
1215            n_cols - 1, n_rows - 1);
1216
1217
1218   tab_hline (t, TAL_2, 0, n_cols - 1, 1);
1219   tab_vline (t, TAL_2, 1, 0, n_rows - 1);
1220
1221   tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Levene Statistic"));
1222   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("df1"));
1223   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df2"));
1224   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
1225
1226   tab_title (t, _("Test of Homogeneity of Variances"));
1227
1228   for (v = 0; v < cmd->n_vars; ++v)
1229     {
1230       double n;
1231       const struct per_var_ws *pvw = &ws->vws[v];
1232       double F = levene_calculate (pvw->nl);
1233
1234       const struct variable *var = cmd->vars[v];
1235       const char *s = var_to_string (var);
1236       double df1, df2;
1237
1238       moments1_calculate (ws->dd_total[v]->mom, &n, NULL, NULL, NULL, NULL);
1239
1240       df1 = pvw->n_groups - 1;
1241       df2 = n - pvw->n_groups;
1242
1243       tab_text (t, 0, v + 1, TAB_LEFT | TAT_TITLE, s);
1244
1245       tab_double (t, 1, v + 1, TAB_RIGHT, F, NULL);
1246       tab_fixed (t, 2, v + 1, TAB_RIGHT, df1, 8, 0);
1247       tab_fixed (t, 3, v + 1, TAB_RIGHT, df2, 8, 0);
1248
1249       /* Now the significance */
1250       tab_double (t, 4, v + 1, TAB_RIGHT, gsl_cdf_fdist_Q (F, df1, df2), NULL);
1251     }
1252
1253   tab_submit (t);
1254 }
1255
1256
1257 /* Show the contrast coefficients table */
1258 static void
1259 show_contrast_coeffs (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1260 {
1261   int c_num = 0;
1262   struct ll *cli;
1263
1264   int n_contrasts = ll_count (&cmd->contrast_list);
1265   int n_cols = 2 + ws->actual_number_of_groups;
1266   int n_rows = 2 + n_contrasts;
1267
1268   struct tab_table *t;
1269
1270   const struct covariance *cov = ws->vws[0].cov ;
1271
1272   t = tab_create (n_cols, n_rows);
1273   tab_headers (t, 2, 0, 2, 0);
1274
1275   /* Put a frame around the entire box, and vertical lines inside */
1276   tab_box (t,
1277            TAL_2, TAL_2,
1278            -1, TAL_1,
1279            0, 0,
1280            n_cols - 1, n_rows - 1);
1281
1282   tab_box (t,
1283            -1, -1,
1284            TAL_0, TAL_0,
1285            2, 0,
1286            n_cols - 1, 0);
1287
1288   tab_box (t,
1289            -1, -1,
1290            TAL_0, TAL_0,
1291            0, 0,
1292            1, 1);
1293
1294   tab_hline (t, TAL_1, 2, n_cols - 1, 1);
1295   tab_hline (t, TAL_2, 0, n_cols - 1, 2);
1296
1297   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
1298
1299   tab_title (t, _("Contrast Coefficients"));
1300
1301   tab_text (t,  0, 2, TAB_LEFT | TAT_TITLE, _("Contrast"));
1302
1303
1304   tab_joint_text (t, 2, 0, n_cols - 1, 0, TAB_CENTER | TAT_TITLE,
1305                   var_to_string (cmd->indep_var));
1306
1307   for ( cli = ll_head (&cmd->contrast_list);
1308         cli != ll_null (&cmd->contrast_list);
1309         cli = ll_next (cli))
1310     {
1311       int count = 0;
1312       struct contrasts_node *cn = ll_data (cli, struct contrasts_node, ll);
1313       struct ll *coeffi ;
1314
1315       tab_text_format (t, 1, c_num + 2, TAB_CENTER, "%d", c_num + 1);
1316
1317       for (coeffi = ll_head (&cn->coefficient_list);
1318            coeffi != ll_null (&cn->coefficient_list);
1319            ++count, coeffi = ll_next (coeffi))
1320         {
1321           const struct categoricals *cats = covariance_get_categoricals (cov);
1322           const struct ccase *gcc = categoricals_get_case_by_category (cats, count);
1323           struct coeff_node *coeffn = ll_data (coeffi, struct coeff_node, ll);
1324           struct string vstr;
1325
1326           ds_init_empty (&vstr);
1327
1328           var_append_value_name (cmd->indep_var, case_data (gcc, cmd->indep_var), &vstr);
1329
1330           tab_text (t, count + 2, 1, TAB_CENTER | TAT_TITLE, ds_cstr (&vstr));
1331
1332           ds_destroy (&vstr);
1333
1334           tab_text_format (t, count + 2, c_num + 2, TAB_RIGHT, "%g", coeffn->coeff);
1335         }
1336       ++c_num;
1337     }
1338
1339   tab_submit (t);
1340 }
1341
1342
1343 /* Show the results of the contrast tests */
1344 static void
1345 show_contrast_tests (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1346 {
1347   int n_contrasts = ll_count (&cmd->contrast_list);
1348   size_t v;
1349   int n_cols = 8;
1350   size_t n_rows = 1 + cmd->n_vars * 2 * n_contrasts;
1351
1352   struct tab_table *t;
1353
1354   t = tab_create (n_cols, n_rows);
1355   tab_headers (t, 3, 0, 1, 0);
1356
1357   /* Put a frame around the entire box, and vertical lines inside */
1358   tab_box (t,
1359            TAL_2, TAL_2,
1360            -1, TAL_1,
1361            0, 0,
1362            n_cols - 1, n_rows - 1);
1363
1364   tab_box (t,
1365            -1, -1,
1366            TAL_0, TAL_0,
1367            0, 0,
1368            2, 0);
1369
1370   tab_hline (t, TAL_2, 0, n_cols - 1, 1);
1371   tab_vline (t, TAL_2, 3, 0, n_rows - 1);
1372
1373   tab_title (t, _("Contrast Tests"));
1374
1375   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Contrast"));
1376   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Value of Contrast"));
1377   tab_text (t,  4, 0, TAB_CENTER | TAT_TITLE, _("Std. Error"));
1378   tab_text (t,  5, 0, TAB_CENTER | TAT_TITLE, _("t"));
1379   tab_text (t,  6, 0, TAB_CENTER | TAT_TITLE, _("df"));
1380   tab_text (t,  7, 0, TAB_CENTER | TAT_TITLE, _("Sig. (2-tailed)"));
1381
1382   for (v = 0; v < cmd->n_vars; ++v)
1383     {
1384       const struct per_var_ws *pvw = &ws->vws[v];
1385       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
1386       struct ll *cli;
1387       int i = 0;
1388       int lines_per_variable = 2 * n_contrasts;
1389
1390       tab_text (t,  0, (v * lines_per_variable) + 1, TAB_LEFT | TAT_TITLE,
1391                 var_to_string (cmd->vars[v]));
1392
1393       for ( cli = ll_head (&cmd->contrast_list);
1394             cli != ll_null (&cmd->contrast_list);
1395             ++i, cli = ll_next (cli))
1396         {
1397           struct contrasts_node *cn = ll_data (cli, struct contrasts_node, ll);
1398           struct ll *coeffi ;
1399           int ci = 0;
1400           double contrast_value = 0.0;
1401           double coef_msq = 0.0;
1402
1403           double T;
1404           double std_error_contrast;
1405           double df;
1406           double sec_vneq = 0.0;
1407
1408           /* Note: The calculation of the degrees of freedom in the
1409              "variances not equal" case is painfull!!
1410              The following formula may help to understand it:
1411              \frac{\left (\sum_{i=1}^k{c_i^2\frac{s_i^2}{n_i}}\right)^2}
1412              {
1413              \sum_{i=1}^k\left (
1414              \frac{\left (c_i^2\frac{s_i^2}{n_i}\right)^2}  {n_i-1}
1415              \right)
1416              }
1417           */
1418
1419           double df_denominator = 0.0;
1420           double df_numerator = 0.0;
1421
1422           double grand_n;
1423           moments1_calculate (ws->dd_total[v]->mom, &grand_n, NULL, NULL, NULL, NULL);
1424           df = grand_n - pvw->n_groups;
1425
1426           if ( i == 0 )
1427             {
1428               tab_text (t,  1, (v * lines_per_variable) + i + 1,
1429                         TAB_LEFT | TAT_TITLE,
1430                         _("Assume equal variances"));
1431
1432               tab_text (t,  1, (v * lines_per_variable) + i + 1 + n_contrasts,
1433                         TAB_LEFT | TAT_TITLE,
1434                         _("Does not assume equal"));
1435             }
1436
1437           tab_text_format (t,  2, (v * lines_per_variable) + i + 1,
1438                            TAB_CENTER | TAT_TITLE, "%d", i + 1);
1439
1440
1441           tab_text_format (t,  2,
1442                            (v * lines_per_variable) + i + 1 + n_contrasts,
1443                            TAB_CENTER | TAT_TITLE, "%d", i + 1);
1444
1445           for (coeffi = ll_head (&cn->coefficient_list);
1446                coeffi != ll_null (&cn->coefficient_list);
1447                ++ci, coeffi = ll_next (coeffi))
1448             {
1449               double n, mean, variance;
1450               const struct descriptive_data *dd = categoricals_get_user_data_by_category (cats, ci);
1451               struct coeff_node *cn = ll_data (coeffi, struct coeff_node, ll);
1452               const double coef = cn->coeff; 
1453               double winv ;
1454
1455               moments1_calculate (dd->mom, &n, &mean, &variance, NULL, NULL);
1456
1457               winv = variance / n;
1458
1459               contrast_value += coef * mean;
1460
1461               coef_msq += (pow2 (coef)) / n;
1462
1463               sec_vneq += (pow2 (coef)) * variance / n;
1464
1465               df_numerator += (pow2 (coef)) * winv;
1466               df_denominator += pow2((pow2 (coef)) * winv) / (n - 1);
1467             }
1468
1469           sec_vneq = sqrt (sec_vneq);
1470
1471           df_numerator = pow2 (df_numerator);
1472
1473           tab_double (t,  3, (v * lines_per_variable) + i + 1,
1474                       TAB_RIGHT, contrast_value, NULL);
1475
1476           tab_double (t,  3, (v * lines_per_variable) + i + 1 +
1477                       n_contrasts,
1478                       TAB_RIGHT, contrast_value, NULL);
1479
1480           std_error_contrast = sqrt (pvw->mse * coef_msq);
1481
1482           /* Std. Error */
1483           tab_double (t,  4, (v * lines_per_variable) + i + 1,
1484                       TAB_RIGHT, std_error_contrast,
1485                       NULL);
1486
1487           T = fabs (contrast_value / std_error_contrast);
1488
1489           /* T Statistic */
1490
1491           tab_double (t,  5, (v * lines_per_variable) + i + 1,
1492                       TAB_RIGHT, T,
1493                       NULL);
1494
1495
1496           /* Degrees of Freedom */
1497           tab_fixed (t,  6, (v * lines_per_variable) + i + 1,
1498                      TAB_RIGHT,  df,
1499                      8, 0);
1500
1501
1502           /* Significance TWO TAILED !!*/
1503           tab_double (t,  7, (v * lines_per_variable) + i + 1,
1504                       TAB_RIGHT,  2 * gsl_cdf_tdist_Q (T, df),
1505                       NULL);
1506
1507           /* Now for the Variances NOT Equal case */
1508
1509           /* Std. Error */
1510           tab_double (t,  4,
1511                       (v * lines_per_variable) + i + 1 + n_contrasts,
1512                       TAB_RIGHT, sec_vneq,
1513                       NULL);
1514
1515           T = contrast_value / sec_vneq;
1516           tab_double (t,  5,
1517                       (v * lines_per_variable) + i + 1 + n_contrasts,
1518                       TAB_RIGHT, T,
1519                       NULL);
1520
1521           df = df_numerator / df_denominator;
1522
1523           tab_double (t,  6,
1524                       (v * lines_per_variable) + i + 1 + n_contrasts,
1525                       TAB_RIGHT, df,
1526                       NULL);
1527
1528           /* The Significance */
1529           tab_double (t, 7, (v * lines_per_variable) + i + 1 + n_contrasts,
1530                       TAB_RIGHT,  2 * gsl_cdf_tdist_Q (T,df),
1531                       NULL);
1532         }
1533
1534       if ( v > 0 )
1535         tab_hline (t, TAL_1, 0, n_cols - 1, (v * lines_per_variable) + 1);
1536     }
1537
1538   tab_submit (t);
1539 }
1540
1541
1542
1543 static void
1544 show_comparisons (const struct oneway_spec *cmd, const struct oneway_workspace *ws, int v)
1545 {
1546   const int n_cols = 8;
1547   const int heading_rows = 2;
1548   const int heading_cols = 3;
1549
1550   int p;
1551   int r = heading_rows ;
1552
1553   const struct per_var_ws *pvw = &ws->vws[v];
1554   const struct categoricals *cat = pvw->cat;
1555   const int n_rows = heading_rows + cmd->n_posthoc * pvw->n_groups * (pvw->n_groups - 1);
1556
1557   struct tab_table *t = tab_create (n_cols, n_rows);
1558
1559   tab_headers (t, heading_cols, 0, heading_rows, 0);
1560
1561   /* Put a frame around the entire box, and vertical lines inside */
1562   tab_box (t,
1563            TAL_2, TAL_2,
1564            -1, -1,
1565            0, 0,
1566            n_cols - 1, n_rows - 1);
1567
1568   tab_box (t,
1569            -1, -1,
1570            -1, TAL_1,
1571            heading_cols, 0,
1572            n_cols - 1, n_rows - 1);
1573
1574   tab_vline (t, TAL_2, heading_cols, 0, n_rows - 1);
1575
1576   tab_title (t, _("Multiple Comparisons (%s)"), var_to_string (cmd->vars[v]));
1577
1578   tab_text_format (t,  1, 1, TAB_LEFT | TAT_TITLE, _("(I) %s"), var_to_string (cmd->indep_var));
1579   tab_text_format (t,  2, 1, TAB_LEFT | TAT_TITLE, _("(J) %s"), var_to_string (cmd->indep_var));
1580   tab_text (t,  3, 0, TAB_CENTER | TAT_TITLE, _("Mean Difference"));
1581   tab_text (t,  3, 1, TAB_CENTER | TAT_TITLE, _("(I - J)"));
1582   tab_text (t,  4, 1, TAB_CENTER | TAT_TITLE, _("Std. Error"));
1583   tab_text (t,  5, 1, TAB_CENTER | TAT_TITLE, _("Sig."));
1584
1585   tab_joint_text_format (t, 6, 0, 7, 0, TAB_CENTER | TAT_TITLE,
1586                          _("%g%% Confidence Interval"),
1587                          (1 - cmd->alpha) * 100.0);
1588
1589   tab_text (t,  6, 1, TAB_CENTER | TAT_TITLE, _("Lower Bound"));
1590   tab_text (t,  7, 1, TAB_CENTER | TAT_TITLE, _("Upper Bound"));
1591
1592
1593   for (p = 0; p < cmd->n_posthoc; ++p)
1594     {
1595       int i;
1596       const struct posthoc *ph = &ph_tests[cmd->posthoc[p]];
1597
1598       tab_hline (t, TAL_2, 0, n_cols - 1, r);
1599
1600       tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, gettext (ph->label));
1601
1602       for (i = 0; i < pvw->n_groups ; ++i)
1603         {
1604           double weight_i, mean_i, var_i;
1605           int rx = 0;
1606           struct string vstr;
1607           int j;
1608           struct descriptive_data *dd_i = categoricals_get_user_data_by_category (cat, i);
1609           const struct ccase *gcc = categoricals_get_case_by_category (cat, i);
1610           
1611
1612           ds_init_empty (&vstr);
1613           var_append_value_name (cmd->indep_var, case_data (gcc, cmd->indep_var), &vstr);
1614
1615           if ( i != 0)
1616             tab_hline (t, TAL_1, 1, n_cols - 1, r);
1617           tab_text (t, 1, r, TAB_LEFT | TAT_TITLE, ds_cstr (&vstr));
1618
1619           moments1_calculate (dd_i->mom, &weight_i, &mean_i, &var_i, 0, 0);
1620
1621           for (j = 0 ; j < pvw->n_groups; ++j)
1622             {
1623               double std_err;
1624               double weight_j, mean_j, var_j;
1625               double half_range;
1626               const struct ccase *cc;
1627               struct descriptive_data *dd_j = categoricals_get_user_data_by_category (cat, j);
1628               if (j == i)
1629                 continue;
1630
1631               ds_clear (&vstr);
1632               cc = categoricals_get_case_by_category (cat, j);
1633               var_append_value_name (cmd->indep_var, case_data (cc, cmd->indep_var), &vstr);
1634               tab_text (t, 2, r + rx, TAB_LEFT | TAT_TITLE, ds_cstr (&vstr));
1635
1636               moments1_calculate (dd_j->mom, &weight_j, &mean_j, &var_j, 0, 0);
1637
1638               tab_double  (t, 3, r + rx, 0, mean_i - mean_j, 0);
1639
1640               std_err = pvw->mse;
1641               std_err *= weight_i + weight_j;
1642               std_err /= weight_i * weight_j;
1643               std_err = sqrt (std_err);
1644
1645               tab_double  (t, 4, r + rx, 0, std_err, 0);
1646           
1647               tab_double (t, 5, r + rx, 0, 2 * multiple_comparison_sig (std_err, pvw, dd_i, dd_j, ph), 0);
1648
1649               half_range = mc_half_range (cmd, pvw, std_err, dd_i, dd_j, ph);
1650
1651               tab_double (t, 6, r + rx, 0,
1652                            (mean_i - mean_j) - half_range, 0 );
1653
1654               tab_double (t, 7, r + rx, 0,
1655                            (mean_i - mean_j) + half_range, 0 );
1656
1657               rx++;
1658             }
1659           ds_destroy (&vstr);
1660           r += pvw->n_groups - 1;
1661         }
1662     }
1663
1664   tab_submit (t);
1665 }