Oneway: Fixed most compiler warnings
[pspp] / src / language / stats / oneway.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2007, 2009, 2010 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 <data/case.h>
20 #include <data/casegrouper.h>
21 #include <data/casereader.h>
22
23 #include <math/covariance.h>
24 #include <math/categoricals.h>
25 #include <math/moments.h>
26 #include <gsl/gsl_matrix.h>
27 #include <linreg/sweep.h>
28
29 #include <libpspp/ll.h>
30
31 #include <language/lexer/lexer.h>
32 #include <language/lexer/variable-parser.h>
33 #include <language/lexer/value-parser.h>
34 #include <language/command.h>
35
36 #include <data/procedure.h>
37 #include <data/value.h>
38 #include <data/dictionary.h>
39
40 #include <language/dictionary/split-file.h>
41 #include <libpspp/hash.h>
42 #include <libpspp/taint.h>
43 #include <math/group-proc.h>
44 #include <math/levene.h>
45 #include <libpspp/misc.h>
46
47 #include <output/tab.h>
48
49 #include <gsl/gsl_cdf.h>
50 #include <math.h>
51 #include <data/format.h>
52
53 #include <libpspp/message.h>
54
55 #include "gettext.h"
56 #define _(msgid) gettext (msgid)
57
58 enum missing_type
59   {
60     MISS_LISTWISE,
61     MISS_ANALYSIS,
62   };
63
64 enum statistics
65   {
66     STATS_DESCRIPTIVES = 0x0001,
67     STATS_HOMOGENEITY = 0x0002
68   };
69
70 struct coeff_node
71 {
72   struct ll ll; 
73   double coeff; 
74 };
75
76
77 struct contrasts_node
78 {
79   struct ll ll; 
80   struct ll_list coefficient_list;
81
82   bool bad_count; /* True if the number of coefficients does not equal the number of groups */
83 };
84
85 struct oneway_spec
86 {
87   size_t n_vars;
88   const struct variable **vars;
89
90   const struct variable *indep_var;
91
92   enum statistics stats;
93
94   enum missing_type missing_type;
95   enum mv_class exclude;
96
97   /* List of contrasts */
98   struct ll_list contrast_list;
99
100   /* The weight variable */
101   const struct variable *wv;
102
103 };
104
105 /* Per category data */
106 struct descriptive_data
107 {
108   const struct variable *var;
109   struct moments1 *mom;
110
111   double minimum;
112   double maximum;
113 };
114
115 /* Workspace variable for each dependent variable */
116 struct per_var_ws
117 {
118   struct covariance *cov;
119
120   double sst;
121   double sse;
122   double ssa;
123
124   int n_groups;
125
126   double mse;
127 };
128
129 struct oneway_workspace
130 {
131   /* The number of distinct values of the independent variable, when all
132      missing values are disregarded */
133   int actual_number_of_groups;
134
135   /* A  hash table containing all the distinct values of the independent
136      variable */
137   struct hsh_table *group_hash;
138
139   struct per_var_ws *vws;
140
141   /* An array of descriptive data.  One for each dependent variable */
142   struct descriptive_data **dd_total;
143 };
144
145 /* Routines to show the output tables */
146 static void show_anova_table (const struct oneway_spec *, const struct oneway_workspace *);
147 static void show_descriptives (const struct oneway_spec *, const struct oneway_workspace *);
148 static void show_homogeneity (const struct oneway_spec *, const struct oneway_workspace *);
149
150 static void output_oneway (const struct oneway_spec *, struct oneway_workspace *ws);
151 static void run_oneway (const struct oneway_spec *cmd, struct casereader *input, const struct dataset *ds);
152
153 int
154 cmd_oneway (struct lexer *lexer, struct dataset *ds)
155 {
156   const struct dictionary *dict = dataset_dict (ds);  
157   struct oneway_spec oneway ;
158   oneway.n_vars = 0;
159   oneway.vars = NULL;
160   oneway.indep_var = NULL;
161   oneway.stats = 0;
162   oneway.missing_type = MISS_ANALYSIS;
163   oneway.exclude = MV_ANY;
164   oneway.wv = dict_get_weight (dict);
165
166   ll_init (&oneway.contrast_list);
167
168   
169   if ( lex_match (lexer, '/'))
170     {
171       if (!lex_force_match_id (lexer, "VARIABLES"))
172         {
173           goto error;
174         }
175       lex_match (lexer, '=');
176     }
177
178   if (!parse_variables_const (lexer, dict,
179                               &oneway.vars, &oneway.n_vars,
180                               PV_NO_DUPLICATE | PV_NUMERIC))
181     goto error;
182
183   lex_force_match (lexer, T_BY);
184
185   oneway.indep_var = parse_variable_const (lexer, dict);
186
187   while (lex_token (lexer) != '.')
188     {
189       lex_match (lexer, '/');
190
191       if (lex_match_id (lexer, "STATISTICS"))
192         {
193           lex_match (lexer, '=');
194           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
195             {
196               if (lex_match_id (lexer, "DESCRIPTIVES"))
197                 {
198                   oneway.stats |= STATS_DESCRIPTIVES;
199                 }
200               else if (lex_match_id (lexer, "HOMOGENEITY"))
201                 {
202                   oneway.stats |= STATS_HOMOGENEITY;
203                 }
204               else
205                 {
206                   lex_error (lexer, NULL);
207                   goto error;
208                 }
209             }
210         }
211       else if (lex_match_id (lexer, "CONTRAST"))
212         {
213           struct contrasts_node *cl = xzalloc (sizeof *cl);
214
215           struct ll_list *coefficient_list = &cl->coefficient_list;
216           lex_match (lexer, '=');
217
218           ll_init (coefficient_list);
219
220           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
221             {
222               if ( lex_is_number (lexer))
223                 {
224                   struct coeff_node *cc = xmalloc (sizeof *cc);
225                   cc->coeff = lex_number (lexer);
226
227                   ll_push_tail (coefficient_list, &cc->ll);
228                   lex_get (lexer);
229                 }
230               else
231                 {
232                   lex_error (lexer, NULL);
233                   goto error;
234                 }
235             }
236
237           ll_push_tail (&oneway.contrast_list, &cl->ll);
238         }
239       else if (lex_match_id (lexer, "MISSING"))
240         {
241           lex_match (lexer, '=');
242           while (lex_token (lexer) != '.' && lex_token (lexer) != '/')
243             {
244               if (lex_match_id (lexer, "INCLUDE"))
245                 {
246                   oneway.exclude = MV_SYSTEM;
247                 }
248               else if (lex_match_id (lexer, "EXCLUDE"))
249                 {
250                   oneway.exclude = MV_ANY;
251                 }
252               else if (lex_match_id (lexer, "LISTWISE"))
253                 {
254                   oneway.missing_type = MISS_LISTWISE;
255                 }
256               else if (lex_match_id (lexer, "ANALYSIS"))
257                 {
258                   oneway.missing_type = MISS_ANALYSIS;
259                 }
260               else
261                 {
262                   lex_error (lexer, NULL);
263                   goto error;
264                 }
265             }
266         }
267       else
268         {
269           lex_error (lexer, NULL);
270           goto error;
271         }
272     }
273
274
275   {
276     struct casegrouper *grouper;
277     struct casereader *group;
278     bool ok;
279
280     grouper = casegrouper_create_splits (proc_open (ds), dict);
281     while (casegrouper_get_next_group (grouper, &group))
282       run_oneway (&oneway, group, ds);
283     ok = casegrouper_destroy (grouper);
284     ok = proc_commit (ds) && ok;
285   }
286
287   free (oneway.vars);
288   return CMD_SUCCESS;
289
290  error:
291   free (oneway.vars);
292   return CMD_FAILURE;
293 }
294
295
296 \f
297
298 static int
299 compare_double_3way (const void *a_, const void *b_, const void *aux UNUSED)
300 {
301   const double *a = a_;
302   const double *b = b_;
303   return *a < *b ? -1 : *a > *b;
304 }
305
306 static unsigned
307 do_hash_double (const void *value_, const void *aux UNUSED)
308 {
309   const double *value = value_;
310   return hash_double (*value, 0);
311 }
312
313 static void
314 free_double (void *value_, const void *aux UNUSED)
315 {
316   double *value = value_;
317   free (value);
318 }
319
320
321
322 static void postcalc (const struct oneway_spec *cmd);
323 static void  precalc (const struct oneway_spec *cmd);
324
325 static struct descriptive_data *
326 dd_create (const struct variable *var)
327 {
328   struct descriptive_data *dd = xmalloc (sizeof *dd);
329
330   dd->mom = moments1_create (MOMENT_VARIANCE);
331   dd->minimum = DBL_MAX;
332   dd->maximum = -DBL_MAX;
333   dd->var = var;
334
335   return dd;
336 }
337
338
339 static void *
340 makeit (void *aux1, void *aux2 UNUSED)
341 {
342   const struct variable *var = aux1;
343
344   struct descriptive_data *dd = dd_create (var);
345
346   return dd;
347 }
348
349 static void 
350 updateit (void *user_data, 
351           enum mv_class exclude,
352           const struct variable *wv, 
353           const struct variable *catvar UNUSED,
354           const struct ccase *c,
355           void *aux1, void *aux2)
356 {
357   struct descriptive_data *dd = user_data;
358
359   const struct variable *varp = aux1;
360
361   const union value *valx = case_data (c, varp);
362
363   if ( var_is_value_missing (varp, valx, exclude))
364     return;
365
366   struct descriptive_data *dd_total = aux2;
367
368   double weight = 1.0;
369   if (wv)
370     weight = case_data (c, wv)->f;
371
372   moments1_add (dd->mom, valx->f, weight);
373   if (valx->f * weight < dd->minimum)
374     dd->minimum = valx->f * weight;
375
376   if (valx->f * weight > dd->maximum)
377     dd->maximum = valx->f * weight;
378
379   {
380     const struct variable *var = dd_total->var;
381     const union value *val = case_data (c, var);
382
383     moments1_add (dd_total->mom,
384                   val->f,
385                   weight);
386
387     if (val->f * weight < dd_total->minimum)
388       dd_total->minimum = val->f * weight;
389
390     if (val->f * weight > dd_total->maximum)
391       dd_total->maximum = val->f * weight;
392   }
393 }
394
395 static void
396 run_oneway (const struct oneway_spec *cmd,
397             struct casereader *input,
398             const struct dataset *ds)
399 {
400   int v;
401   struct taint *taint;
402   struct dictionary *dict = dataset_dict (ds);
403   struct casereader *reader;
404   struct ccase *c;
405
406   struct oneway_workspace ws;
407
408   ws.actual_number_of_groups = 0;
409   ws.vws = xmalloc (cmd->n_vars * sizeof (*ws.vws));
410   ws.dd_total = xmalloc (sizeof (struct descriptive_data) * cmd->n_vars);
411
412   for (v = 0 ; v < cmd->n_vars; ++v)
413     ws.dd_total[v] = dd_create (cmd->vars[v]);
414
415   for (v = 0; v < cmd->n_vars; ++v)
416     {
417       struct categoricals *cats = categoricals_create (&cmd->indep_var, 1,
418                                                        cmd->wv, cmd->exclude, 
419                                                        makeit,
420                                                        updateit,
421                                                        cmd->vars[v], ws.dd_total[v]);
422
423       ws.vws[v].cov = covariance_2pass_create (1, &cmd->vars[v],
424                                                cats, 
425                                                cmd->wv, cmd->exclude);
426     }
427
428   c = casereader_peek (input, 0);
429   if (c == NULL)
430     {
431       casereader_destroy (input);
432       return;
433     }
434   output_split_file_values (ds, c);
435   case_unref (c);
436
437   taint = taint_clone (casereader_get_taint (input));
438
439   ws.group_hash = hsh_create (4,
440                                   compare_double_3way,
441                                   do_hash_double,
442                                   free_double,
443                                   cmd->indep_var);
444
445   precalc (cmd);
446
447   input = casereader_create_filter_missing (input, &cmd->indep_var, 1,
448                                             cmd->exclude, NULL, NULL);
449   if (cmd->missing_type == MISS_LISTWISE)
450     input = casereader_create_filter_missing (input, cmd->vars, cmd->n_vars,
451                                               cmd->exclude, NULL, NULL);
452   input = casereader_create_filter_weight (input, dict, NULL, NULL);
453
454   reader = casereader_clone (input);
455
456   for (; (c = casereader_read (reader)) != NULL; case_unref (c))
457     {
458       size_t i;
459
460       const double weight = dict_get_case_weight (dict, c, NULL);
461
462       const union value *indep_val = case_data (c, cmd->indep_var);
463       void **p = hsh_probe (ws.group_hash, &indep_val->f);
464       if (*p == NULL)
465         {
466           double *value = *p = xmalloc (sizeof *value);
467           *value = indep_val->f;
468         }
469
470       for (i = 0; i < cmd->n_vars; ++i)
471         {
472           struct per_var_ws *pvw = &ws.vws[i];
473           const struct variable *v = cmd->vars[i];
474           const union value *val = case_data (c, v);
475           struct group_proc *gp = group_proc_get (cmd->vars[i]);
476           struct hsh_table *group_hash = gp->group_hash;
477           struct group_statistics *gs;
478
479           if ( MISS_ANALYSIS == cmd->missing_type)
480             {
481               if ( var_is_value_missing (v, val, cmd->exclude))
482                 continue;
483             }
484
485           covariance_accumulate_pass1 (pvw->cov, c);
486
487           gs = hsh_find (group_hash, indep_val );
488
489           if ( ! gs )
490             {
491               gs = xmalloc (sizeof *gs);
492               gs->id = *indep_val;
493               gs->sum = 0;
494               gs->n = 0;
495               gs->ssq = 0;
496               gs->sum_diff = 0;
497               gs->minimum = DBL_MAX;
498               gs->maximum = -DBL_MAX;
499
500               hsh_insert ( group_hash, gs );
501             }
502
503           if (!var_is_value_missing (v, val, cmd->exclude))
504             {
505               struct group_statistics *totals = &gp->ugs;
506
507               totals->n += weight;
508               totals->sum += weight * val->f;
509               totals->ssq += weight * pow2 (val->f);
510
511               if ( val->f * weight  < totals->minimum )
512                 totals->minimum = val->f * weight;
513
514               if ( val->f * weight  > totals->maximum )
515                 totals->maximum = val->f * weight;
516
517               gs->n += weight;
518               gs->sum += weight * val->f;
519               gs->ssq += weight * pow2 (val->f);
520
521               if ( val->f * weight  < gs->minimum )
522                 gs->minimum = val->f * weight;
523
524               if ( val->f * weight  > gs->maximum )
525                 gs->maximum = val->f * weight;
526             }
527
528           gp->n_groups = hsh_count (group_hash );
529         }
530
531     }
532   casereader_destroy (reader);
533   reader = casereader_clone (input);
534   for ( ; (c = casereader_read (reader) ); case_unref (c))
535     {
536       int i;
537       for (i = 0; i < cmd->n_vars; ++i)
538         {
539           struct per_var_ws *pvw = &ws.vws[i];
540           const struct variable *v = cmd->vars[i];
541           const union value *val = case_data (c, v);
542
543           if ( MISS_ANALYSIS == cmd->missing_type)
544             {
545               if ( var_is_value_missing (v, val, cmd->exclude))
546                 continue;
547             }
548
549           covariance_accumulate_pass2 (pvw->cov, c);
550         }
551     }
552   casereader_destroy (reader);
553
554   for (v = 0; v < cmd->n_vars; ++v)
555     {
556       struct per_var_ws *pvw = &ws.vws[v];
557       gsl_matrix *cm = covariance_calculate_unnormalized (pvw->cov);
558       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
559
560       double n;
561       moments1_calculate (ws.dd_total[v]->mom, &n, NULL, NULL, NULL, NULL);
562
563       pvw->sst = gsl_matrix_get (cm, 0, 0);
564
565       //      gsl_matrix_fprintf (stdout, cm, "%g ");
566
567       reg_sweep (cm, 0);
568
569       pvw->sse = gsl_matrix_get (cm, 0, 0);
570
571       pvw->ssa = pvw->sst - pvw->sse;
572
573       pvw->n_groups = categoricals_total (cats);
574
575       pvw->mse = (pvw->sst - pvw->ssa) / (n - pvw->n_groups);
576     }
577
578   postcalc (cmd);
579
580   
581   for (v = 0; v < cmd->n_vars; ++v)
582     {
583       struct categoricals *cats = covariance_get_categoricals (ws.vws[v].cov);
584
585       categoricals_done (cats);
586       
587       if (categoricals_total (cats) > ws.actual_number_of_groups)
588         ws.actual_number_of_groups = categoricals_total (cats);
589     }
590
591   if ( cmd->stats & STATS_HOMOGENEITY )
592     levene (dict, casereader_clone (input), cmd->indep_var,
593             cmd->n_vars, cmd->vars, cmd->exclude);
594
595   casereader_destroy (input);
596
597   if (!taint_has_tainted_successor (taint))
598     output_oneway (cmd, &ws);
599
600   taint_destroy (taint);
601 }
602
603 /* Pre calculations */
604 static void
605 precalc (const struct oneway_spec *cmd)
606 {
607   size_t i = 0;
608
609   for (i = 0; i < cmd->n_vars; ++i)
610     {
611       struct group_proc *gp = group_proc_get (cmd->vars[i]);
612       struct group_statistics *totals = &gp->ugs;
613
614       /* Create a hash for each of the dependent variables.
615          The hash contains a group_statistics structure,
616          and is keyed by value of the independent variable */
617
618       gp->group_hash = hsh_create (4, compare_group, hash_group,
619                                    (hsh_free_func *) free_group,
620                                    cmd->indep_var);
621
622       totals->sum = 0;
623       totals->n = 0;
624       totals->ssq = 0;
625       totals->sum_diff = 0;
626       totals->maximum = -DBL_MAX;
627       totals->minimum = DBL_MAX;
628     }
629 }
630
631 /* Post calculations for the ONEWAY command */
632 static void
633 postcalc (const struct oneway_spec *cmd)
634 {
635   size_t i = 0;
636
637   for (i = 0; i < cmd->n_vars; ++i)
638     {
639       struct group_proc *gp = group_proc_get (cmd->vars[i]);
640       struct hsh_table *group_hash = gp->group_hash;
641       struct group_statistics *totals = &gp->ugs;
642
643       struct hsh_iterator g;
644       struct group_statistics *gs;
645
646       for (gs =  hsh_first (group_hash, &g);
647            gs != 0;
648            gs = hsh_next (group_hash, &g))
649         {
650           gs->mean = gs->sum / gs->n;
651           gs->s_std_dev = sqrt (gs->ssq / gs->n - pow2 (gs->mean));
652
653           gs->std_dev = sqrt (
654                               gs->n / (gs->n - 1) *
655                               ( gs->ssq / gs->n - pow2 (gs->mean))
656                               );
657
658           gs->se_mean = gs->std_dev / sqrt (gs->n);
659           gs->mean_diff = gs->sum_diff / gs->n;
660         }
661
662       totals->mean = totals->sum / totals->n;
663       totals->std_dev = sqrt (
664                               totals->n / (totals->n - 1) *
665                               (totals->ssq / totals->n - pow2 (totals->mean))
666                               );
667
668       totals->se_mean = totals->std_dev / sqrt (totals->n);
669     }
670 }
671
672 static void show_contrast_coeffs (const struct oneway_spec *cmd, const struct oneway_workspace *ws);
673 static void show_contrast_tests (const struct oneway_spec *cmd, const struct oneway_workspace *ws);
674
675 static void
676 output_oneway (const struct oneway_spec *cmd, struct oneway_workspace *ws)
677 {
678   size_t i = 0;
679
680   /* Check the sanity of the given contrast values */
681   struct contrasts_node *coeff_list  = NULL;
682   ll_for_each (coeff_list, struct contrasts_node, ll, &cmd->contrast_list)
683     {
684       struct coeff_node *cn = NULL;
685       double sum = 0;
686       struct ll_list *cl = &coeff_list->coefficient_list;
687       ++i;
688
689       if (ll_count (cl) != ws->actual_number_of_groups)
690         {
691           msg (SW,
692                _("Number of contrast coefficients must equal the number of groups"));
693           coeff_list->bad_count = true;
694           continue;
695         }
696
697       ll_for_each (cn, struct coeff_node, ll, cl)
698         sum += cn->coeff;
699
700       if ( sum != 0.0 )
701         msg (SW, _("Coefficients for contrast %zu do not total zero"), i);
702     }
703
704   if (cmd->stats & STATS_DESCRIPTIVES)
705     show_descriptives (cmd, ws);
706
707   if (cmd->stats & STATS_HOMOGENEITY)
708     show_homogeneity (cmd, ws);
709
710   show_anova_table (cmd, ws);
711
712   if (ll_count (&cmd->contrast_list) > 0)
713     {
714       show_contrast_coeffs (cmd, ws);
715       show_contrast_tests (cmd, ws);
716     }
717
718   /* Clean up */
719   for (i = 0; i < cmd->n_vars; ++i )
720     {
721       struct hsh_table *group_hash = group_proc_get (cmd->vars[i])->group_hash;
722
723       hsh_destroy (group_hash);
724     }
725
726   hsh_destroy (ws->group_hash);
727 }
728
729
730 /* Show the ANOVA table */
731 static void
732 show_anova_table (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
733 {
734   size_t i;
735   int n_cols =7;
736   size_t n_rows = cmd->n_vars * 3 + 1;
737
738   struct tab_table *t = tab_create (n_cols, n_rows);
739
740   tab_headers (t, 2, 0, 1, 0);
741
742   tab_box (t,
743            TAL_2, TAL_2,
744            -1, TAL_1,
745            0, 0,
746            n_cols - 1, n_rows - 1);
747
748   tab_hline (t, TAL_2, 0, n_cols - 1, 1 );
749   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
750   tab_vline (t, TAL_0, 1, 0, 0);
751
752   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Sum of Squares"));
753   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df"));
754   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Mean Square"));
755   tab_text (t, 5, 0, TAB_CENTER | TAT_TITLE, _("F"));
756   tab_text (t, 6, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
757
758
759   for (i = 0; i < cmd->n_vars; ++i)
760     {
761       double n;
762       double df1, df2;
763       double msa;
764       const char *s = var_to_string (cmd->vars[i]);
765       const struct per_var_ws *pvw = &ws->vws[i];
766
767       moments1_calculate (ws->dd_total[i]->mom, &n, NULL, NULL, NULL, NULL);
768
769       df1 = pvw->n_groups - 1;
770       df2 = n - pvw->n_groups;
771       msa = pvw->ssa / df1;
772
773       tab_text (t, 0, i * 3 + 1, TAB_LEFT | TAT_TITLE, s);
774       tab_text (t, 1, i * 3 + 1, TAB_LEFT | TAT_TITLE, _("Between Groups"));
775       tab_text (t, 1, i * 3 + 2, TAB_LEFT | TAT_TITLE, _("Within Groups"));
776       tab_text (t, 1, i * 3 + 3, TAB_LEFT | TAT_TITLE, _("Total"));
777
778       if (i > 0)
779         tab_hline (t, TAL_1, 0, n_cols - 1, i * 3 + 1);
780
781
782       /* Sums of Squares */
783       tab_double (t, 2, i * 3 + 1, 0, pvw->ssa, NULL);
784       tab_double (t, 2, i * 3 + 3, 0, pvw->sst, NULL);
785       tab_double (t, 2, i * 3 + 2, 0, pvw->sse, NULL);
786
787
788       /* Degrees of freedom */
789       tab_fixed (t, 3, i * 3 + 1, 0, df1, 4, 0);
790       tab_fixed (t, 3, i * 3 + 2, 0, df2, 4, 0);
791       tab_fixed (t, 3, i * 3 + 3, 0, n - 1, 4, 0);
792
793       /* Mean Squares */
794       tab_double (t, 4, i * 3 + 1, TAB_RIGHT, msa, NULL);
795       tab_double (t, 4, i * 3 + 2, TAB_RIGHT, pvw->mse, NULL);
796
797       {
798         const double F = msa / pvw->mse ;
799
800         /* The F value */
801         tab_double (t, 5, i * 3 + 1, 0,  F, NULL);
802
803         /* The significance */
804         tab_double (t, 6, i * 3 + 1, 0, gsl_cdf_fdist_Q (F, df1, df2), NULL);
805       }
806     }
807
808   tab_title (t, _("ANOVA"));
809   tab_submit (t);
810 }
811
812
813 /* Show the descriptives table */
814 static void
815 show_descriptives (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
816 {
817   size_t v;
818   int n_cols = 10;
819   struct tab_table *t;
820   int row;
821
822   const double confidence = 0.95;
823   const double q = (1.0 - confidence) / 2.0;
824
825   const struct fmt_spec *wfmt = cmd->wv ? var_get_print_format (cmd->wv) : &F_8_0;
826
827   int n_rows = 2;
828
829   for (v = 0; v < cmd->n_vars; ++v)
830     n_rows += ws->actual_number_of_groups + 1;
831
832   t = tab_create (n_cols, n_rows);
833   tab_headers (t, 2, 0, 2, 0);
834
835   /* Put a frame around the entire box, and vertical lines inside */
836   tab_box (t,
837            TAL_2, TAL_2,
838            -1, TAL_1,
839            0, 0,
840            n_cols - 1, n_rows - 1);
841
842   /* Underline headers */
843   tab_hline (t, TAL_2, 0, n_cols - 1, 2);
844   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
845
846   tab_text (t, 2, 1, TAB_CENTER | TAT_TITLE, _("N"));
847   tab_text (t, 3, 1, TAB_CENTER | TAT_TITLE, _("Mean"));
848   tab_text (t, 4, 1, TAB_CENTER | TAT_TITLE, _("Std. Deviation"));
849   tab_text (t, 5, 1, TAB_CENTER | TAT_TITLE, _("Std. Error"));
850
851
852   tab_vline (t, TAL_0, 7, 0, 0);
853   tab_hline (t, TAL_1, 6, 7, 1);
854   tab_joint_text_format (t, 6, 0, 7, 0, TAB_CENTER | TAT_TITLE,
855                          _("%g%% Confidence Interval for Mean"),
856                          confidence*100.0);
857
858   tab_text (t, 6, 1, TAB_CENTER | TAT_TITLE, _("Lower Bound"));
859   tab_text (t, 7, 1, TAB_CENTER | TAT_TITLE, _("Upper Bound"));
860
861   tab_text (t, 8, 1, TAB_CENTER | TAT_TITLE, _("Minimum"));
862   tab_text (t, 9, 1, TAB_CENTER | TAT_TITLE, _("Maximum"));
863
864   tab_title (t, _("Descriptives"));
865
866   row = 2;
867   for (v = 0; v < cmd->n_vars; ++v)
868     {
869       const char *s = var_to_string (cmd->vars[v]);
870       const struct fmt_spec *fmt = var_get_print_format (cmd->vars[v]);
871
872       int count = 0;
873
874       struct per_var_ws *pvw = &ws->vws[v];
875       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
876
877       tab_text (t, 0, row, TAB_LEFT | TAT_TITLE, s);
878       if ( v > 0)
879         tab_hline (t, TAL_1, 0, n_cols - 1, row);
880
881       for (count = 0; count < categoricals_total (cats); ++count)
882         {
883           double T;
884           double n, mean, variance;
885           double std_dev, std_error ;
886
887           struct string vstr;
888
889           const union value *gval = categoricals_get_value_by_subscript (cats, count);
890           const struct descriptive_data *dd = categoricals_get_user_data_by_subscript (cats, count);
891
892           moments1_calculate (dd->mom, &n, &mean, &variance, NULL, NULL);
893
894           std_dev = sqrt (variance);
895           std_error = std_dev / sqrt (n) ;
896
897           ds_init_empty (&vstr);
898
899           var_append_value_name (cmd->indep_var, gval, &vstr);
900
901           tab_text (t, 1, row + count,
902                     TAB_LEFT | TAT_TITLE,
903                     ds_cstr (&vstr));
904
905           ds_destroy (&vstr);
906
907           /* Now fill in the numbers ... */
908
909           tab_fixed (t, 2, row + count, 0, n, 8, 0);
910
911           tab_double (t, 3, row + count, 0, mean, NULL);
912
913           tab_double (t, 4, row + count, 0, std_dev, NULL);
914
915
916           tab_double (t, 5, row + count, 0, std_error, NULL);
917
918           /* Now the confidence interval */
919
920           T = gsl_cdf_tdist_Qinv (q, n - 1);
921
922           tab_double (t, 6, row + count, 0,
923                       mean - T * std_error, NULL);
924
925           tab_double (t, 7, row + count, 0,
926                       mean + T * std_error, NULL);
927
928           /* Min and Max */
929
930           tab_double (t, 8, row + count, 0,  dd->minimum, fmt);
931           tab_double (t, 9, row + count, 0,  dd->maximum, fmt);
932         }
933
934       {
935         double T;
936         double n, mean, variance;
937         double std_dev;
938         double std_error;
939
940         moments1_calculate (ws->dd_total[v]->mom, &n, &mean, &variance, NULL, NULL);
941
942         std_dev = sqrt (variance);
943         std_error = std_dev / sqrt (n) ;
944
945         tab_text (t, 1, row + count,
946                   TAB_LEFT | TAT_TITLE, _("Total"));
947
948         tab_double (t, 2, row + count, 0, n, wfmt);
949
950         tab_double (t, 3, row + count, 0, mean, NULL);
951
952         tab_double (t, 4, row + count, 0, std_dev, NULL);
953
954         tab_double (t, 5, row + count, 0, std_error, NULL);
955
956         /* Now the confidence interval */
957         T = gsl_cdf_tdist_Qinv (q, n - 1);
958
959         tab_double (t, 6, row + count, 0,
960                     mean - T * std_error, NULL);
961
962         tab_double (t, 7, row + count, 0,
963                     mean + T * std_error, NULL);
964
965         /* Min and Max */
966         tab_double (t, 8, row + count, 0,  ws->dd_total[v]->minimum, fmt);
967         tab_double (t, 9, row + count, 0,  ws->dd_total[v]->maximum, fmt);
968       }
969
970       row += categoricals_total (cats) + 1;
971     }
972
973   tab_submit (t);
974 }
975
976 /* Show the homogeneity table */
977 static void
978 show_homogeneity (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
979 {
980   size_t v;
981   int n_cols = 5;
982   size_t n_rows = cmd->n_vars + 1;
983
984   struct tab_table *t = tab_create (n_cols, n_rows);
985   tab_headers (t, 1, 0, 1, 0);
986
987   /* Put a frame around the entire box, and vertical lines inside */
988   tab_box (t,
989            TAL_2, TAL_2,
990            -1, TAL_1,
991            0, 0,
992            n_cols - 1, n_rows - 1);
993
994
995   tab_hline (t, TAL_2, 0, n_cols - 1, 1);
996   tab_vline (t, TAL_2, 1, 0, n_rows - 1);
997
998   tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Levene Statistic"));
999   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("df1"));
1000   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df2"));
1001   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
1002
1003   tab_title (t, _("Test of Homogeneity of Variances"));
1004
1005   for (v = 0; v < cmd->n_vars; ++v)
1006     {
1007       double n;
1008
1009
1010       const struct per_var_ws *pvw = &ws->vws[v];
1011
1012       const struct variable *var = cmd->vars[v];
1013       const struct group_proc *gp = group_proc_get (cmd->vars[v]);
1014       const char *s = var_to_string (var);
1015       double df1, df2;
1016       double F = gp->levene;
1017
1018       moments1_calculate (ws->dd_total[v]->mom, &n, NULL, NULL, NULL, NULL);
1019
1020       df1 = pvw->n_groups - 1;
1021       df2 = n - pvw->n_groups;
1022
1023       tab_text (t, 0, v + 1, TAB_LEFT | TAT_TITLE, s);
1024
1025       tab_double (t, 1, v + 1, TAB_RIGHT, F, NULL);
1026       tab_fixed (t, 2, v + 1, TAB_RIGHT, df1, 8, 0);
1027       tab_fixed (t, 3, v + 1, TAB_RIGHT, df2, 8, 0);
1028
1029       /* Now the significance */
1030       tab_double (t, 4, v + 1, TAB_RIGHT, gsl_cdf_fdist_Q (F, df1, df2), NULL);
1031     }
1032
1033   tab_submit (t);
1034 }
1035
1036
1037 /* Show the contrast coefficients table */
1038 static void
1039 show_contrast_coeffs (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1040 {
1041   int c_num = 0;
1042   struct ll *cli;
1043
1044   int n_contrasts = ll_count (&cmd->contrast_list);
1045   int n_cols = 2 + ws->actual_number_of_groups;
1046   int n_rows = 2 + n_contrasts;
1047
1048   struct tab_table *t;
1049
1050   const struct covariance *cov = ws->vws[0].cov ;
1051
1052   t = tab_create (n_cols, n_rows);
1053   tab_headers (t, 2, 0, 2, 0);
1054
1055   /* Put a frame around the entire box, and vertical lines inside */
1056   tab_box (t,
1057            TAL_2, TAL_2,
1058            -1, TAL_1,
1059            0, 0,
1060            n_cols - 1, n_rows - 1);
1061
1062   tab_box (t,
1063            -1, -1,
1064            TAL_0, TAL_0,
1065            2, 0,
1066            n_cols - 1, 0);
1067
1068   tab_box (t,
1069            -1, -1,
1070            TAL_0, TAL_0,
1071            0, 0,
1072            1, 1);
1073
1074   tab_hline (t, TAL_1, 2, n_cols - 1, 1);
1075   tab_hline (t, TAL_2, 0, n_cols - 1, 2);
1076
1077   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
1078
1079   tab_title (t, _("Contrast Coefficients"));
1080
1081   tab_text (t,  0, 2, TAB_LEFT | TAT_TITLE, _("Contrast"));
1082
1083
1084   tab_joint_text (t, 2, 0, n_cols - 1, 0, TAB_CENTER | TAT_TITLE,
1085                   var_to_string (cmd->indep_var));
1086
1087   for ( cli = ll_head (&cmd->contrast_list);
1088         cli != ll_null (&cmd->contrast_list);
1089         cli = ll_next (cli))
1090     {
1091       int count = 0;
1092       struct contrasts_node *cn = ll_data (cli, struct contrasts_node, ll);
1093       struct ll *coeffi ;
1094
1095       tab_text_format (t, 1, c_num + 2, TAB_CENTER, "%d", c_num + 1);
1096
1097       for (coeffi = ll_head (&cn->coefficient_list);
1098            coeffi != ll_null (&cn->coefficient_list);
1099            ++count, coeffi = ll_next (coeffi))
1100         {
1101           const struct categoricals *cats = covariance_get_categoricals (cov);
1102           const union value *val = categoricals_get_value_by_subscript (cats, count);
1103           struct string vstr;
1104
1105           ds_init_empty (&vstr);
1106
1107           var_append_value_name (cmd->indep_var, val, &vstr);
1108
1109           tab_text (t, count + 2, 1, TAB_CENTER | TAT_TITLE, ds_cstr (&vstr));
1110
1111           ds_destroy (&vstr);
1112
1113           if (cn->bad_count)
1114             tab_text (t, count + 2, c_num + 2, TAB_RIGHT, "?" );
1115           else
1116             {
1117               struct coeff_node *coeffn = ll_data (coeffi, struct coeff_node, ll);
1118
1119               tab_text_format (t, count + 2, c_num + 2, TAB_RIGHT, "%g", coeffn->coeff);
1120             }
1121         }
1122       ++c_num;
1123     }
1124
1125   tab_submit (t);
1126 }
1127
1128
1129 /* Show the results of the contrast tests */
1130 static void
1131 show_contrast_tests (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1132 {
1133   int n_contrasts = ll_count (&cmd->contrast_list);
1134   size_t v;
1135   int n_cols = 8;
1136   size_t n_rows = 1 + cmd->n_vars * 2 * n_contrasts;
1137
1138   struct tab_table *t;
1139
1140   t = tab_create (n_cols, n_rows);
1141   tab_headers (t, 3, 0, 1, 0);
1142
1143   /* Put a frame around the entire box, and vertical lines inside */
1144   tab_box (t,
1145            TAL_2, TAL_2,
1146            -1, TAL_1,
1147            0, 0,
1148            n_cols - 1, n_rows - 1);
1149
1150   tab_box (t,
1151            -1, -1,
1152            TAL_0, TAL_0,
1153            0, 0,
1154            2, 0);
1155
1156   tab_hline (t, TAL_2, 0, n_cols - 1, 1);
1157   tab_vline (t, TAL_2, 3, 0, n_rows - 1);
1158
1159   tab_title (t, _("Contrast Tests"));
1160
1161   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Contrast"));
1162   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Value of Contrast"));
1163   tab_text (t,  4, 0, TAB_CENTER | TAT_TITLE, _("Std. Error"));
1164   tab_text (t,  5, 0, TAB_CENTER | TAT_TITLE, _("t"));
1165   tab_text (t,  6, 0, TAB_CENTER | TAT_TITLE, _("df"));
1166   tab_text (t,  7, 0, TAB_CENTER | TAT_TITLE, _("Sig. (2-tailed)"));
1167
1168   for (v = 0; v < cmd->n_vars; ++v)
1169     {
1170       const struct per_var_ws *pvw = &ws->vws[v];
1171       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
1172       struct ll *cli;
1173       int i = 0;
1174       int lines_per_variable = 2 * n_contrasts;
1175
1176       tab_text (t,  0, (v * lines_per_variable) + 1, TAB_LEFT | TAT_TITLE,
1177                 var_to_string (cmd->vars[v]));
1178
1179       for ( cli = ll_head (&cmd->contrast_list);
1180             cli != ll_null (&cmd->contrast_list);
1181             ++i, cli = ll_next (cli))
1182         {
1183           struct contrasts_node *cn = ll_data (cli, struct contrasts_node, ll);
1184           struct ll *coeffi ;
1185           int ci = 0;
1186           double contrast_value = 0.0;
1187           double coef_msq = 0.0;
1188
1189           double T;
1190           double std_error_contrast;
1191           double df;
1192           double sec_vneq = 0.0;
1193
1194           /* Note: The calculation of the degrees of freedom in the
1195              "variances not equal" case is painfull!!
1196              The following formula may help to understand it:
1197              \frac{\left (\sum_{i=1}^k{c_i^2\frac{s_i^2}{n_i}}\right)^2}
1198              {
1199              \sum_{i=1}^k\left (
1200              \frac{\left (c_i^2\frac{s_i^2}{n_i}\right)^2}  {n_i-1}
1201              \right)
1202              }
1203           */
1204
1205           double df_denominator = 0.0;
1206           double df_numerator = 0.0;
1207
1208           double grand_n;
1209           moments1_calculate (ws->dd_total[v]->mom, &grand_n, NULL, NULL, NULL, NULL);
1210           df = grand_n - pvw->n_groups;
1211
1212           if ( i == 0 )
1213             {
1214               tab_text (t,  1, (v * lines_per_variable) + i + 1,
1215                         TAB_LEFT | TAT_TITLE,
1216                         _("Assume equal variances"));
1217
1218               tab_text (t,  1, (v * lines_per_variable) + i + 1 + n_contrasts,
1219                         TAB_LEFT | TAT_TITLE,
1220                         _("Does not assume equal"));
1221             }
1222
1223           tab_text_format (t,  2, (v * lines_per_variable) + i + 1,
1224                            TAB_CENTER | TAT_TITLE, "%d", i + 1);
1225
1226
1227           tab_text_format (t,  2,
1228                            (v * lines_per_variable) + i + 1 + n_contrasts,
1229                            TAB_CENTER | TAT_TITLE, "%d", i + 1);
1230
1231           if (cn->bad_count)
1232             continue;
1233
1234           for (coeffi = ll_head (&cn->coefficient_list);
1235                coeffi != ll_null (&cn->coefficient_list);
1236                ++ci, coeffi = ll_next (coeffi))
1237             {
1238               double n, mean, variance;
1239               const struct descriptive_data *dd = categoricals_get_user_data_by_subscript (cats, ci);
1240               struct coeff_node *cn = ll_data (coeffi, struct coeff_node, ll);
1241               const double coef = cn->coeff; 
1242               double winv ;
1243
1244               moments1_calculate (dd->mom, &n, &mean, &variance, NULL, NULL);
1245
1246               winv = variance / n;
1247
1248               contrast_value += coef * mean;
1249
1250               coef_msq += (pow2 (coef)) / n;
1251
1252               sec_vneq += (pow2 (coef)) * variance / n;
1253
1254               df_numerator += (pow2 (coef)) * winv;
1255               df_denominator += pow2((pow2 (coef)) * winv) / (n - 1);
1256             }
1257
1258           sec_vneq = sqrt (sec_vneq);
1259
1260           df_numerator = pow2 (df_numerator);
1261
1262           tab_double (t,  3, (v * lines_per_variable) + i + 1,
1263                       TAB_RIGHT, contrast_value, NULL);
1264
1265           tab_double (t,  3, (v * lines_per_variable) + i + 1 +
1266                       n_contrasts,
1267                       TAB_RIGHT, contrast_value, NULL);
1268
1269           std_error_contrast = sqrt (pvw->mse * coef_msq);
1270
1271           /* Std. Error */
1272           tab_double (t,  4, (v * lines_per_variable) + i + 1,
1273                       TAB_RIGHT, std_error_contrast,
1274                       NULL);
1275
1276           T = fabs (contrast_value / std_error_contrast);
1277
1278           /* T Statistic */
1279
1280           tab_double (t,  5, (v * lines_per_variable) + i + 1,
1281                       TAB_RIGHT, T,
1282                       NULL);
1283
1284
1285           /* Degrees of Freedom */
1286           tab_fixed (t,  6, (v * lines_per_variable) + i + 1,
1287                      TAB_RIGHT,  df,
1288                      8, 0);
1289
1290
1291           /* Significance TWO TAILED !!*/
1292           tab_double (t,  7, (v * lines_per_variable) + i + 1,
1293                       TAB_RIGHT,  2 * gsl_cdf_tdist_Q (T, df),
1294                       NULL);
1295
1296           /* Now for the Variances NOT Equal case */
1297
1298           /* Std. Error */
1299           tab_double (t,  4,
1300                       (v * lines_per_variable) + i + 1 + n_contrasts,
1301                       TAB_RIGHT, sec_vneq,
1302                       NULL);
1303
1304           T = contrast_value / sec_vneq;
1305           tab_double (t,  5,
1306                       (v * lines_per_variable) + i + 1 + n_contrasts,
1307                       TAB_RIGHT, T,
1308                       NULL);
1309
1310           df = df_numerator / df_denominator;
1311
1312           tab_double (t,  6,
1313                       (v * lines_per_variable) + i + 1 + n_contrasts,
1314                       TAB_RIGHT, df,
1315                       NULL);
1316
1317           /* The Significance */
1318           tab_double (t, 7, (v * lines_per_variable) + i + 1 + n_contrasts,
1319                       TAB_RIGHT,  2 * gsl_cdf_tdist_Q (T,df),
1320                       NULL);
1321         }
1322
1323       if ( v > 0 )
1324         tab_hline (t, TAL_1, 0, n_cols - 1, (v * lines_per_variable) + 1);
1325     }
1326
1327   tab_submit (t);
1328 }
1329
1330