Categoricals: Use moments instead of keeping cc count ourselves
[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           {
473             struct per_var_ws *pvw = &ws.vws[i];
474
475             covariance_accumulate_pass1 (pvw->cov, c);
476           }
477
478           const struct variable *v = cmd->vars[i];
479
480           const union value *val = case_data (c, v);
481
482           struct group_proc *gp = group_proc_get (cmd->vars[i]);
483           struct hsh_table *group_hash = gp->group_hash;
484
485           struct group_statistics *gs;
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           covariance_accumulate_pass2 (pvw->cov, c);
541         }
542     }
543   casereader_destroy (reader);
544
545   for (v = 0; v < cmd->n_vars; ++v)
546     {
547       struct per_var_ws *pvw = &ws.vws[v];
548       gsl_matrix *cm = covariance_calculate_unnormalized (pvw->cov);
549       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
550
551       double n;
552       moments1_calculate (ws.dd_total[v]->mom, &n, NULL, NULL, NULL, NULL);
553
554       pvw->sst = gsl_matrix_get (cm, 0, 0);
555
556       //      gsl_matrix_fprintf (stdout, cm, "%g ");
557
558       reg_sweep (cm, 0);
559
560       pvw->sse = gsl_matrix_get (cm, 0, 0);
561
562       pvw->ssa = pvw->sst - pvw->sse;
563
564       pvw->n_groups = categoricals_total (cats);
565
566       pvw->mse = (pvw->sst - pvw->ssa) / (n - pvw->n_groups);
567     }
568
569   postcalc (cmd);
570
571   
572   for (v = 0; v < cmd->n_vars; ++v)
573     {
574       struct categoricals *cats = covariance_get_categoricals (ws.vws[v].cov);
575
576       categoricals_done (cats);
577       
578       if (categoricals_total (cats) > ws.actual_number_of_groups)
579         ws.actual_number_of_groups = categoricals_total (cats);
580     }
581
582   if ( cmd->stats & STATS_HOMOGENEITY )
583     levene (dict, casereader_clone (input), cmd->indep_var,
584             cmd->n_vars, cmd->vars, cmd->exclude);
585
586   casereader_destroy (input);
587
588   if (!taint_has_tainted_successor (taint))
589     output_oneway (cmd, &ws);
590
591   taint_destroy (taint);
592 }
593
594 /* Pre calculations */
595 static void
596 precalc (const struct oneway_spec *cmd)
597 {
598   size_t i = 0;
599
600   for (i = 0; i < cmd->n_vars; ++i)
601     {
602       struct group_proc *gp = group_proc_get (cmd->vars[i]);
603       struct group_statistics *totals = &gp->ugs;
604
605       /* Create a hash for each of the dependent variables.
606          The hash contains a group_statistics structure,
607          and is keyed by value of the independent variable */
608
609       gp->group_hash = hsh_create (4, compare_group, hash_group,
610                                    (hsh_free_func *) free_group,
611                                    cmd->indep_var);
612
613       totals->sum = 0;
614       totals->n = 0;
615       totals->ssq = 0;
616       totals->sum_diff = 0;
617       totals->maximum = -DBL_MAX;
618       totals->minimum = DBL_MAX;
619     }
620 }
621
622 /* Post calculations for the ONEWAY command */
623 static void
624 postcalc (const struct oneway_spec *cmd)
625 {
626   size_t i = 0;
627
628   for (i = 0; i < cmd->n_vars; ++i)
629     {
630       struct group_proc *gp = group_proc_get (cmd->vars[i]);
631       struct hsh_table *group_hash = gp->group_hash;
632       struct group_statistics *totals = &gp->ugs;
633
634       struct hsh_iterator g;
635       struct group_statistics *gs;
636
637       for (gs =  hsh_first (group_hash, &g);
638            gs != 0;
639            gs = hsh_next (group_hash, &g))
640         {
641           gs->mean = gs->sum / gs->n;
642           gs->s_std_dev = sqrt (gs->ssq / gs->n - pow2 (gs->mean));
643
644           gs->std_dev = sqrt (
645                               gs->n / (gs->n - 1) *
646                               ( gs->ssq / gs->n - pow2 (gs->mean))
647                               );
648
649           gs->se_mean = gs->std_dev / sqrt (gs->n);
650           gs->mean_diff = gs->sum_diff / gs->n;
651         }
652
653       totals->mean = totals->sum / totals->n;
654       totals->std_dev = sqrt (
655                               totals->n / (totals->n - 1) *
656                               (totals->ssq / totals->n - pow2 (totals->mean))
657                               );
658
659       totals->se_mean = totals->std_dev / sqrt (totals->n);
660     }
661 }
662
663 static void show_contrast_coeffs (const struct oneway_spec *cmd, const struct oneway_workspace *ws);
664 static void show_contrast_tests (const struct oneway_spec *cmd, const struct oneway_workspace *ws);
665
666 static void
667 output_oneway (const struct oneway_spec *cmd, struct oneway_workspace *ws)
668 {
669   size_t i = 0;
670
671   /* Check the sanity of the given contrast values */
672   struct contrasts_node *coeff_list  = NULL;
673   ll_for_each (coeff_list, struct contrasts_node, ll, &cmd->contrast_list)
674     {
675       struct coeff_node *cn = NULL;
676       double sum = 0;
677       struct ll_list *cl = &coeff_list->coefficient_list;
678       ++i;
679
680       if (ll_count (cl) != ws->actual_number_of_groups)
681         {
682           msg (SW,
683                _("Number of contrast coefficients must equal the number of groups"));
684           coeff_list->bad_count = true;
685           continue;
686         }
687
688       ll_for_each (cn, struct coeff_node, ll, cl)
689         sum += cn->coeff;
690
691       if ( sum != 0.0 )
692         msg (SW, _("Coefficients for contrast %zu do not total zero"), i);
693     }
694
695   if (cmd->stats & STATS_DESCRIPTIVES)
696     show_descriptives (cmd, ws);
697
698   if (cmd->stats & STATS_HOMOGENEITY)
699     show_homogeneity (cmd, ws);
700
701   show_anova_table (cmd, ws);
702
703   if (ll_count (&cmd->contrast_list) > 0)
704     {
705       show_contrast_coeffs (cmd, ws);
706       show_contrast_tests (cmd, ws);
707     }
708
709   /* Clean up */
710   for (i = 0; i < cmd->n_vars; ++i )
711     {
712       struct hsh_table *group_hash = group_proc_get (cmd->vars[i])->group_hash;
713
714       hsh_destroy (group_hash);
715     }
716
717   hsh_destroy (ws->group_hash);
718 }
719
720
721 /* Show the ANOVA table */
722 static void
723 show_anova_table (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
724 {
725   size_t i;
726   int n_cols =7;
727   size_t n_rows = cmd->n_vars * 3 + 1;
728
729   struct tab_table *t = tab_create (n_cols, n_rows);
730
731   tab_headers (t, 2, 0, 1, 0);
732
733   tab_box (t,
734            TAL_2, TAL_2,
735            -1, TAL_1,
736            0, 0,
737            n_cols - 1, n_rows - 1);
738
739   tab_hline (t, TAL_2, 0, n_cols - 1, 1 );
740   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
741   tab_vline (t, TAL_0, 1, 0, 0);
742
743   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Sum of Squares"));
744   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df"));
745   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Mean Square"));
746   tab_text (t, 5, 0, TAB_CENTER | TAT_TITLE, _("F"));
747   tab_text (t, 6, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
748
749
750   for (i = 0; i < cmd->n_vars; ++i)
751     {
752       double n;
753       moments1_calculate (ws->dd_total[i]->mom, &n, NULL, NULL, NULL, NULL);
754
755       const struct per_var_ws *pvw = &ws->vws[i];
756       const double df1 = pvw->n_groups - 1;
757       const double df2 = n - pvw->n_groups;
758       const double msa = pvw->ssa / df1;
759
760       const char *s = var_to_string (cmd->vars[i]);
761
762       tab_text (t, 0, i * 3 + 1, TAB_LEFT | TAT_TITLE, s);
763       tab_text (t, 1, i * 3 + 1, TAB_LEFT | TAT_TITLE, _("Between Groups"));
764       tab_text (t, 1, i * 3 + 2, TAB_LEFT | TAT_TITLE, _("Within Groups"));
765       tab_text (t, 1, i * 3 + 3, TAB_LEFT | TAT_TITLE, _("Total"));
766
767       if (i > 0)
768         tab_hline (t, TAL_1, 0, n_cols - 1, i * 3 + 1);
769
770
771       /* Sums of Squares */
772       tab_double (t, 2, i * 3 + 1, 0, pvw->ssa, NULL);
773       tab_double (t, 2, i * 3 + 3, 0, pvw->sst, NULL);
774       tab_double (t, 2, i * 3 + 2, 0, pvw->sse, NULL);
775
776
777       /* Degrees of freedom */
778       tab_fixed (t, 3, i * 3 + 1, 0, df1, 4, 0);
779       tab_fixed (t, 3, i * 3 + 2, 0, df2, 4, 0);
780       tab_fixed (t, 3, i * 3 + 3, 0, n - 1, 4, 0);
781
782       /* Mean Squares */
783       tab_double (t, 4, i * 3 + 1, TAB_RIGHT, msa, NULL);
784       tab_double (t, 4, i * 3 + 2, TAB_RIGHT, pvw->mse, NULL);
785
786       {
787         const double F = msa / pvw->mse ;
788
789         /* The F value */
790         tab_double (t, 5, i * 3 + 1, 0,  F, NULL);
791
792         /* The significance */
793         tab_double (t, 6, i * 3 + 1, 0, gsl_cdf_fdist_Q (F, df1, df2), NULL);
794       }
795     }
796
797   tab_title (t, _("ANOVA"));
798   tab_submit (t);
799 }
800
801
802 /* Show the descriptives table */
803 static void
804 show_descriptives (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
805 {
806   size_t v;
807   int n_cols = 10;
808   struct tab_table *t;
809   int row;
810
811   const double confidence = 0.95;
812   const double q = (1.0 - confidence) / 2.0;
813
814   const struct fmt_spec *wfmt = cmd->wv ? var_get_print_format (cmd->wv) : &F_8_0;
815
816   int n_rows = 2;
817
818   for (v = 0; v < cmd->n_vars; ++v)
819     n_rows += ws->actual_number_of_groups + 1;
820
821   t = tab_create (n_cols, n_rows);
822   tab_headers (t, 2, 0, 2, 0);
823
824   /* Put a frame around the entire box, and vertical lines inside */
825   tab_box (t,
826            TAL_2, TAL_2,
827            -1, TAL_1,
828            0, 0,
829            n_cols - 1, n_rows - 1);
830
831   /* Underline headers */
832   tab_hline (t, TAL_2, 0, n_cols - 1, 2);
833   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
834
835   tab_text (t, 2, 1, TAB_CENTER | TAT_TITLE, _("N"));
836   tab_text (t, 3, 1, TAB_CENTER | TAT_TITLE, _("Mean"));
837   tab_text (t, 4, 1, TAB_CENTER | TAT_TITLE, _("Std. Deviation"));
838   tab_text (t, 5, 1, TAB_CENTER | TAT_TITLE, _("Std. Error"));
839
840
841   tab_vline (t, TAL_0, 7, 0, 0);
842   tab_hline (t, TAL_1, 6, 7, 1);
843   tab_joint_text_format (t, 6, 0, 7, 0, TAB_CENTER | TAT_TITLE,
844                          _("%g%% Confidence Interval for Mean"),
845                          confidence*100.0);
846
847   tab_text (t, 6, 1, TAB_CENTER | TAT_TITLE, _("Lower Bound"));
848   tab_text (t, 7, 1, TAB_CENTER | TAT_TITLE, _("Upper Bound"));
849
850   tab_text (t, 8, 1, TAB_CENTER | TAT_TITLE, _("Minimum"));
851   tab_text (t, 9, 1, TAB_CENTER | TAT_TITLE, _("Maximum"));
852
853   tab_title (t, _("Descriptives"));
854
855   row = 2;
856   for (v = 0; v < cmd->n_vars; ++v)
857     {
858       const char *s = var_to_string (cmd->vars[v]);
859       const struct fmt_spec *fmt = var_get_print_format (cmd->vars[v]);
860
861       int count = 0;
862
863       struct per_var_ws *pvw = &ws->vws[v];
864       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
865
866       tab_text (t, 0, row, TAB_LEFT | TAT_TITLE, s);
867       if ( v > 0)
868         tab_hline (t, TAL_1, 0, n_cols - 1, row);
869
870       for (count = 0; count < categoricals_total (cats); ++count)
871         {
872           double T;
873           double n, mean, variance;
874           double std_dev, std_error ;
875
876           struct string vstr;
877
878           const union value *gval = categoricals_get_value_by_subscript (cats, count);
879           const struct descriptive_data *dd = categoricals_get_user_data_by_subscript (cats, count);
880
881           moments1_calculate (dd->mom, &n, &mean, &variance, NULL, NULL);
882
883           std_dev = sqrt (variance);
884           std_error = std_dev / sqrt (n) ;
885
886           ds_init_empty (&vstr);
887
888           var_append_value_name (cmd->indep_var, gval, &vstr);
889
890           tab_text (t, 1, row + count,
891                     TAB_LEFT | TAT_TITLE,
892                     ds_cstr (&vstr));
893
894           ds_destroy (&vstr);
895
896           /* Now fill in the numbers ... */
897
898           tab_fixed (t, 2, row + count, 0, n, 8, 0);
899
900           tab_double (t, 3, row + count, 0, mean, NULL);
901
902           tab_double (t, 4, row + count, 0, std_dev, NULL);
903
904
905           tab_double (t, 5, row + count, 0, std_error, NULL);
906
907           /* Now the confidence interval */
908
909           T = gsl_cdf_tdist_Qinv (q, n - 1);
910
911           tab_double (t, 6, row + count, 0,
912                       mean - T * std_error, NULL);
913
914           tab_double (t, 7, row + count, 0,
915                       mean + T * std_error, NULL);
916
917           /* Min and Max */
918
919           tab_double (t, 8, row + count, 0,  dd->minimum, fmt);
920           tab_double (t, 9, row + count, 0,  dd->maximum, fmt);
921         }
922
923       {
924         double T;
925         double n, mean, variance;
926         double std_dev;
927         double std_error;
928
929         moments1_calculate (ws->dd_total[v]->mom, &n, &mean, &variance, NULL, NULL);
930
931         std_dev = sqrt (variance);
932         std_error = std_dev / sqrt (n) ;
933
934         tab_text (t, 1, row + count,
935                   TAB_LEFT | TAT_TITLE, _("Total"));
936
937         tab_double (t, 2, row + count, 0, n, wfmt);
938
939         tab_double (t, 3, row + count, 0, mean, NULL);
940
941         tab_double (t, 4, row + count, 0, std_dev, NULL);
942
943         tab_double (t, 5, row + count, 0, std_error, NULL);
944
945         /* Now the confidence interval */
946         T = gsl_cdf_tdist_Qinv (q, n - 1);
947
948         tab_double (t, 6, row + count, 0,
949                     mean - T * std_error, NULL);
950
951         tab_double (t, 7, row + count, 0,
952                     mean + T * std_error, NULL);
953
954         /* Min and Max */
955         tab_double (t, 8, row + count, 0,  ws->dd_total[v]->minimum, fmt);
956         tab_double (t, 9, row + count, 0,  ws->dd_total[v]->maximum, fmt);
957       }
958
959       row += categoricals_total (cats) + 1;
960     }
961
962   tab_submit (t);
963 }
964
965 /* Show the homogeneity table */
966 static void
967 show_homogeneity (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
968 {
969   size_t v;
970   int n_cols = 5;
971   size_t n_rows = cmd->n_vars + 1;
972
973   struct tab_table *t = tab_create (n_cols, n_rows);
974   tab_headers (t, 1, 0, 1, 0);
975
976   /* Put a frame around the entire box, and vertical lines inside */
977   tab_box (t,
978            TAL_2, TAL_2,
979            -1, TAL_1,
980            0, 0,
981            n_cols - 1, n_rows - 1);
982
983
984   tab_hline (t, TAL_2, 0, n_cols - 1, 1);
985   tab_vline (t, TAL_2, 1, 0, n_rows - 1);
986
987   tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Levene Statistic"));
988   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("df1"));
989   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df2"));
990   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
991
992   tab_title (t, _("Test of Homogeneity of Variances"));
993
994   for (v = 0; v < cmd->n_vars; ++v)
995     {
996       double n;
997       moments1_calculate (ws->dd_total[v]->mom, &n, NULL, NULL, NULL, NULL);
998
999       const struct per_var_ws *pvw = &ws->vws[v];
1000       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
1001
1002       const struct variable *var = cmd->vars[v];
1003       const struct group_proc *gp = group_proc_get (cmd->vars[v]);
1004       const char *s = var_to_string (var);
1005
1006       const double df1 = pvw->n_groups - 1;
1007       const double df2 = n - pvw->n_groups;
1008       double F = gp->levene;
1009
1010       tab_text (t, 0, v + 1, TAB_LEFT | TAT_TITLE, s);
1011
1012
1013       tab_double (t, 1, v + 1, TAB_RIGHT, F, NULL);
1014       tab_fixed (t, 2, v + 1, TAB_RIGHT, df1, 8, 0);
1015       tab_fixed (t, 3, v + 1, TAB_RIGHT, df2, 8, 0);
1016
1017       /* Now the significance */
1018       tab_double (t, 4, v + 1, TAB_RIGHT, gsl_cdf_fdist_Q (F, df1, df2), NULL);
1019     }
1020
1021   tab_submit (t);
1022 }
1023
1024
1025 /* Show the contrast coefficients table */
1026 static void
1027 show_contrast_coeffs (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1028 {
1029   int c_num = 0;
1030   struct ll *cli;
1031
1032   int n_contrasts = ll_count (&cmd->contrast_list);
1033   int n_cols = 2 + ws->actual_number_of_groups;
1034   int n_rows = 2 + n_contrasts;
1035
1036   struct tab_table *t;
1037
1038   const struct covariance *cov = ws->vws[0].cov ;
1039
1040   t = tab_create (n_cols, n_rows);
1041   tab_headers (t, 2, 0, 2, 0);
1042
1043   /* Put a frame around the entire box, and vertical lines inside */
1044   tab_box (t,
1045            TAL_2, TAL_2,
1046            -1, TAL_1,
1047            0, 0,
1048            n_cols - 1, n_rows - 1);
1049
1050   tab_box (t,
1051            -1, -1,
1052            TAL_0, TAL_0,
1053            2, 0,
1054            n_cols - 1, 0);
1055
1056   tab_box (t,
1057            -1, -1,
1058            TAL_0, TAL_0,
1059            0, 0,
1060            1, 1);
1061
1062   tab_hline (t, TAL_1, 2, n_cols - 1, 1);
1063   tab_hline (t, TAL_2, 0, n_cols - 1, 2);
1064
1065   tab_vline (t, TAL_2, 2, 0, n_rows - 1);
1066
1067   tab_title (t, _("Contrast Coefficients"));
1068
1069   tab_text (t,  0, 2, TAB_LEFT | TAT_TITLE, _("Contrast"));
1070
1071
1072   tab_joint_text (t, 2, 0, n_cols - 1, 0, TAB_CENTER | TAT_TITLE,
1073                   var_to_string (cmd->indep_var));
1074
1075   for ( cli = ll_head (&cmd->contrast_list);
1076         cli != ll_null (&cmd->contrast_list);
1077         cli = ll_next (cli))
1078     {
1079       int count = 0;
1080       struct contrasts_node *cn = ll_data (cli, struct contrasts_node, ll);
1081       struct ll *coeffi ;
1082
1083       tab_text_format (t, 1, c_num + 2, TAB_CENTER, "%d", c_num + 1);
1084
1085       for (coeffi = ll_head (&cn->coefficient_list);
1086            coeffi != ll_null (&cn->coefficient_list);
1087            ++count, coeffi = ll_next (coeffi))
1088         {
1089           const struct categoricals *cats = covariance_get_categoricals (cov);
1090           const union value *val = categoricals_get_value_by_subscript (cats, count);
1091           struct string vstr;
1092
1093           ds_init_empty (&vstr);
1094
1095           var_append_value_name (cmd->indep_var, val, &vstr);
1096
1097           tab_text (t, count + 2, 1, TAB_CENTER | TAT_TITLE, ds_cstr (&vstr));
1098
1099           ds_destroy (&vstr);
1100
1101           if (cn->bad_count)
1102             tab_text (t, count + 2, c_num + 2, TAB_RIGHT, "?" );
1103           else
1104             {
1105               struct coeff_node *coeffn = ll_data (coeffi, struct coeff_node, ll);
1106
1107               tab_text_format (t, count + 2, c_num + 2, TAB_RIGHT, "%g", coeffn->coeff);
1108             }
1109         }
1110       ++c_num;
1111     }
1112
1113   tab_submit (t);
1114 }
1115
1116
1117 /* Show the results of the contrast tests */
1118 static void
1119 show_contrast_tests (const struct oneway_spec *cmd, const struct oneway_workspace *ws)
1120 {
1121   int n_contrasts = ll_count (&cmd->contrast_list);
1122   size_t v;
1123   int n_cols = 8;
1124   size_t n_rows = 1 + cmd->n_vars * 2 * n_contrasts;
1125
1126   struct tab_table *t;
1127
1128   t = tab_create (n_cols, n_rows);
1129   tab_headers (t, 3, 0, 1, 0);
1130
1131   /* Put a frame around the entire box, and vertical lines inside */
1132   tab_box (t,
1133            TAL_2, TAL_2,
1134            -1, TAL_1,
1135            0, 0,
1136            n_cols - 1, n_rows - 1);
1137
1138   tab_box (t,
1139            -1, -1,
1140            TAL_0, TAL_0,
1141            0, 0,
1142            2, 0);
1143
1144   tab_hline (t, TAL_2, 0, n_cols - 1, 1);
1145   tab_vline (t, TAL_2, 3, 0, n_rows - 1);
1146
1147   tab_title (t, _("Contrast Tests"));
1148
1149   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Contrast"));
1150   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Value of Contrast"));
1151   tab_text (t,  4, 0, TAB_CENTER | TAT_TITLE, _("Std. Error"));
1152   tab_text (t,  5, 0, TAB_CENTER | TAT_TITLE, _("t"));
1153   tab_text (t,  6, 0, TAB_CENTER | TAT_TITLE, _("df"));
1154   tab_text (t,  7, 0, TAB_CENTER | TAT_TITLE, _("Sig. (2-tailed)"));
1155
1156   for (v = 0; v < cmd->n_vars; ++v)
1157     {
1158       const struct per_var_ws *pvw = &ws->vws[v];
1159       const struct categoricals *cats = covariance_get_categoricals (pvw->cov);
1160       struct ll *cli;
1161       int i = 0;
1162       int lines_per_variable = 2 * n_contrasts;
1163
1164       tab_text (t,  0, (v * lines_per_variable) + 1, TAB_LEFT | TAT_TITLE,
1165                 var_to_string (cmd->vars[v]));
1166
1167       for ( cli = ll_head (&cmd->contrast_list);
1168             cli != ll_null (&cmd->contrast_list);
1169             ++i, cli = ll_next (cli))
1170         {
1171           struct contrasts_node *cn = ll_data (cli, struct contrasts_node, ll);
1172           struct ll *coeffi ;
1173           int ci = 0;
1174           double contrast_value = 0.0;
1175           double coef_msq = 0.0;
1176
1177           double T;
1178           double std_error_contrast;
1179           double df;
1180           double sec_vneq = 0.0;
1181
1182           /* Note: The calculation of the degrees of freedom in the
1183              "variances not equal" case is painfull!!
1184              The following formula may help to understand it:
1185              \frac{\left (\sum_{i=1}^k{c_i^2\frac{s_i^2}{n_i}}\right)^2}
1186              {
1187              \sum_{i=1}^k\left (
1188              \frac{\left (c_i^2\frac{s_i^2}{n_i}\right)^2}  {n_i-1}
1189              \right)
1190              }
1191           */
1192
1193           double df_denominator = 0.0;
1194           double df_numerator = 0.0;
1195
1196           double grand_n;
1197           moments1_calculate (ws->dd_total[v]->mom, &grand_n, NULL, NULL, NULL, NULL);
1198           df = grand_n - pvw->n_groups;
1199
1200           if ( i == 0 )
1201             {
1202               tab_text (t,  1, (v * lines_per_variable) + i + 1,
1203                         TAB_LEFT | TAT_TITLE,
1204                         _("Assume equal variances"));
1205
1206               tab_text (t,  1, (v * lines_per_variable) + i + 1 + n_contrasts,
1207                         TAB_LEFT | TAT_TITLE,
1208                         _("Does not assume equal"));
1209             }
1210
1211           tab_text_format (t,  2, (v * lines_per_variable) + i + 1,
1212                            TAB_CENTER | TAT_TITLE, "%d", i + 1);
1213
1214
1215           tab_text_format (t,  2,
1216                            (v * lines_per_variable) + i + 1 + n_contrasts,
1217                            TAB_CENTER | TAT_TITLE, "%d", i + 1);
1218
1219           if (cn->bad_count)
1220             continue;
1221
1222           for (coeffi = ll_head (&cn->coefficient_list);
1223                coeffi != ll_null (&cn->coefficient_list);
1224                ++ci, coeffi = ll_next (coeffi))
1225             {
1226               double n, mean, variance;
1227               const struct descriptive_data *dd = categoricals_get_user_data_by_subscript (cats, ci);
1228
1229               moments1_calculate (dd->mom, &n, &mean, &variance, NULL, NULL);
1230
1231               struct coeff_node *cn = ll_data (coeffi, struct coeff_node, ll);
1232               const double coef = cn->coeff; 
1233
1234               const double winv = variance / n;
1235
1236               contrast_value += coef * mean;
1237
1238               coef_msq += (pow2 (coef)) / n;
1239
1240               sec_vneq += (pow2 (coef)) * variance / n;
1241
1242               df_numerator += (pow2 (coef)) * winv;
1243               df_denominator += pow2((pow2 (coef)) * winv) / (n - 1);
1244             }
1245
1246           sec_vneq = sqrt (sec_vneq);
1247
1248           df_numerator = pow2 (df_numerator);
1249
1250           tab_double (t,  3, (v * lines_per_variable) + i + 1,
1251                       TAB_RIGHT, contrast_value, NULL);
1252
1253           tab_double (t,  3, (v * lines_per_variable) + i + 1 +
1254                       n_contrasts,
1255                       TAB_RIGHT, contrast_value, NULL);
1256
1257           std_error_contrast = sqrt (pvw->mse * coef_msq);
1258
1259           /* Std. Error */
1260           tab_double (t,  4, (v * lines_per_variable) + i + 1,
1261                       TAB_RIGHT, std_error_contrast,
1262                       NULL);
1263
1264           T = fabs (contrast_value / std_error_contrast);
1265
1266           /* T Statistic */
1267
1268           tab_double (t,  5, (v * lines_per_variable) + i + 1,
1269                       TAB_RIGHT, T,
1270                       NULL);
1271
1272
1273           /* Degrees of Freedom */
1274           tab_fixed (t,  6, (v * lines_per_variable) + i + 1,
1275                      TAB_RIGHT,  df,
1276                      8, 0);
1277
1278
1279           /* Significance TWO TAILED !!*/
1280           tab_double (t,  7, (v * lines_per_variable) + i + 1,
1281                       TAB_RIGHT,  2 * gsl_cdf_tdist_Q (T, df),
1282                       NULL);
1283
1284           /* Now for the Variances NOT Equal case */
1285
1286           /* Std. Error */
1287           tab_double (t,  4,
1288                       (v * lines_per_variable) + i + 1 + n_contrasts,
1289                       TAB_RIGHT, sec_vneq,
1290                       NULL);
1291
1292           T = contrast_value / sec_vneq;
1293           tab_double (t,  5,
1294                       (v * lines_per_variable) + i + 1 + n_contrasts,
1295                       TAB_RIGHT, T,
1296                       NULL);
1297
1298           df = df_numerator / df_denominator;
1299
1300           tab_double (t,  6,
1301                       (v * lines_per_variable) + i + 1 + n_contrasts,
1302                       TAB_RIGHT, df,
1303                       NULL);
1304
1305           /* The Significance */
1306           tab_double (t, 7, (v * lines_per_variable) + i + 1 + n_contrasts,
1307                       TAB_RIGHT,  2 * gsl_cdf_tdist_Q (T,df),
1308                       NULL);
1309         }
1310
1311       if ( v > 0 )
1312         tab_hline (t, TAL_1, 0, n_cols - 1, (v * lines_per_variable) + 1);
1313     }
1314
1315   tab_submit (t);
1316 }
1317
1318