CROSSTABS: Add tests for Pearson's R, and update documentation.
[pspp] / src / language / stats / crosstabs.q
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 1997-9, 2000, 2006, 2009, 2010, 2011, 2012, 2013, 2014 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 /* FIXME:
18
19    - T values for Spearman's R and Pearson's R are wrong.
20    - How to calculate significance of symmetric and directional measures?
21    - Asymmetric ASEs and T values for lambda are wrong.
22    - ASE of Goodman and Kruskal's tau is not calculated.
23    - ASE of symmetric somers' d is wrong.
24    - Approx. T of uncertainty coefficient is wrong.
25
26 */
27
28 #include <config.h>
29
30 #include <ctype.h>
31 #include <float.h>
32 #include <gsl/gsl_cdf.h>
33 #include <stdlib.h>
34 #include <stdio.h>
35
36 #include "data/case.h"
37 #include "data/casegrouper.h"
38 #include "data/casereader.h"
39 #include "data/data-out.h"
40 #include "data/dataset.h"
41 #include "data/dictionary.h"
42 #include "data/format.h"
43 #include "data/value-labels.h"
44 #include "data/variable.h"
45 #include "language/command.h"
46 #include "language/dictionary/split-file.h"
47 #include "language/lexer/lexer.h"
48 #include "language/lexer/variable-parser.h"
49 #include "libpspp/array.h"
50 #include "libpspp/assertion.h"
51 #include "libpspp/compiler.h"
52 #include "libpspp/hash-functions.h"
53 #include "libpspp/hmap.h"
54 #include "libpspp/hmapx.h"
55 #include "libpspp/message.h"
56 #include "libpspp/misc.h"
57 #include "libpspp/pool.h"
58 #include "libpspp/str.h"
59 #include "output/tab.h"
60
61 #include "gl/minmax.h"
62 #include "gl/xalloc.h"
63 #include "gl/xsize.h"
64
65 #include "gettext.h"
66 #define _(msgid) gettext (msgid)
67 #define N_(msgid) msgid
68
69 /* (headers) */
70
71 /* (specification)
72    crosstabs (crs_):
73      *^tables=custom;
74      +variables=custom;
75      missing=miss:!table/include/report;
76      +write[wr_]=none,cells,all;
77      +format=val:!avalue/dvalue,
78              indx:!noindex/index,
79              tabl:!tables/notables,
80              box:!box/nobox,
81              pivot:!pivot/nopivot;
82      +cells[cl_]=count,expected,row,column,total,residual,sresidual,
83                  asresidual,all,none;
84      +statistics[st_]=chisq,phi,cc,lambda,uc,none,btau,ctau,risk,gamma,d,
85                       kappa,eta,corr,all.
86 */
87 /* (declarations) */
88 /* (functions) */
89
90 /* Number of chi-square statistics. */
91 #define N_CHISQ 5
92
93 /* Number of symmetric statistics. */
94 #define N_SYMMETRIC 9
95
96 /* Number of directional statistics. */
97 #define N_DIRECTIONAL 13
98
99 /* A single table entry for general mode. */
100 struct table_entry
101   {
102     struct hmap_node node;      /* Entry in hash table. */
103     double freq;                /* Frequency count. */
104     union value values[1];      /* Values. */
105   };
106
107 static size_t
108 table_entry_size (size_t n_values)
109 {
110   return (offsetof (struct table_entry, values)
111           + n_values * sizeof (union value));
112 }
113
114 /* Indexes into the 'vars' member of struct pivot_table and
115    struct crosstab member. */
116 enum
117   {
118     ROW_VAR = 0,                /* Row variable. */
119     COL_VAR = 1                 /* Column variable. */
120     /* Higher indexes cause multiple tables to be output. */
121   };
122
123 /* A crosstabulation of 2 or more variables. */
124 struct pivot_table
125   {
126     struct crosstabs_proc *proc;
127     struct fmt_spec weight_format; /* Format for weight variable. */
128     double missing;             /* Weight of missing cases. */
129
130     /* Variables (2 or more). */
131     int n_vars;
132     const struct variable **vars;
133
134     /* Constants (0 or more). */
135     int n_consts;
136     const struct variable **const_vars;
137     union value *const_values;
138
139     /* Data. */
140     struct hmap data;
141     struct table_entry **entries;
142     size_t n_entries;
143
144     /* Column values, number of columns. */
145     union value *cols;
146     int n_cols;
147
148     /* Row values, number of rows. */
149     union value *rows;
150     int n_rows;
151
152     /* Number of statistically interesting columns/rows
153        (columns/rows with data in them). */
154     int ns_cols, ns_rows;
155
156     /* Matrix contents. */
157     double *mat;                /* Matrix proper. */
158     double *row_tot;            /* Row totals. */
159     double *col_tot;            /* Column totals. */
160     double total;               /* Grand total. */
161   };
162
163 /* Integer mode variable info. */
164 struct var_range
165   {
166     struct hmap_node hmap_node; /* In struct crosstabs_proc var_ranges map. */
167     const struct variable *var; /* The variable. */
168     int min;                    /* Minimum value. */
169     int max;                    /* Maximum value + 1. */
170     int count;                  /* max - min. */
171   };
172
173 struct crosstabs_proc
174   {
175     const struct dictionary *dict;
176     enum { INTEGER, GENERAL } mode;
177     enum mv_class exclude;
178     bool pivot;
179     bool bad_warn;
180     struct fmt_spec weight_format;
181
182     /* Variables specifies on VARIABLES. */
183     const struct variable **variables;
184     size_t n_variables;
185     struct hmap var_ranges;
186
187     /* TABLES. */
188     struct pivot_table *pivots;
189     int n_pivots;
190
191     /* CELLS. */
192     int n_cells;                /* Number of cells requested. */
193     unsigned int cells;         /* Bit k is 1 if cell k is requested. */
194     int a_cells[CRS_CL_count];  /* 0...n_cells-1 are the requested cells. */
195
196     /* STATISTICS. */
197     unsigned int statistics;    /* Bit k is 1 if statistic k is requested. */
198
199     bool descending;            /* True if descending sort order is requested. */
200   };
201
202 const struct var_range *get_var_range (const struct crosstabs_proc *,
203                                        const struct variable *);
204
205 static bool should_tabulate_case (const struct pivot_table *,
206                                   const struct ccase *, enum mv_class exclude);
207 static void tabulate_general_case (struct pivot_table *, const struct ccase *,
208                                    double weight);
209 static void tabulate_integer_case (struct pivot_table *, const struct ccase *,
210                                    double weight);
211 static void postcalc (struct crosstabs_proc *);
212 static void submit (struct pivot_table *, struct tab_table *);
213
214 /* Parses and executes the CROSSTABS procedure. */
215 int
216 cmd_crosstabs (struct lexer *lexer, struct dataset *ds)
217 {
218   const struct variable *wv = dict_get_weight (dataset_dict (ds));
219   struct var_range *range, *next_range;
220   struct crosstabs_proc proc;
221   struct casegrouper *grouper;
222   struct casereader *input, *group;
223   struct cmd_crosstabs cmd;
224   struct pivot_table *pt;
225   int result;
226   bool ok;
227   int i;
228
229   proc.dict = dataset_dict (ds);
230   proc.bad_warn = true;
231   proc.variables = NULL;
232   proc.n_variables = 0;
233   hmap_init (&proc.var_ranges);
234   proc.pivots = NULL;
235   proc.n_pivots = 0;
236   proc.descending = false;
237   proc.weight_format = wv ? *var_get_print_format (wv) : F_8_0;
238
239   if (!parse_crosstabs (lexer, ds, &cmd, &proc))
240     {
241       result = CMD_FAILURE;
242       goto exit;
243     }
244
245   proc.mode = proc.n_variables ? INTEGER : GENERAL;
246
247
248   proc.descending = cmd.val == CRS_DVALUE;
249
250   /* CELLS. */
251   if (!cmd.sbc_cells)
252     proc.cells = 1u << CRS_CL_COUNT;
253   else if (cmd.a_cells[CRS_CL_ALL])
254     proc.cells = UINT_MAX;
255   else
256     {
257       proc.cells = 0;
258       for (i = 0; i < CRS_CL_count; i++)
259         if (cmd.a_cells[i])
260           proc.cells |= 1u << i;
261       if (proc.cells == 0)
262         proc.cells = ((1u << CRS_CL_COUNT)
263                        | (1u << CRS_CL_ROW)
264                        | (1u << CRS_CL_COLUMN)
265                        | (1u << CRS_CL_TOTAL));
266     }
267   proc.cells &= ((1u << CRS_CL_count) - 1);
268   proc.cells &= ~((1u << CRS_CL_NONE) | (1u << CRS_CL_ALL));
269   proc.n_cells = 0;
270   for (i = 0; i < CRS_CL_count; i++)
271     if (proc.cells & (1u << i))
272       proc.a_cells[proc.n_cells++] = i;
273
274   /* STATISTICS. */
275   if (cmd.a_statistics[CRS_ST_ALL])
276     proc.statistics = UINT_MAX;
277   else if (cmd.sbc_statistics)
278     {
279       int i;
280
281       proc.statistics = 0;
282       for (i = 0; i < CRS_ST_count; i++)
283         if (cmd.a_statistics[i])
284           proc.statistics |= 1u << i;
285       if (proc.statistics == 0)
286         proc.statistics |= 1u << CRS_ST_CHISQ;
287     }
288   else
289     proc.statistics = 0;
290
291   /* MISSING. */
292   proc.exclude = (cmd.miss == CRS_TABLE ? MV_ANY
293                    : cmd.miss == CRS_INCLUDE ? MV_SYSTEM
294                    : MV_NEVER);
295   if (proc.mode == GENERAL && proc.exclude == MV_NEVER)
296     {
297       msg (SE, _("Missing mode %s not allowed in general mode.  "
298                  "Assuming %s."), "REPORT", "MISSING=TABLE");
299       proc.exclude = MV_ANY;
300     }
301
302   /* PIVOT. */
303   proc.pivot = cmd.pivot == CRS_PIVOT;
304
305   input = casereader_create_filter_weight (proc_open (ds), dataset_dict (ds),
306                                            NULL, NULL);
307   grouper = casegrouper_create_splits (input, dataset_dict (ds));
308   while (casegrouper_get_next_group (grouper, &group))
309     {
310       struct ccase *c;
311
312       /* Output SPLIT FILE variables. */
313       c = casereader_peek (group, 0);
314       if (c != NULL)
315         {
316           output_split_file_values (ds, c);
317           case_unref (c);
318         }
319
320       /* Initialize hash tables. */
321       for (pt = &proc.pivots[0]; pt < &proc.pivots[proc.n_pivots]; pt++)
322         hmap_init (&pt->data);
323
324       /* Tabulate. */
325       for (; (c = casereader_read (group)) != NULL; case_unref (c))
326         for (pt = &proc.pivots[0]; pt < &proc.pivots[proc.n_pivots]; pt++)
327           {
328             double weight = dict_get_case_weight (dataset_dict (ds), c,
329                                                   &proc.bad_warn);
330             if (should_tabulate_case (pt, c, proc.exclude))
331               {
332                 if (proc.mode == GENERAL)
333                   tabulate_general_case (pt, c, weight);
334                 else
335                   tabulate_integer_case (pt, c, weight);
336               }
337             else
338               pt->missing += weight;
339           }
340       casereader_destroy (group);
341
342       /* Output. */
343       postcalc (&proc);
344     }
345   ok = casegrouper_destroy (grouper);
346   ok = proc_commit (ds) && ok;
347
348   result = ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;
349
350 exit:
351   free (proc.variables);
352   HMAP_FOR_EACH_SAFE (range, next_range, struct var_range, hmap_node,
353                       &proc.var_ranges)
354     {
355       hmap_delete (&proc.var_ranges, &range->hmap_node);
356       free (range);
357     }
358   for (pt = &proc.pivots[0]; pt < &proc.pivots[proc.n_pivots]; pt++)
359     {
360       free (pt->vars);
361       free (pt->const_vars);
362       /* We must not call value_destroy on const_values because
363          it is a wild pointer; it never pointed to anything owned
364          by the pivot_table.
365
366          The rest of the data was allocated and destroyed at a
367          lower level already. */
368     }
369   free (proc.pivots);
370
371   return result;
372 }
373
374 /* Parses the TABLES subcommand. */
375 static int
376 crs_custom_tables (struct lexer *lexer, struct dataset *ds,
377                    struct cmd_crosstabs *cmd UNUSED, void *proc_)
378 {
379   struct crosstabs_proc *proc = proc_;
380   struct const_var_set *var_set;
381   int n_by;
382   const struct variable ***by = NULL;
383   int *by_iter;
384   size_t *by_nvar = NULL;
385   size_t nx = 1;
386   bool ok = false;
387   int i;
388
389   /* Ensure that this is a TABLES subcommand. */
390   if (!lex_match_id (lexer, "TABLES")
391       && (lex_token (lexer) != T_ID ||
392           dict_lookup_var (dataset_dict (ds), lex_tokcstr (lexer)) == NULL)
393       && lex_token (lexer) != T_ALL)
394     return 2;
395   lex_match (lexer, T_EQUALS);
396
397   if (proc->variables != NULL)
398     var_set = const_var_set_create_from_array (proc->variables,
399                                                proc->n_variables);
400   else
401     var_set = const_var_set_create_from_dict (dataset_dict (ds));
402   assert (var_set != NULL);
403
404   for (n_by = 0; ;)
405     {
406       by = xnrealloc (by, n_by + 1, sizeof *by);
407       by_nvar = xnrealloc (by_nvar, n_by + 1, sizeof *by_nvar);
408       if (!parse_const_var_set_vars (lexer, var_set, &by[n_by], &by_nvar[n_by],
409                                      PV_NO_DUPLICATE | PV_NO_SCRATCH))
410         goto done;
411       if (xalloc_oversized (nx, by_nvar[n_by]))
412         {
413           msg (SE, _("Too many cross-tabulation variables or dimensions."));
414           goto done;
415         }
416       nx *= by_nvar[n_by];
417       n_by++;
418
419       if (!lex_match (lexer, T_BY))
420         {
421           if (n_by < 2)
422             {
423               lex_force_match (lexer, T_BY);
424               goto done;
425             }
426           else
427             break;
428         }
429     }
430
431   by_iter = xcalloc (n_by, sizeof *by_iter);
432   proc->pivots = xnrealloc (proc->pivots,
433                             proc->n_pivots + nx, sizeof *proc->pivots);
434   for (i = 0; i < nx; i++)
435     {
436       struct pivot_table *pt = &proc->pivots[proc->n_pivots++];
437       int j;
438
439       pt->proc = proc;
440       pt->weight_format = proc->weight_format;
441       pt->missing = 0.;
442       pt->n_vars = n_by;
443       pt->vars = xmalloc (n_by * sizeof *pt->vars);
444       pt->n_consts = 0;
445       pt->const_vars = NULL;
446       pt->const_values = NULL;
447
448       for (j = 0; j < n_by; j++)
449         pt->vars[j] = by[j][by_iter[j]];
450
451       for (j = n_by - 1; j >= 0; j--)
452         {
453           if (++by_iter[j] < by_nvar[j])
454             break;
455           by_iter[j] = 0;
456         }
457     }
458   free (by_iter);
459   ok = true;
460
461 done:
462   /* All return paths lead here. */
463   for (i = 0; i < n_by; i++)
464     free (by[i]);
465   free (by);
466   free (by_nvar);
467
468   const_var_set_destroy (var_set);
469
470   return ok;
471 }
472
473 /* Parses the VARIABLES subcommand. */
474 static int
475 crs_custom_variables (struct lexer *lexer, struct dataset *ds,
476                       struct cmd_crosstabs *cmd UNUSED, void *proc_)
477 {
478   struct crosstabs_proc *proc = proc_;
479   if (proc->n_pivots)
480     {
481       msg (SE, _("%s must be specified before %s."), "VARIABLES", "TABLES");
482       return 0;
483     }
484
485   lex_match (lexer, T_EQUALS);
486
487   for (;;)
488     {
489       size_t orig_nv = proc->n_variables;
490       size_t i;
491
492       long min, max;
493
494       if (!parse_variables_const (lexer, dataset_dict (ds),
495                                   &proc->variables, &proc->n_variables,
496                                   (PV_APPEND | PV_NUMERIC
497                                    | PV_NO_DUPLICATE | PV_NO_SCRATCH)))
498         return 0;
499
500       if (!lex_force_match (lexer, T_LPAREN))
501           goto lossage;
502
503       if (!lex_force_int (lexer))
504         goto lossage;
505       min = lex_integer (lexer);
506       lex_get (lexer);
507
508       lex_match (lexer, T_COMMA);
509
510       if (!lex_force_int (lexer))
511         goto lossage;
512       max = lex_integer (lexer);
513       if (max < min)
514         {
515           msg (SE, _("Maximum value (%ld) less than minimum value (%ld)."),
516                max, min);
517           goto lossage;
518         }
519       lex_get (lexer);
520
521       if (!lex_force_match (lexer, T_RPAREN))
522         goto lossage;
523
524       for (i = orig_nv; i < proc->n_variables; i++)
525         {
526           const struct variable *var = proc->variables[i];
527           struct var_range *vr = xmalloc (sizeof *vr);
528
529           vr->var = var;
530           vr->min = min;
531           vr->max = max + 1.;
532           vr->count = max - min + 1;
533           hmap_insert (&proc->var_ranges, &vr->hmap_node,
534                        hash_pointer (var, 0));
535         }
536
537       if (lex_token (lexer) == T_SLASH)
538         break;
539     }
540
541   return 1;
542
543  lossage:
544   free (proc->variables);
545   proc->variables = NULL;
546   proc->n_variables = 0;
547   return 0;
548 }
549 \f
550 /* Data file processing. */
551
552 const struct var_range *
553 get_var_range (const struct crosstabs_proc *proc, const struct variable *var)
554 {
555   if (!hmap_is_empty (&proc->var_ranges))
556     {
557       const struct var_range *range;
558
559       HMAP_FOR_EACH_IN_BUCKET (range, struct var_range, hmap_node,
560                                hash_pointer (var, 0), &proc->var_ranges)
561         if (range->var == var)
562           return range;
563     }
564
565   return NULL;
566 }
567
568 static bool
569 should_tabulate_case (const struct pivot_table *pt, const struct ccase *c,
570                       enum mv_class exclude)
571 {
572   int j;
573   for (j = 0; j < pt->n_vars; j++)
574     {
575       const struct variable *var = pt->vars[j];
576       const struct var_range *range = get_var_range (pt->proc, var);
577
578       if (var_is_value_missing (var, case_data (c, var), exclude))
579         return false;
580
581       if (range != NULL)
582         {
583           double num = case_num (c, var);
584           if (num < range->min || num > range->max)
585             return false;
586         }
587     }
588   return true;
589 }
590
591 static void
592 tabulate_integer_case (struct pivot_table *pt, const struct ccase *c,
593                        double weight)
594 {
595   struct table_entry *te;
596   size_t hash;
597   int j;
598
599   hash = 0;
600   for (j = 0; j < pt->n_vars; j++)
601     {
602       /* Throw away fractional parts of values. */
603       hash = hash_int (case_num (c, pt->vars[j]), hash);
604     }
605
606   HMAP_FOR_EACH_WITH_HASH (te, struct table_entry, node, hash, &pt->data)
607     {
608       for (j = 0; j < pt->n_vars; j++)
609         if ((int) case_num (c, pt->vars[j]) != (int) te->values[j].f)
610           goto no_match;
611
612       /* Found an existing entry. */
613       te->freq += weight;
614       return;
615
616     no_match: ;
617     }
618
619   /* No existing entry.  Create a new one. */
620   te = xmalloc (table_entry_size (pt->n_vars));
621   te->freq = weight;
622   for (j = 0; j < pt->n_vars; j++)
623     te->values[j].f = (int) case_num (c, pt->vars[j]);
624   hmap_insert (&pt->data, &te->node, hash);
625 }
626
627 static void
628 tabulate_general_case (struct pivot_table *pt, const struct ccase *c,
629                        double weight)
630 {
631   struct table_entry *te;
632   size_t hash;
633   int j;
634
635   hash = 0;
636   for (j = 0; j < pt->n_vars; j++)
637     {
638       const struct variable *var = pt->vars[j];
639       hash = value_hash (case_data (c, var), var_get_width (var), hash);
640     }
641
642   HMAP_FOR_EACH_WITH_HASH (te, struct table_entry, node, hash, &pt->data)
643     {
644       for (j = 0; j < pt->n_vars; j++)
645         {
646           const struct variable *var = pt->vars[j];
647           if (!value_equal (case_data (c, var), &te->values[j],
648                             var_get_width (var)))
649             goto no_match;
650         }
651
652       /* Found an existing entry. */
653       te->freq += weight;
654       return;
655
656     no_match: ;
657     }
658
659   /* No existing entry.  Create a new one. */
660   te = xmalloc (table_entry_size (pt->n_vars));
661   te->freq = weight;
662   for (j = 0; j < pt->n_vars; j++)
663     {
664       const struct variable *var = pt->vars[j];
665       value_clone (&te->values[j], case_data (c, var), var_get_width (var));
666     }
667   hmap_insert (&pt->data, &te->node, hash);
668 }
669 \f
670 /* Post-data reading calculations. */
671
672 static int compare_table_entry_vars_3way (const struct table_entry *a,
673                                           const struct table_entry *b,
674                                           const struct pivot_table *pt,
675                                           int idx0, int idx1);
676 static int compare_table_entry_3way (const void *ap_, const void *bp_,
677                                      const void *pt_);
678 static int compare_table_entry_3way_inv (const void *ap_, const void *bp_,
679                                      const void *pt_);
680
681 static void enum_var_values (const struct pivot_table *, int var_idx,
682                              union value **valuesp, int *n_values, bool descending);
683 static void output_pivot_table (struct crosstabs_proc *,
684                                 struct pivot_table *);
685 static void make_pivot_table_subset (struct pivot_table *pt,
686                                      size_t row0, size_t row1,
687                                      struct pivot_table *subset);
688 static void make_summary_table (struct crosstabs_proc *);
689 static bool find_crosstab (struct pivot_table *, size_t *row0p, size_t *row1p);
690
691 static void
692 postcalc (struct crosstabs_proc *proc)
693 {
694   struct pivot_table *pt;
695
696   /* Convert hash tables into sorted arrays of entries. */
697   for (pt = &proc->pivots[0]; pt < &proc->pivots[proc->n_pivots]; pt++)
698     {
699       struct table_entry *e;
700       size_t i;
701
702       pt->n_entries = hmap_count (&pt->data);
703       pt->entries = xnmalloc (pt->n_entries, sizeof *pt->entries);
704       i = 0;
705       HMAP_FOR_EACH (e, struct table_entry, node, &pt->data)
706         pt->entries[i++] = e;
707       hmap_destroy (&pt->data);
708
709       sort (pt->entries, pt->n_entries, sizeof *pt->entries,
710             proc->descending ? compare_table_entry_3way_inv : compare_table_entry_3way,
711             pt);
712     }
713
714   make_summary_table (proc);
715
716   /* Output each pivot table. */
717   for (pt = &proc->pivots[0]; pt < &proc->pivots[proc->n_pivots]; pt++)
718     {
719       if (proc->pivot || pt->n_vars == 2)
720         output_pivot_table (proc, pt);
721       else
722         {
723           size_t row0 = 0, row1 = 0;
724           while (find_crosstab (pt, &row0, &row1))
725             {
726               struct pivot_table subset;
727               make_pivot_table_subset (pt, row0, row1, &subset);
728               output_pivot_table (proc, &subset);
729             }
730         }
731     }
732
733   /* Free output and prepare for next split file. */
734   for (pt = &proc->pivots[0]; pt < &proc->pivots[proc->n_pivots]; pt++)
735     {
736       size_t i;
737
738       pt->missing = 0.0;
739
740       /* Free the members that were allocated in this function(and the values
741          owned by the entries.
742
743          The other pointer members are either both allocated and destroyed at a
744          lower level (in output_pivot_table), or both allocated and destroyed
745          at a higher level (in crs_custom_tables and free_proc,
746          respectively). */
747       for (i = 0; i < pt->n_vars; i++)
748         {
749           int width = var_get_width (pt->vars[i]);
750           if (value_needs_init (width))
751             {
752               size_t j;
753
754               for (j = 0; j < pt->n_entries; j++)
755                 value_destroy (&pt->entries[j]->values[i], width);
756             }
757         }
758
759       for (i = 0; i < pt->n_entries; i++)
760         free (pt->entries[i]);
761       free (pt->entries);
762     }
763 }
764
765 static void
766 make_pivot_table_subset (struct pivot_table *pt, size_t row0, size_t row1,
767                          struct pivot_table *subset)
768 {
769   *subset = *pt;
770   if (pt->n_vars > 2)
771     {
772       assert (pt->n_consts == 0);
773       subset->missing = pt->missing;
774       subset->n_vars = 2;
775       subset->vars = pt->vars;
776       subset->n_consts = pt->n_vars - 2;
777       subset->const_vars = pt->vars + 2;
778       subset->const_values = &pt->entries[row0]->values[2];
779     }
780   subset->entries = &pt->entries[row0];
781   subset->n_entries = row1 - row0;
782 }
783
784 static int
785 compare_table_entry_var_3way (const struct table_entry *a,
786                               const struct table_entry *b,
787                               const struct pivot_table *pt,
788                               int idx)
789 {
790   return value_compare_3way (&a->values[idx], &b->values[idx],
791                              var_get_width (pt->vars[idx]));
792 }
793
794 static int
795 compare_table_entry_vars_3way (const struct table_entry *a,
796                                const struct table_entry *b,
797                                const struct pivot_table *pt,
798                                int idx0, int idx1)
799 {
800   int i;
801
802   for (i = idx1 - 1; i >= idx0; i--)
803     {
804       int cmp = compare_table_entry_var_3way (a, b, pt, i);
805       if (cmp != 0)
806         return cmp;
807     }
808   return 0;
809 }
810
811 /* Compare the struct table_entry at *AP to the one at *BP and
812    return a strcmp()-type result. */
813 static int
814 compare_table_entry_3way (const void *ap_, const void *bp_, const void *pt_)
815 {
816   const struct table_entry *const *ap = ap_;
817   const struct table_entry *const *bp = bp_;
818   const struct table_entry *a = *ap;
819   const struct table_entry *b = *bp;
820   const struct pivot_table *pt = pt_;
821   int cmp;
822
823   cmp = compare_table_entry_vars_3way (a, b, pt, 2, pt->n_vars);
824   if (cmp != 0)
825     return cmp;
826
827   cmp = compare_table_entry_var_3way (a, b, pt, ROW_VAR);
828   if (cmp != 0)
829     return cmp;
830
831   return compare_table_entry_var_3way (a, b, pt, COL_VAR);
832 }
833
834 /* Inverted version of compare_table_entry_3way */
835 static int
836 compare_table_entry_3way_inv (const void *ap_, const void *bp_, const void *pt_)
837 {
838   return -compare_table_entry_3way (ap_, bp_, pt_);
839 }
840
841 static int
842 find_first_difference (const struct pivot_table *pt, size_t row)
843 {
844   if (row == 0)
845     return pt->n_vars - 1;
846   else
847     {
848       const struct table_entry *a = pt->entries[row];
849       const struct table_entry *b = pt->entries[row - 1];
850       int col;
851
852       for (col = pt->n_vars - 1; col >= 0; col--)
853         if (compare_table_entry_var_3way (a, b, pt, col))
854           return col;
855       NOT_REACHED ();
856     }
857 }
858
859 /* Output a table summarizing the cases processed. */
860 static void
861 make_summary_table (struct crosstabs_proc *proc)
862 {
863   struct tab_table *summary;
864   struct pivot_table *pt;
865   struct string name;
866   int i;
867
868   summary = tab_create (7, 3 + proc->n_pivots);
869   tab_set_format (summary, RC_WEIGHT, &proc->weight_format);
870   tab_title (summary, _("Summary."));
871   tab_headers (summary, 1, 0, 3, 0);
872   tab_joint_text (summary, 1, 0, 6, 0, TAB_CENTER, _("Cases"));
873   tab_joint_text (summary, 1, 1, 2, 1, TAB_CENTER, _("Valid"));
874   tab_joint_text (summary, 3, 1, 4, 1, TAB_CENTER, _("Missing"));
875   tab_joint_text (summary, 5, 1, 6, 1, TAB_CENTER, _("Total"));
876   tab_hline (summary, TAL_1, 1, 6, 1);
877   tab_hline (summary, TAL_1, 1, 6, 2);
878   tab_vline (summary, TAL_1, 3, 1, 1);
879   tab_vline (summary, TAL_1, 5, 1, 1);
880   for (i = 0; i < 3; i++)
881     {
882       tab_text (summary, 1 + i * 2, 2, TAB_RIGHT, _("N"));
883       tab_text (summary, 2 + i * 2, 2, TAB_RIGHT, _("Percent"));
884     }
885   tab_offset (summary, 0, 3);
886
887   ds_init_empty (&name);
888   for (pt = &proc->pivots[0]; pt < &proc->pivots[proc->n_pivots]; pt++)
889     {
890       double valid;
891       double n[3];
892       size_t i;
893
894       tab_hline (summary, TAL_1, 0, 6, 0);
895
896       ds_clear (&name);
897       for (i = 0; i < pt->n_vars; i++)
898         {
899           if (i > 0)
900             ds_put_cstr (&name, " * ");
901           ds_put_cstr (&name, var_to_string (pt->vars[i]));
902         }
903       tab_text (summary, 0, 0, TAB_LEFT, ds_cstr (&name));
904
905       valid = 0.;
906       for (i = 0; i < pt->n_entries; i++)
907         valid += pt->entries[i]->freq;
908
909       n[0] = valid;
910       n[1] = pt->missing;
911       n[2] = n[0] + n[1];
912       for (i = 0; i < 3; i++)
913         {
914           tab_double (summary, i * 2 + 1, 0, TAB_RIGHT, n[i], NULL, RC_WEIGHT);
915           tab_text_format (summary, i * 2 + 2, 0, TAB_RIGHT, "%.1f%%",
916                            n[i] / n[2] * 100.);
917         }
918
919       tab_next_row (summary);
920     }
921   ds_destroy (&name);
922
923   submit (NULL, summary);
924 }
925 \f
926 /* Output. */
927
928 static struct tab_table *create_crosstab_table (struct crosstabs_proc *,
929                                                 struct pivot_table *);
930 static struct tab_table *create_chisq_table (struct crosstabs_proc *proc, struct pivot_table *);
931 static struct tab_table *create_sym_table (struct crosstabs_proc *proc, struct pivot_table *);
932 static struct tab_table *create_risk_table (struct crosstabs_proc *proc, struct pivot_table *);
933 static struct tab_table *create_direct_table (struct crosstabs_proc *proc, struct pivot_table *);
934 static void display_dimensions (struct crosstabs_proc *, struct pivot_table *,
935                                 struct tab_table *, int first_difference);
936 static void display_crosstabulation (struct crosstabs_proc *,
937                                      struct pivot_table *,
938                                      struct tab_table *);
939 static void display_chisq (struct pivot_table *, struct tab_table *,
940                            bool *showed_fisher);
941 static void display_symmetric (struct crosstabs_proc *, struct pivot_table *,
942                                struct tab_table *);
943 static void display_risk (struct pivot_table *, struct tab_table *);
944 static void display_directional (struct crosstabs_proc *, struct pivot_table *,
945                                  struct tab_table *);
946 static void table_value_missing (struct crosstabs_proc *proc,
947                                  struct tab_table *table, int c, int r,
948                                  unsigned char opt, const union value *v,
949                                  const struct variable *var);
950 static void delete_missing (struct pivot_table *);
951 static void build_matrix (struct pivot_table *);
952
953 /* Output pivot table PT in the context of PROC. */
954 static void
955 output_pivot_table (struct crosstabs_proc *proc, struct pivot_table *pt)
956 {
957   struct tab_table *table = NULL; /* Crosstabulation table. */
958   struct tab_table *chisq = NULL; /* Chi-square table. */
959   bool showed_fisher = false;
960   struct tab_table *sym = NULL;   /* Symmetric measures table. */
961   struct tab_table *risk = NULL;  /* Risk estimate table. */
962   struct tab_table *direct = NULL; /* Directional measures table. */
963   size_t row0, row1;
964
965   enum_var_values (pt, COL_VAR, &pt->cols, &pt->n_cols, proc->descending);
966
967   if (pt->n_cols == 0)
968     {
969       struct string vars;
970       int i;
971
972       ds_init_cstr (&vars, var_to_string (pt->vars[0]));
973       for (i = 1; i < pt->n_vars; i++)
974         ds_put_format (&vars, " * %s", var_to_string (pt->vars[i]));
975
976       /* TRANSLATORS: The %s here describes a crosstabulation.  It takes the
977          form "var1 * var2 * var3 * ...".  */
978       msg (SW, _("Crosstabulation %s contained no non-missing cases."),
979            ds_cstr (&vars));
980
981       ds_destroy (&vars);
982       free (pt->cols);
983       return;
984     }
985
986   if (proc->cells)
987     table = create_crosstab_table (proc, pt);
988   if (proc->statistics & (1u << CRS_ST_CHISQ))
989     chisq = create_chisq_table (proc, pt);
990   if (proc->statistics & ((1u << CRS_ST_PHI) | (1u << CRS_ST_CC)
991                           | (1u << CRS_ST_BTAU) | (1u << CRS_ST_CTAU)
992                           | (1u << CRS_ST_GAMMA) | (1u << CRS_ST_CORR)
993                           | (1u << CRS_ST_KAPPA)))
994     sym = create_sym_table (proc, pt);
995   if (proc->statistics & (1u << CRS_ST_RISK))
996     risk = create_risk_table (proc, pt);
997   if (proc->statistics & ((1u << CRS_ST_LAMBDA) | (1u << CRS_ST_UC)
998                           | (1u << CRS_ST_D) | (1u << CRS_ST_ETA)))
999     direct = create_direct_table (proc, pt);
1000
1001   row0 = row1 = 0;
1002   while (find_crosstab (pt, &row0, &row1))
1003     {
1004       struct pivot_table x;
1005       int first_difference;
1006
1007       make_pivot_table_subset (pt, row0, row1, &x);
1008
1009       /* Find all the row variable values. */
1010       enum_var_values (&x, ROW_VAR, &x.rows, &x.n_rows, proc->descending);
1011
1012       if (size_overflow_p (xtimes (xtimes (x.n_rows, x.n_cols),
1013                                    sizeof (double))))
1014         xalloc_die ();
1015       x.row_tot = xmalloc (x.n_rows * sizeof *x.row_tot);
1016       x.col_tot = xmalloc (x.n_cols * sizeof *x.col_tot);
1017       x.mat = xmalloc (x.n_rows * x.n_cols * sizeof *x.mat);
1018
1019       /* Allocate table space for the matrix. */
1020       if (table
1021           && tab_row (table) + (x.n_rows + 1) * proc->n_cells > tab_nr (table))
1022         tab_realloc (table, -1,
1023                      MAX (tab_nr (table) + (x.n_rows + 1) * proc->n_cells,
1024                           tab_nr (table) * pt->n_entries / x.n_entries));
1025
1026       build_matrix (&x);
1027
1028       /* Find the first variable that differs from the last subtable. */
1029       first_difference = find_first_difference (pt, row0);
1030       if (table)
1031         {
1032           display_dimensions (proc, &x, table, first_difference);
1033           display_crosstabulation (proc, &x, table);
1034         }
1035
1036       if (proc->exclude == MV_NEVER)
1037         delete_missing (&x);
1038
1039       if (chisq)
1040         {
1041           display_dimensions (proc, &x, chisq, first_difference);
1042           display_chisq (&x, chisq, &showed_fisher);
1043         }
1044       if (sym)
1045         {
1046           display_dimensions (proc, &x, sym, first_difference);
1047           display_symmetric (proc, &x, sym);
1048         }
1049       if (risk)
1050         {
1051           display_dimensions (proc, &x, risk, first_difference);
1052           display_risk (&x, risk);
1053         }
1054       if (direct)
1055         {
1056           display_dimensions (proc, &x, direct, first_difference);
1057           display_directional (proc, &x, direct);
1058         }
1059
1060       /* Free the parts of x that are not owned by pt.  In
1061          particular we must not free x.cols, which is the same as
1062          pt->cols, which is freed at the end of this function. */
1063       free (x.rows);
1064
1065       free (x.mat);
1066       free (x.row_tot);
1067       free (x.col_tot);
1068     }
1069
1070   submit (NULL, table);
1071
1072   if (chisq)
1073     {
1074       if (!showed_fisher)
1075         tab_resize (chisq, 4 + (pt->n_vars - 2), -1);
1076       submit (pt, chisq);
1077     }
1078
1079   submit (pt, sym);
1080   submit (pt, risk);
1081   submit (pt, direct);
1082
1083   free (pt->cols);
1084 }
1085
1086 static void
1087 build_matrix (struct pivot_table *x)
1088 {
1089   const int col_var_width = var_get_width (x->vars[COL_VAR]);
1090   const int row_var_width = var_get_width (x->vars[ROW_VAR]);
1091   int col, row;
1092   double *mp;
1093   struct table_entry **p;
1094
1095   mp = x->mat;
1096   col = row = 0;
1097   for (p = x->entries; p < &x->entries[x->n_entries]; p++)
1098     {
1099       const struct table_entry *te = *p;
1100
1101       while (!value_equal (&x->rows[row], &te->values[ROW_VAR], row_var_width))
1102         {
1103           for (; col < x->n_cols; col++)
1104             *mp++ = 0.0;
1105           col = 0;
1106           row++;
1107         }
1108
1109       while (!value_equal (&x->cols[col], &te->values[COL_VAR], col_var_width))
1110         {
1111           *mp++ = 0.0;
1112           col++;
1113         }
1114
1115       *mp++ = te->freq;
1116       if (++col >= x->n_cols)
1117         {
1118           col = 0;
1119           row++;
1120         }
1121     }
1122   while (mp < &x->mat[x->n_cols * x->n_rows])
1123     *mp++ = 0.0;
1124   assert (mp == &x->mat[x->n_cols * x->n_rows]);
1125
1126   /* Column totals, row totals, ns_rows. */
1127   mp = x->mat;
1128   for (col = 0; col < x->n_cols; col++)
1129     x->col_tot[col] = 0.0;
1130   for (row = 0; row < x->n_rows; row++)
1131     x->row_tot[row] = 0.0;
1132   x->ns_rows = 0;
1133   for (row = 0; row < x->n_rows; row++)
1134     {
1135       bool row_is_empty = true;
1136       for (col = 0; col < x->n_cols; col++)
1137         {
1138           if (*mp != 0.0)
1139             {
1140               row_is_empty = false;
1141               x->col_tot[col] += *mp;
1142               x->row_tot[row] += *mp;
1143             }
1144           mp++;
1145         }
1146       if (!row_is_empty)
1147         x->ns_rows++;
1148     }
1149   assert (mp == &x->mat[x->n_cols * x->n_rows]);
1150
1151   /* ns_cols. */
1152   x->ns_cols = 0;
1153   for (col = 0; col < x->n_cols; col++)
1154     for (row = 0; row < x->n_rows; row++)
1155       if (x->mat[col + row * x->n_cols] != 0.0)
1156         {
1157           x->ns_cols++;
1158           break;
1159         }
1160
1161   /* Grand total. */
1162   x->total = 0.0;
1163   for (col = 0; col < x->n_cols; col++)
1164     x->total += x->col_tot[col];
1165 }
1166
1167 static struct tab_table *
1168 create_crosstab_table (struct crosstabs_proc *proc, struct pivot_table *pt)
1169 {
1170   struct tuple
1171     {
1172       int value;
1173       const char *name;
1174     };
1175   static const struct tuple names[] =
1176     {
1177       {CRS_CL_COUNT, N_("count")},
1178       {CRS_CL_ROW, N_("row %")},
1179       {CRS_CL_COLUMN, N_("column %")},
1180       {CRS_CL_TOTAL, N_("total %")},
1181       {CRS_CL_EXPECTED, N_("expected")},
1182       {CRS_CL_RESIDUAL, N_("residual")},
1183       {CRS_CL_SRESIDUAL, N_("std. resid.")},
1184       {CRS_CL_ASRESIDUAL, N_("adj. resid.")},
1185     };
1186   const int n_names = sizeof names / sizeof *names;
1187   const struct tuple *t;
1188
1189   struct tab_table *table;
1190   struct string title;
1191   struct pivot_table x;
1192
1193   int i;
1194
1195   make_pivot_table_subset (pt, 0, 0, &x);
1196
1197   table = tab_create (x.n_consts + 1 + x.n_cols + 1,
1198                       (x.n_entries / x.n_cols) * 3 / 2 * proc->n_cells + 10);
1199   tab_headers (table, x.n_consts + 1, 0, 2, 0);
1200   tab_set_format (table, RC_WEIGHT, &proc->weight_format);
1201
1202   /* First header line. */
1203   tab_joint_text (table, x.n_consts + 1, 0,
1204                   (x.n_consts + 1) + (x.n_cols - 1), 0,
1205                   TAB_CENTER | TAT_TITLE, var_to_string (x.vars[COL_VAR]));
1206
1207   tab_hline (table, TAL_1, x.n_consts + 1,
1208              x.n_consts + 2 + x.n_cols - 2, 1);
1209
1210   /* Second header line. */
1211   for (i = 2; i < x.n_consts + 2; i++)
1212     tab_joint_text (table, x.n_consts + 2 - i - 1, 0,
1213                     x.n_consts + 2 - i - 1, 1,
1214                     TAB_RIGHT | TAT_TITLE, var_to_string (x.vars[i]));
1215   tab_text (table, x.n_consts + 2 - 2, 1, TAB_RIGHT | TAT_TITLE,
1216             var_to_string (x.vars[ROW_VAR]));
1217   for (i = 0; i < x.n_cols; i++)
1218     table_value_missing (proc, table, x.n_consts + 2 + i - 1, 1, TAB_RIGHT,
1219                          &x.cols[i], x.vars[COL_VAR]);
1220   tab_text (table, x.n_consts + 2 + x.n_cols - 1, 1, TAB_CENTER, _("Total"));
1221
1222   tab_hline (table, TAL_1, 0, x.n_consts + 2 + x.n_cols - 1, 2);
1223   tab_vline (table, TAL_1, x.n_consts + 2 + x.n_cols - 1, 0, 1);
1224
1225   /* Title. */
1226   ds_init_empty (&title);
1227   for (i = 0; i < x.n_consts + 2; i++)
1228     {
1229       if (i)
1230         ds_put_cstr (&title, " * ");
1231       ds_put_cstr (&title, var_to_string (x.vars[i]));
1232     }
1233   for (i = 0; i < pt->n_consts; i++)
1234     {
1235       const struct variable *var = pt->const_vars[i];
1236       char *s;
1237
1238       ds_put_format (&title, ", %s=", var_to_string (var));
1239
1240       /* Insert the formatted value of VAR without any leading spaces. */
1241       s = data_out (&pt->const_values[i], var_get_encoding (var),
1242                     var_get_print_format (var));
1243       ds_put_cstr (&title, s + strspn (s, " "));
1244       free (s);
1245     }
1246
1247   ds_put_cstr (&title, " [");
1248   i = 0;
1249   for (t = names; t < &names[n_names]; t++)
1250     if (proc->cells & (1u << t->value))
1251       {
1252         if (i++)
1253           ds_put_cstr (&title, ", ");
1254         ds_put_cstr (&title, gettext (t->name));
1255       }
1256   ds_put_cstr (&title, "].");
1257
1258   tab_title (table, "%s", ds_cstr (&title));
1259   ds_destroy (&title);
1260
1261   tab_offset (table, 0, 2);
1262   return table;
1263 }
1264
1265 static struct tab_table *
1266 create_chisq_table (struct crosstabs_proc *proc, struct pivot_table *pt)
1267 {
1268   struct tab_table *chisq;
1269
1270   chisq = tab_create (6 + (pt->n_vars - 2),
1271                       pt->n_entries / pt->n_cols * 3 / 2 * N_CHISQ + 10);
1272   tab_headers (chisq, 1 + (pt->n_vars - 2), 0, 1, 0);
1273   tab_set_format (chisq, RC_WEIGHT, &proc->weight_format);
1274
1275   tab_title (chisq, _("Chi-square tests."));
1276
1277   tab_offset (chisq, pt->n_vars - 2, 0);
1278   tab_text (chisq, 0, 0, TAB_LEFT | TAT_TITLE, _("Statistic"));
1279   tab_text (chisq, 1, 0, TAB_RIGHT | TAT_TITLE, _("Value"));
1280   tab_text (chisq, 2, 0, TAB_RIGHT | TAT_TITLE, _("df"));
1281   tab_text (chisq, 3, 0, TAB_RIGHT | TAT_TITLE,
1282             _("Asymp. Sig. (2-tailed)"));
1283   tab_text_format (chisq, 4, 0, TAB_RIGHT | TAT_TITLE,
1284             _("Exact Sig. (%d-tailed)"), 2);
1285   tab_text_format (chisq, 5, 0, TAB_RIGHT | TAT_TITLE,
1286             _("Exact Sig. (%d-tailed)"), 1);
1287   tab_offset (chisq, 0, 1);
1288
1289   return chisq;
1290 }
1291
1292 /* Symmetric measures. */
1293 static struct tab_table *
1294 create_sym_table (struct crosstabs_proc *proc, struct pivot_table *pt)
1295 {
1296   struct tab_table *sym;
1297
1298   sym = tab_create (6 + (pt->n_vars - 2),
1299                     pt->n_entries / pt->n_cols * 7 + 10);
1300
1301   tab_set_format (sym, RC_WEIGHT, &proc->weight_format);
1302
1303   tab_headers (sym, 2 + (pt->n_vars - 2), 0, 1, 0);
1304   tab_title (sym, _("Symmetric measures."));
1305
1306   tab_offset (sym, pt->n_vars - 2, 0);
1307   tab_text (sym, 0, 0, TAB_LEFT | TAT_TITLE, _("Category"));
1308   tab_text (sym, 1, 0, TAB_LEFT | TAT_TITLE, _("Statistic"));
1309   tab_text (sym, 2, 0, TAB_RIGHT | TAT_TITLE, _("Value"));
1310   tab_text (sym, 3, 0, TAB_RIGHT | TAT_TITLE, _("Asymp. Std. Error"));
1311   tab_text (sym, 4, 0, TAB_RIGHT | TAT_TITLE, _("Approx. T"));
1312   tab_text (sym, 5, 0, TAB_RIGHT | TAT_TITLE, _("Approx. Sig."));
1313   tab_offset (sym, 0, 1);
1314
1315   return sym;
1316 }
1317
1318 /* Risk estimate. */
1319 static struct tab_table *
1320 create_risk_table (struct crosstabs_proc *proc, struct pivot_table *pt)
1321 {
1322   struct tab_table *risk;
1323
1324   risk = tab_create (4 + (pt->n_vars - 2), pt->n_entries / pt->n_cols * 4 + 10);
1325   tab_headers (risk, 1 + pt->n_vars - 2, 0, 2, 0);
1326   tab_title (risk, _("Risk estimate."));
1327   tab_set_format (risk, RC_WEIGHT, &proc->weight_format);
1328
1329   tab_offset (risk, pt->n_vars - 2, 0);
1330   tab_joint_text_format (risk, 2, 0, 3, 0, TAB_CENTER | TAT_TITLE,
1331                          _("95%% Confidence Interval"));
1332   tab_text (risk, 0, 1, TAB_LEFT | TAT_TITLE, _("Statistic"));
1333   tab_text (risk, 1, 1, TAB_RIGHT | TAT_TITLE, _("Value"));
1334   tab_text (risk, 2, 1, TAB_RIGHT | TAT_TITLE, _("Lower"));
1335   tab_text (risk, 3, 1, TAB_RIGHT | TAT_TITLE, _("Upper"));
1336   tab_hline (risk, TAL_1, 2, 3, 1);
1337   tab_vline (risk, TAL_1, 2, 0, 1);
1338   tab_offset (risk, 0, 2);
1339
1340   return risk;
1341 }
1342
1343 /* Directional measures. */
1344 static struct tab_table *
1345 create_direct_table (struct crosstabs_proc *proc, struct pivot_table *pt)
1346 {
1347   struct tab_table *direct;
1348
1349   direct = tab_create (7 + (pt->n_vars - 2),
1350                        pt->n_entries / pt->n_cols * 7 + 10);
1351   tab_headers (direct, 3 + (pt->n_vars - 2), 0, 1, 0);
1352   tab_title (direct, _("Directional measures."));
1353   tab_set_format (direct, RC_WEIGHT, &proc->weight_format);
1354
1355   tab_offset (direct, pt->n_vars - 2, 0);
1356   tab_text (direct, 0, 0, TAB_LEFT | TAT_TITLE, _("Category"));
1357   tab_text (direct, 1, 0, TAB_LEFT | TAT_TITLE, _("Statistic"));
1358   tab_text (direct, 2, 0, TAB_LEFT | TAT_TITLE, _("Type"));
1359   tab_text (direct, 3, 0, TAB_RIGHT | TAT_TITLE, _("Value"));
1360   tab_text (direct, 4, 0, TAB_RIGHT | TAT_TITLE, _("Asymp. Std. Error"));
1361   tab_text (direct, 5, 0, TAB_RIGHT | TAT_TITLE, _("Approx. T"));
1362   tab_text (direct, 6, 0, TAB_RIGHT | TAT_TITLE, _("Approx. Sig."));
1363   tab_offset (direct, 0, 1);
1364
1365   return direct;
1366 }
1367
1368
1369 /* Delete missing rows and columns for statistical analysis when
1370    /MISSING=REPORT. */
1371 static void
1372 delete_missing (struct pivot_table *pt)
1373 {
1374   int r, c;
1375
1376   for (r = 0; r < pt->n_rows; r++)
1377     if (var_is_num_missing (pt->vars[ROW_VAR], pt->rows[r].f, MV_USER))
1378       {
1379         for (c = 0; c < pt->n_cols; c++)
1380           pt->mat[c + r * pt->n_cols] = 0.;
1381         pt->ns_rows--;
1382       }
1383
1384
1385   for (c = 0; c < pt->n_cols; c++)
1386     if (var_is_num_missing (pt->vars[COL_VAR], pt->cols[c].f, MV_USER))
1387       {
1388         for (r = 0; r < pt->n_rows; r++)
1389           pt->mat[c + r * pt->n_cols] = 0.;
1390         pt->ns_cols--;
1391       }
1392 }
1393
1394 /* Prepare table T for submission, and submit it. */
1395 static void
1396 submit (struct pivot_table *pt, struct tab_table *t)
1397 {
1398   int i;
1399
1400   if (t == NULL)
1401     return;
1402
1403   tab_resize (t, -1, 0);
1404   if (tab_nr (t) == tab_t (t))
1405     {
1406       table_unref (&t->table);
1407       return;
1408     }
1409   tab_offset (t, 0, 0);
1410   if (pt != NULL)
1411     for (i = 2; i < pt->n_vars; i++)
1412       tab_text (t, pt->n_vars - i - 1, 0, TAB_RIGHT | TAT_TITLE,
1413                 var_to_string (pt->vars[i]));
1414   tab_box (t, TAL_2, TAL_2, -1, -1, 0, 0, tab_nc (t) - 1, tab_nr (t) - 1);
1415   tab_box (t, -1, -1, -1, TAL_1, tab_l (t), tab_t (t) - 1, tab_nc (t) - 1,
1416            tab_nr (t) - 1);
1417   tab_box (t, -1, -1, -1, TAL_GAP, 0, tab_t (t), tab_l (t) - 1,
1418            tab_nr (t) - 1);
1419   tab_vline (t, TAL_2, tab_l (t), 0, tab_nr (t) - 1);
1420
1421   tab_submit (t);
1422 }
1423
1424 static bool
1425 find_crosstab (struct pivot_table *pt, size_t *row0p, size_t *row1p)
1426 {
1427   size_t row0 = *row1p;
1428   size_t row1;
1429
1430   if (row0 >= pt->n_entries)
1431     return false;
1432
1433   for (row1 = row0 + 1; row1 < pt->n_entries; row1++)
1434     {
1435       struct table_entry *a = pt->entries[row0];
1436       struct table_entry *b = pt->entries[row1];
1437       if (compare_table_entry_vars_3way (a, b, pt, 2, pt->n_vars) != 0)
1438         break;
1439     }
1440   *row0p = row0;
1441   *row1p = row1;
1442   return true;
1443 }
1444
1445 /* Compares `union value's A_ and B_ and returns a strcmp()-like
1446    result.  WIDTH_ points to an int which is either 0 for a
1447    numeric value or a string width for a string value. */
1448 static int
1449 compare_value_3way (const void *a_, const void *b_, const void *width_)
1450 {
1451   const union value *a = a_;
1452   const union value *b = b_;
1453   const int *width = width_;
1454
1455   return value_compare_3way (a, b, *width);
1456 }
1457
1458 /* Inverted version of the above */
1459 static int
1460 compare_value_3way_inv (const void *a_, const void *b_, const void *width_)
1461 {
1462   return -compare_value_3way (a_, b_, width_);
1463 }
1464
1465
1466 /* Given an array of ENTRY_CNT table_entry structures starting at
1467    ENTRIES, creates a sorted list of the values that the variable
1468    with index VAR_IDX takes on.  The values are returned as a
1469    malloc()'d array stored in *VALUES, with the number of values
1470    stored in *VALUE_CNT.
1471
1472    The caller must eventually free *VALUES, but each pointer in *VALUES points
1473    to existing data not owned by *VALUES itself. */
1474 static void
1475 enum_var_values (const struct pivot_table *pt, int var_idx,
1476                  union value **valuesp, int *n_values, bool descending)
1477 {
1478   const struct variable *var = pt->vars[var_idx];
1479   const struct var_range *range = get_var_range (pt->proc, var);
1480   union value *values;
1481   size_t i;
1482
1483   if (range)
1484     {
1485       values = *valuesp = xnmalloc (range->count, sizeof *values);
1486       *n_values = range->count;
1487       for (i = 0; i < range->count; i++)
1488         values[i].f = range->min + i;
1489     }
1490   else
1491     {
1492       int width = var_get_width (var);
1493       struct hmapx_node *node;
1494       const union value *iter;
1495       struct hmapx set;
1496
1497       hmapx_init (&set);
1498       for (i = 0; i < pt->n_entries; i++)
1499         {
1500           const struct table_entry *te = pt->entries[i];
1501           const union value *value = &te->values[var_idx];
1502           size_t hash = value_hash (value, width, 0);
1503
1504           HMAPX_FOR_EACH_WITH_HASH (iter, node, hash, &set)
1505             if (value_equal (iter, value, width))
1506               goto next_entry;
1507
1508           hmapx_insert (&set, (union value *) value, hash);
1509
1510         next_entry: ;
1511         }
1512
1513       *n_values = hmapx_count (&set);
1514       values = *valuesp = xnmalloc (*n_values, sizeof *values);
1515       i = 0;
1516       HMAPX_FOR_EACH (iter, node, &set)
1517         values[i++] = *iter;
1518       hmapx_destroy (&set);
1519
1520       sort (values, *n_values, sizeof *values,
1521             descending ? compare_value_3way_inv : compare_value_3way,
1522             &width);
1523     }
1524 }
1525
1526 /* Sets cell (C,R) in TABLE, with options OPT, to have a value taken
1527    from V, displayed with print format spec from variable VAR.  When
1528    in REPORT missing-value mode, missing values have an M appended. */
1529 static void
1530 table_value_missing (struct crosstabs_proc *proc,
1531                      struct tab_table *table, int c, int r, unsigned char opt,
1532                      const union value *v, const struct variable *var)
1533 {
1534   const char *label = var_lookup_value_label (var, v);
1535   if (label != NULL)
1536     tab_text (table, c, r, TAB_LEFT, label);
1537   else
1538     {
1539       const struct fmt_spec *print = var_get_print_format (var);
1540       if (proc->exclude == MV_NEVER && var_is_value_missing (var, v, MV_USER))
1541         {
1542           char *s = data_out (v, dict_get_encoding (proc->dict), print);
1543           tab_text_format (table, c, r, opt, "%sM", s + strspn (s, " "));
1544           free (s);
1545         }
1546       else
1547         tab_value (table, c, r, opt, v, var, print);
1548     }
1549 }
1550
1551 /* Draws a line across TABLE at the current row to indicate the most
1552    major dimension variable with index FIRST_DIFFERENCE out of N_VARS
1553    that changed, and puts the values that changed into the table.  TB
1554    and PT must be the corresponding table_entry and crosstab,
1555    respectively. */
1556 static void
1557 display_dimensions (struct crosstabs_proc *proc, struct pivot_table *pt,
1558                     struct tab_table *table, int first_difference)
1559 {
1560   tab_hline (table, TAL_1, pt->n_consts + pt->n_vars - first_difference - 1, tab_nc (table) - 1, 0);
1561
1562   for (; first_difference >= 2; first_difference--)
1563     table_value_missing (proc, table, pt->n_consts + pt->n_vars - first_difference - 1, 0,
1564                          TAB_RIGHT, &pt->entries[0]->values[first_difference],
1565                          pt->vars[first_difference]);
1566 }
1567
1568 /* Put VALUE into cell (C,R) of TABLE, suffixed with character
1569    SUFFIX if nonzero.  If MARK_MISSING is true the entry is
1570    additionally suffixed with a letter `M'. */
1571 static void
1572 format_cell_entry (struct tab_table *table, int c, int r, double value,
1573                    char suffix, bool mark_missing, const struct dictionary *dict)
1574 {
1575   union value v;
1576   char suffixes[3];
1577   int suffix_len;
1578   char *s;
1579
1580   v.f = value;
1581   s = data_out (&v, dict_get_encoding (dict), settings_get_format ());
1582
1583   suffix_len = 0;
1584   if (suffix != 0)
1585     suffixes[suffix_len++] = suffix;
1586   if (mark_missing)
1587     suffixes[suffix_len++] = 'M';
1588   suffixes[suffix_len] = '\0';
1589
1590   tab_text_format (table, c, r, TAB_RIGHT, "%s%s",
1591                    s + strspn (s, " "), suffixes);
1592
1593   free (s);
1594 }
1595
1596 /* Displays the crosstabulation table. */
1597 static void
1598 display_crosstabulation (struct crosstabs_proc *proc, struct pivot_table *pt,
1599                          struct tab_table *table)
1600 {
1601   int last_row;
1602   int r, c, i;
1603   double *mp;
1604
1605   for (r = 0; r < pt->n_rows; r++)
1606     table_value_missing (proc, table, pt->n_consts + pt->n_vars - 2,
1607                          r * proc->n_cells, TAB_RIGHT, &pt->rows[r],
1608                          pt->vars[ROW_VAR]);
1609
1610   tab_text (table, pt->n_vars - 2, pt->n_rows * proc->n_cells,
1611             TAB_LEFT, _("Total"));
1612
1613   /* Put in the actual cells. */
1614   mp = pt->mat;
1615   tab_offset (table, pt->n_consts + pt->n_vars - 1, -1);
1616   for (r = 0; r < pt->n_rows; r++)
1617     {
1618       if (proc->n_cells > 1)
1619         tab_hline (table, TAL_1, -1, pt->n_cols, 0);
1620       for (c = 0; c < pt->n_cols; c++)
1621         {
1622           bool mark_missing = false;
1623           double expected_value = pt->row_tot[r] * pt->col_tot[c] / pt->total;
1624           if (proc->exclude == MV_NEVER
1625               && (var_is_num_missing (pt->vars[COL_VAR], pt->cols[c].f, MV_USER)
1626                   || var_is_num_missing (pt->vars[ROW_VAR], pt->rows[r].f,
1627                                          MV_USER)))
1628             mark_missing = true;
1629           for (i = 0; i < proc->n_cells; i++)
1630             {
1631               double v;
1632               int suffix = 0;
1633
1634               switch (proc->a_cells[i])
1635                 {
1636                 case CRS_CL_COUNT:
1637                   v = *mp;
1638                   break;
1639                 case CRS_CL_ROW:
1640                   v = *mp / pt->row_tot[r] * 100.;
1641                   suffix = '%';
1642                   break;
1643                 case CRS_CL_COLUMN:
1644                   v = *mp / pt->col_tot[c] * 100.;
1645                   suffix = '%';
1646                   break;
1647                 case CRS_CL_TOTAL:
1648                   v = *mp / pt->total * 100.;
1649                   suffix = '%';
1650                   break;
1651                 case CRS_CL_EXPECTED:
1652                   v = expected_value;
1653                   break;
1654                 case CRS_CL_RESIDUAL:
1655                   v = *mp - expected_value;
1656                   break;
1657                 case CRS_CL_SRESIDUAL:
1658                   v = (*mp - expected_value) / sqrt (expected_value);
1659                   break;
1660                 case CRS_CL_ASRESIDUAL:
1661                   v = ((*mp - expected_value)
1662                        / sqrt (expected_value
1663                                * (1. - pt->row_tot[r] / pt->total)
1664                                * (1. - pt->col_tot[c] / pt->total)));
1665                   break;
1666                 default:
1667                   NOT_REACHED ();
1668                 }
1669               format_cell_entry (table, c, i, v, suffix, mark_missing, proc->dict);
1670             }
1671
1672           mp++;
1673         }
1674
1675       tab_offset (table, -1, tab_row (table) + proc->n_cells);
1676     }
1677
1678   /* Row totals. */
1679   tab_offset (table, -1, tab_row (table) - proc->n_cells * pt->n_rows);
1680   for (r = 0; r < pt->n_rows; r++)
1681     {
1682       bool mark_missing = false;
1683
1684       if (proc->exclude == MV_NEVER
1685           && var_is_num_missing (pt->vars[ROW_VAR], pt->rows[r].f, MV_USER))
1686         mark_missing = true;
1687
1688       for (i = 0; i < proc->n_cells; i++)
1689         {
1690           char suffix = 0;
1691           double v;
1692
1693           switch (proc->a_cells[i])
1694             {
1695             case CRS_CL_COUNT:
1696               v = pt->row_tot[r];
1697               break;
1698             case CRS_CL_ROW:
1699               v = 100.0;
1700               suffix = '%';
1701               break;
1702             case CRS_CL_COLUMN:
1703               v = pt->row_tot[r] / pt->total * 100.;
1704               suffix = '%';
1705               break;
1706             case CRS_CL_TOTAL:
1707               v = pt->row_tot[r] / pt->total * 100.;
1708               suffix = '%';
1709               break;
1710             case CRS_CL_EXPECTED:
1711             case CRS_CL_RESIDUAL:
1712             case CRS_CL_SRESIDUAL:
1713             case CRS_CL_ASRESIDUAL:
1714               v = 0.;
1715               break;
1716             default:
1717               NOT_REACHED ();
1718             }
1719
1720           format_cell_entry (table, pt->n_cols, 0, v, suffix, mark_missing, proc->dict);
1721           tab_next_row (table);
1722         }
1723     }
1724
1725   /* Column totals, grand total. */
1726   last_row = 0;
1727   if (proc->n_cells > 1)
1728     tab_hline (table, TAL_1, -1, pt->n_cols, 0);
1729   for (c = 0; c <= pt->n_cols; c++)
1730     {
1731       double ct = c < pt->n_cols ? pt->col_tot[c] : pt->total;
1732       bool mark_missing = false;
1733       int i;
1734
1735       if (proc->exclude == MV_NEVER && c < pt->n_cols
1736           && var_is_num_missing (pt->vars[COL_VAR], pt->cols[c].f, MV_USER))
1737         mark_missing = true;
1738
1739       for (i = 0; i < proc->n_cells; i++)
1740         {
1741           char suffix = 0;
1742           double v;
1743
1744           switch (proc->a_cells[i])
1745             {
1746             case CRS_CL_COUNT:
1747               v = ct;
1748               break;
1749             case CRS_CL_ROW:
1750               v = ct / pt->total * 100.;
1751               suffix = '%';
1752               break;
1753             case CRS_CL_COLUMN:
1754               v = 100.;
1755               suffix = '%';
1756               break;
1757             case CRS_CL_TOTAL:
1758               v = ct / pt->total * 100.;
1759               suffix = '%';
1760               break;
1761             case CRS_CL_EXPECTED:
1762             case CRS_CL_RESIDUAL:
1763             case CRS_CL_SRESIDUAL:
1764             case CRS_CL_ASRESIDUAL:
1765               continue;
1766             default:
1767               NOT_REACHED ();
1768             }
1769
1770           format_cell_entry (table, c, i, v, suffix, mark_missing, proc->dict);
1771         }
1772       last_row = i;
1773     }
1774
1775   tab_offset (table, -1, tab_row (table) + last_row);
1776   tab_offset (table, 0, -1);
1777 }
1778
1779 static void calc_r (struct pivot_table *,
1780                     double *PT, double *Y, double *, double *, double *);
1781 static void calc_chisq (struct pivot_table *,
1782                         double[N_CHISQ], int[N_CHISQ], double *, double *);
1783
1784 /* Display chi-square statistics. */
1785 static void
1786 display_chisq (struct pivot_table *pt, struct tab_table *chisq,
1787                bool *showed_fisher)
1788 {
1789   static const char *chisq_stats[N_CHISQ] =
1790     {
1791       N_("Pearson Chi-Square"),
1792       N_("Likelihood Ratio"),
1793       N_("Fisher's Exact Test"),
1794       N_("Continuity Correction"),
1795       N_("Linear-by-Linear Association"),
1796     };
1797   double chisq_v[N_CHISQ];
1798   double fisher1, fisher2;
1799   int df[N_CHISQ];
1800
1801   int i;
1802
1803   calc_chisq (pt, chisq_v, df, &fisher1, &fisher2);
1804
1805   tab_offset (chisq, pt->n_consts + pt->n_vars - 2, -1);
1806
1807   for (i = 0; i < N_CHISQ; i++)
1808     {
1809       if ((i != 2 && chisq_v[i] == SYSMIS)
1810           || (i == 2 && fisher1 == SYSMIS))
1811         continue;
1812
1813       tab_text (chisq, 0, 0, TAB_LEFT, gettext (chisq_stats[i]));
1814       if (i != 2)
1815         {
1816           tab_double (chisq, 1, 0, TAB_RIGHT, chisq_v[i], NULL, RC_OTHER);
1817           tab_double (chisq, 2, 0, TAB_RIGHT, df[i], NULL, RC_WEIGHT);
1818           tab_double (chisq, 3, 0, TAB_RIGHT,
1819                       gsl_cdf_chisq_Q (chisq_v[i], df[i]), NULL, RC_PVALUE);
1820         }
1821       else
1822         {
1823           *showed_fisher = true;
1824           tab_double (chisq, 4, 0, TAB_RIGHT, fisher2, NULL, RC_PVALUE);
1825           tab_double (chisq, 5, 0, TAB_RIGHT, fisher1, NULL, RC_PVALUE);
1826         }
1827       tab_next_row (chisq);
1828     }
1829
1830   tab_text (chisq, 0, 0, TAB_LEFT, _("N of Valid Cases"));
1831   tab_double (chisq, 1, 0, TAB_RIGHT, pt->total, NULL, RC_WEIGHT);
1832   tab_next_row (chisq);
1833
1834   tab_offset (chisq, 0, -1);
1835 }
1836
1837 static int calc_symmetric (struct crosstabs_proc *, struct pivot_table *,
1838                            double[N_SYMMETRIC], double[N_SYMMETRIC],
1839                            double[N_SYMMETRIC],
1840                            double[3], double[3], double[3]);
1841
1842 /* Display symmetric measures. */
1843 static void
1844 display_symmetric (struct crosstabs_proc *proc, struct pivot_table *pt,
1845                    struct tab_table *sym)
1846 {
1847   static const char *categories[] =
1848     {
1849       N_("Nominal by Nominal"),
1850       N_("Ordinal by Ordinal"),
1851       N_("Interval by Interval"),
1852       N_("Measure of Agreement"),
1853     };
1854
1855   static const char *stats[N_SYMMETRIC] =
1856     {
1857       N_("Phi"),
1858       N_("Cramer's V"),
1859       N_("Contingency Coefficient"),
1860       N_("Kendall's tau-b"),
1861       N_("Kendall's tau-c"),
1862       N_("Gamma"),
1863       N_("Spearman Correlation"),
1864       N_("Pearson's R"),
1865       N_("Kappa"),
1866     };
1867
1868   static const int stats_categories[N_SYMMETRIC] =
1869     {
1870       0, 0, 0, 1, 1, 1, 1, 2, 3,
1871     };
1872
1873   int last_cat = -1;
1874   double sym_v[N_SYMMETRIC], sym_ase[N_SYMMETRIC], sym_t[N_SYMMETRIC];
1875   double somers_d_v[3], somers_d_ase[3], somers_d_t[3];
1876   int i;
1877
1878   if (!calc_symmetric (proc, pt, sym_v, sym_ase, sym_t,
1879                        somers_d_v, somers_d_ase, somers_d_t))
1880     return;
1881
1882   tab_offset (sym, pt->n_consts + pt->n_vars - 2, -1);
1883
1884   for (i = 0; i < N_SYMMETRIC; i++)
1885     {
1886       if (sym_v[i] == SYSMIS)
1887         continue;
1888
1889       if (stats_categories[i] != last_cat)
1890         {
1891           last_cat = stats_categories[i];
1892           tab_text (sym, 0, 0, TAB_LEFT, gettext (categories[last_cat]));
1893         }
1894
1895       tab_text (sym, 1, 0, TAB_LEFT, gettext (stats[i]));
1896       tab_double (sym, 2, 0, TAB_RIGHT, sym_v[i], NULL, RC_OTHER);
1897       if (sym_ase[i] != SYSMIS)
1898         tab_double (sym, 3, 0, TAB_RIGHT, sym_ase[i], NULL, RC_OTHER);
1899       if (sym_t[i] != SYSMIS)
1900         tab_double (sym, 4, 0, TAB_RIGHT, sym_t[i], NULL, RC_OTHER);
1901       /*tab_double (sym, 5, 0, TAB_RIGHT, normal_sig (sym_v[i]), NULL, RC_PVALUE);*/
1902       tab_next_row (sym);
1903     }
1904
1905   tab_text (sym, 0, 0, TAB_LEFT, _("N of Valid Cases"));
1906   tab_double (sym, 2, 0, TAB_RIGHT, pt->total, NULL, RC_WEIGHT);
1907   tab_next_row (sym);
1908
1909   tab_offset (sym, 0, -1);
1910 }
1911
1912 static int calc_risk (struct pivot_table *,
1913                       double[], double[], double[], union value *);
1914
1915 /* Display risk estimate. */
1916 static void
1917 display_risk (struct pivot_table *pt, struct tab_table *risk)
1918 {
1919   char buf[256];
1920   double risk_v[3], lower[3], upper[3];
1921   union value c[2];
1922   int i;
1923
1924   if (!calc_risk (pt, risk_v, upper, lower, c))
1925     return;
1926
1927   tab_offset (risk, pt->n_consts + pt->n_vars - 2, -1);
1928
1929   for (i = 0; i < 3; i++)
1930     {
1931       const struct variable *cv = pt->vars[COL_VAR];
1932       const struct variable *rv = pt->vars[ROW_VAR];
1933       int cvw = var_get_width (cv);
1934       int rvw = var_get_width (rv);
1935
1936       if (risk_v[i] == SYSMIS)
1937         continue;
1938
1939       switch (i)
1940         {
1941         case 0:
1942           if (var_is_numeric (cv))
1943             sprintf (buf, _("Odds Ratio for %s (%g / %g)"),
1944                      var_to_string (cv), c[0].f, c[1].f);
1945           else
1946             sprintf (buf, _("Odds Ratio for %s (%.*s / %.*s)"),
1947                      var_to_string (cv),
1948                      cvw, value_str (&c[0], cvw),
1949                      cvw, value_str (&c[1], cvw));
1950           break;
1951         case 1:
1952         case 2:
1953           if (var_is_numeric (rv))
1954             sprintf (buf, _("For cohort %s = %.*g"),
1955                      var_to_string (rv), DBL_DIG + 1, pt->rows[i - 1].f);
1956           else
1957             sprintf (buf, _("For cohort %s = %.*s"),
1958                      var_to_string (rv),
1959                      rvw, value_str (&pt->rows[i - 1], rvw));
1960           break;
1961         }
1962
1963       tab_text (risk, 0, 0, TAB_LEFT, buf);
1964       tab_double (risk, 1, 0, TAB_RIGHT, risk_v[i], NULL, RC_OTHER);
1965       tab_double (risk, 2, 0, TAB_RIGHT, lower[i], NULL, RC_OTHER);
1966       tab_double (risk, 3, 0, TAB_RIGHT, upper[i], NULL, RC_OTHER);
1967       tab_next_row (risk);
1968     }
1969
1970   tab_text (risk, 0, 0, TAB_LEFT, _("N of Valid Cases"));
1971   tab_double (risk, 1, 0, TAB_RIGHT, pt->total, NULL, RC_WEIGHT);
1972   tab_next_row (risk);
1973
1974   tab_offset (risk, 0, -1);
1975 }
1976
1977 static int calc_directional (struct crosstabs_proc *, struct pivot_table *,
1978                              double[N_DIRECTIONAL], double[N_DIRECTIONAL],
1979                              double[N_DIRECTIONAL]);
1980
1981 /* Display directional measures. */
1982 static void
1983 display_directional (struct crosstabs_proc *proc, struct pivot_table *pt,
1984                      struct tab_table *direct)
1985 {
1986   static const char *categories[] =
1987     {
1988       N_("Nominal by Nominal"),
1989       N_("Ordinal by Ordinal"),
1990       N_("Nominal by Interval"),
1991     };
1992
1993   static const char *stats[] =
1994     {
1995       N_("Lambda"),
1996       N_("Goodman and Kruskal tau"),
1997       N_("Uncertainty Coefficient"),
1998       N_("Somers' d"),
1999       N_("Eta"),
2000     };
2001
2002   static const char *types[] =
2003     {
2004       N_("Symmetric"),
2005       N_("%s Dependent"),
2006       N_("%s Dependent"),
2007     };
2008
2009   static const int stats_categories[N_DIRECTIONAL] =
2010     {
2011       0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 2, 2,
2012     };
2013
2014   static const int stats_stats[N_DIRECTIONAL] =
2015     {
2016       0, 0, 0, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4,
2017     };
2018
2019   static const int stats_types[N_DIRECTIONAL] =
2020     {
2021       0, 1, 2, 1, 2, 0, 1, 2, 0, 1, 2, 1, 2,
2022     };
2023
2024   static const int *stats_lookup[] =
2025     {
2026       stats_categories,
2027       stats_stats,
2028       stats_types,
2029     };
2030
2031   static const char **stats_names[] =
2032     {
2033       categories,
2034       stats,
2035       types,
2036     };
2037
2038   int last[3] =
2039     {
2040       -1, -1, -1,
2041     };
2042
2043   double direct_v[N_DIRECTIONAL];
2044   double direct_ase[N_DIRECTIONAL];
2045   double direct_t[N_DIRECTIONAL];
2046
2047   int i;
2048
2049   if (!calc_directional (proc, pt, direct_v, direct_ase, direct_t))
2050     return;
2051
2052   tab_offset (direct, pt->n_consts + pt->n_vars - 2, -1);
2053
2054   for (i = 0; i < N_DIRECTIONAL; i++)
2055     {
2056       if (direct_v[i] == SYSMIS)
2057         continue;
2058
2059       {
2060         int j;
2061
2062         for (j = 0; j < 3; j++)
2063           if (last[j] != stats_lookup[j][i])
2064             {
2065               if (j < 2)
2066                 tab_hline (direct, TAL_1, j, 6, 0);
2067
2068               for (; j < 3; j++)
2069                 {
2070                   const char *string;
2071                   int k = last[j] = stats_lookup[j][i];
2072
2073                   if (k == 0)
2074                     string = NULL;
2075                   else if (k == 1)
2076                     string = var_to_string (pt->vars[0]);
2077                   else
2078                     string = var_to_string (pt->vars[1]);
2079
2080                   tab_text_format (direct, j, 0, TAB_LEFT,
2081                                    gettext (stats_names[j][k]), string);
2082                 }
2083             }
2084       }
2085
2086       tab_double (direct, 3, 0, TAB_RIGHT, direct_v[i], NULL, RC_OTHER);
2087       if (direct_ase[i] != SYSMIS)
2088         tab_double (direct, 4, 0, TAB_RIGHT, direct_ase[i], NULL, RC_OTHER);
2089       if (direct_t[i] != SYSMIS)
2090         tab_double (direct, 5, 0, TAB_RIGHT, direct_t[i], NULL, RC_OTHER);
2091       /*tab_double (direct, 6, 0, TAB_RIGHT, normal_sig (direct_v[i]), NULL, RC_PVALUE);*/
2092       tab_next_row (direct);
2093     }
2094
2095   tab_offset (direct, 0, -1);
2096 }
2097 \f
2098 /* Statistical calculations. */
2099
2100 /* Returns the value of the logarithm of gamma (factorial) function for an integer
2101    argument PT. */
2102 static double
2103 log_gamma_int (double pt)
2104 {
2105   double r = 0;
2106   int i;
2107
2108   for (i = 2; i < pt; i++)
2109     r += log(i);
2110
2111   return r;
2112 }
2113
2114 /* Calculate P_r as specified in _SPSS Statistical Algorithms_,
2115    Appendix 5. */
2116 static inline double
2117 Pr (int a, int b, int c, int d)
2118 {
2119   return exp (log_gamma_int (a + b + 1.) -  log_gamma_int (a + 1.)
2120             + log_gamma_int (c + d + 1.) - log_gamma_int (b + 1.)
2121             + log_gamma_int (a + c + 1.) - log_gamma_int (c + 1.)
2122             + log_gamma_int (b + d + 1.) - log_gamma_int (d + 1.)
2123             - log_gamma_int (a + b + c + d + 1.));
2124 }
2125
2126 /* Swap the contents of A and B. */
2127 static inline void
2128 swap (int *a, int *b)
2129 {
2130   int t = *a;
2131   *a = *b;
2132   *b = t;
2133 }
2134
2135 /* Calculate significance for Fisher's exact test as specified in
2136    _SPSS Statistical Algorithms_, Appendix 5. */
2137 static void
2138 calc_fisher (int a, int b, int c, int d, double *fisher1, double *fisher2)
2139 {
2140   int pt;
2141   double pn1;
2142
2143   if (MIN (c, d) < MIN (a, b))
2144     swap (&a, &c), swap (&b, &d);
2145   if (MIN (b, d) < MIN (a, c))
2146     swap (&a, &b), swap (&c, &d);
2147   if (b * c < a * d)
2148     {
2149       if (b < c)
2150         swap (&a, &b), swap (&c, &d);
2151       else
2152         swap (&a, &c), swap (&b, &d);
2153     }
2154
2155   pn1 = Pr (a, b, c, d);
2156   *fisher1 = pn1;
2157   for (pt = 1; pt <= a; pt++)
2158     {
2159       *fisher1 += Pr (a - pt, b + pt, c + pt, d - pt);
2160     }
2161
2162   *fisher2 = *fisher1;
2163
2164   for (pt = 1; pt <= b; pt++)
2165     {
2166       double p = Pr (a + pt, b - pt, c - pt, d + pt);
2167       if (p < pn1)
2168         *fisher2 += p;
2169     }
2170 }
2171
2172 /* Calculates chi-squares into CHISQ.  MAT is a matrix with N_COLS
2173    columns with values COLS and N_ROWS rows with values ROWS.  Values
2174    in the matrix sum to pt->total. */
2175 static void
2176 calc_chisq (struct pivot_table *pt,
2177             double chisq[N_CHISQ], int df[N_CHISQ],
2178             double *fisher1, double *fisher2)
2179 {
2180   int r, c;
2181
2182   chisq[0] = chisq[1] = 0.;
2183   chisq[2] = chisq[3] = chisq[4] = SYSMIS;
2184   *fisher1 = *fisher2 = SYSMIS;
2185
2186   df[0] = df[1] = (pt->ns_cols - 1) * (pt->ns_rows - 1);
2187
2188   if (pt->ns_rows <= 1 || pt->ns_cols <= 1)
2189     {
2190       chisq[0] = chisq[1] = SYSMIS;
2191       return;
2192     }
2193
2194   for (r = 0; r < pt->n_rows; r++)
2195     for (c = 0; c < pt->n_cols; c++)
2196       {
2197         const double expected = pt->row_tot[r] * pt->col_tot[c] / pt->total;
2198         const double freq = pt->mat[pt->n_cols * r + c];
2199         const double residual = freq - expected;
2200
2201         chisq[0] += residual * residual / expected;
2202         if (freq)
2203           chisq[1] += freq * log (expected / freq);
2204       }
2205
2206   if (chisq[0] == 0.)
2207     chisq[0] = SYSMIS;
2208
2209   if (chisq[1] != 0.)
2210     chisq[1] *= -2.;
2211   else
2212     chisq[1] = SYSMIS;
2213
2214   /* Calculate Yates and Fisher exact test. */
2215   if (pt->ns_cols == 2 && pt->ns_rows == 2)
2216     {
2217       double f11, f12, f21, f22;
2218
2219       {
2220         int nz_cols[2];
2221         int i, j;
2222
2223         for (i = j = 0; i < pt->n_cols; i++)
2224           if (pt->col_tot[i] != 0.)
2225             {
2226               nz_cols[j++] = i;
2227               if (j == 2)
2228                 break;
2229             }
2230
2231         assert (j == 2);
2232
2233         f11 = pt->mat[nz_cols[0]];
2234         f12 = pt->mat[nz_cols[1]];
2235         f21 = pt->mat[nz_cols[0] + pt->n_cols];
2236         f22 = pt->mat[nz_cols[1] + pt->n_cols];
2237       }
2238
2239       /* Yates. */
2240       {
2241         const double pt_ = fabs (f11 * f22 - f12 * f21) - 0.5 * pt->total;
2242
2243         if (pt_ > 0.)
2244           chisq[3] = (pt->total * pow2 (pt_)
2245                       / (f11 + f12) / (f21 + f22)
2246                       / (f11 + f21) / (f12 + f22));
2247         else
2248           chisq[3] = 0.;
2249
2250         df[3] = 1.;
2251       }
2252
2253       /* Fisher. */
2254       calc_fisher (f11 + .5, f12 + .5, f21 + .5, f22 + .5, fisher1, fisher2);
2255     }
2256
2257   /* Calculate Mantel-Haenszel. */
2258   if (var_is_numeric (pt->vars[ROW_VAR]) && var_is_numeric (pt->vars[COL_VAR]))
2259     {
2260       double r, ase_0, ase_1;
2261       calc_r (pt, (double *) pt->rows, (double *) pt->cols, &r, &ase_0, &ase_1);
2262
2263       chisq[4] = (pt->total - 1.) * r * r;
2264       df[4] = 1;
2265     }
2266 }
2267
2268 /* Calculate the value of Pearson's r.  r is stored into R, ase_1 into
2269    ASE_1, and ase_0 into ASE_0.  The row and column values must be
2270    passed in PT and Y. */
2271 static void
2272 calc_r (struct pivot_table *pt,
2273         double *PT, double *Y, double *r, double *ase_0, double *ase_1)
2274 {
2275   double SX, SY, S, T;
2276   double Xbar, Ybar;
2277   double sum_XYf, sum_X2Y2f;
2278   double sum_Xr, sum_X2r;
2279   double sum_Yc, sum_Y2c;
2280   int i, j;
2281
2282   for (sum_X2Y2f = sum_XYf = 0., i = 0; i < pt->n_rows; i++)
2283     for (j = 0; j < pt->n_cols; j++)
2284       {
2285         double fij = pt->mat[j + i * pt->n_cols];
2286         double product = PT[i] * Y[j];
2287         double temp = fij * product;
2288         sum_XYf += temp;
2289         sum_X2Y2f += temp * product;
2290       }
2291
2292   for (sum_Xr = sum_X2r = 0., i = 0; i < pt->n_rows; i++)
2293     {
2294       sum_Xr += PT[i] * pt->row_tot[i];
2295       sum_X2r += pow2 (PT[i]) * pt->row_tot[i];
2296     }
2297   Xbar = sum_Xr / pt->total;
2298
2299   for (sum_Yc = sum_Y2c = 0., i = 0; i < pt->n_cols; i++)
2300     {
2301       sum_Yc += Y[i] * pt->col_tot[i];
2302       sum_Y2c += Y[i] * Y[i] * pt->col_tot[i];
2303     }
2304   Ybar = sum_Yc / pt->total;
2305
2306   S = sum_XYf - sum_Xr * sum_Yc / pt->total;
2307   SX = sum_X2r - pow2 (sum_Xr) / pt->total;
2308   SY = sum_Y2c - pow2 (sum_Yc) / pt->total;
2309   T = sqrt (SX * SY);
2310   *r = S / T;
2311   *ase_0 = sqrt ((sum_X2Y2f - pow2 (sum_XYf) / pt->total) / (sum_X2r * sum_Y2c));
2312
2313   {
2314     double s, c, y, t;
2315
2316     for (s = c = 0., i = 0; i < pt->n_rows; i++)
2317       for (j = 0; j < pt->n_cols; j++)
2318         {
2319           double Xresid, Yresid;
2320           double temp;
2321
2322           Xresid = PT[i] - Xbar;
2323           Yresid = Y[j] - Ybar;
2324           temp = (T * Xresid * Yresid
2325                   - ((S / (2. * T))
2326                      * (Xresid * Xresid * SY + Yresid * Yresid * SX)));
2327           y = pt->mat[j + i * pt->n_cols] * temp * temp - c;
2328           t = s + y;
2329           c = (t - s) - y;
2330           s = t;
2331         }
2332     *ase_1 = sqrt (s) / (T * T);
2333   }
2334 }
2335
2336 /* Calculate symmetric statistics and their asymptotic standard
2337    errors.  Returns 0 if none could be calculated. */
2338 static int
2339 calc_symmetric (struct crosstabs_proc *proc, struct pivot_table *pt,
2340                 double v[N_SYMMETRIC], double ase[N_SYMMETRIC],
2341                 double t[N_SYMMETRIC],
2342                 double somers_d_v[3], double somers_d_ase[3],
2343                 double somers_d_t[3])
2344 {
2345   int q, i;
2346
2347   q = MIN (pt->ns_rows, pt->ns_cols);
2348   if (q <= 1)
2349     return 0;
2350
2351   for (i = 0; i < N_SYMMETRIC; i++)
2352     v[i] = ase[i] = t[i] = SYSMIS;
2353
2354   /* Phi, Cramer's V, contingency coefficient. */
2355   if (proc->statistics & ((1u << CRS_ST_PHI) | (1u << CRS_ST_CC)))
2356     {
2357       double Xp = 0.;   /* Pearson chi-square. */
2358       int r, c;
2359
2360       for (r = 0; r < pt->n_rows; r++)
2361         for (c = 0; c < pt->n_cols; c++)
2362           {
2363             const double expected = pt->row_tot[r] * pt->col_tot[c] / pt->total;
2364             const double freq = pt->mat[pt->n_cols * r + c];
2365             const double residual = freq - expected;
2366
2367             Xp += residual * residual / expected;
2368           }
2369
2370       if (proc->statistics & (1u << CRS_ST_PHI))
2371         {
2372           v[0] = sqrt (Xp / pt->total);
2373           v[1] = sqrt (Xp / (pt->total * (q - 1)));
2374         }
2375       if (proc->statistics & (1u << CRS_ST_CC))
2376         v[2] = sqrt (Xp / (Xp + pt->total));
2377     }
2378
2379   if (proc->statistics & ((1u << CRS_ST_BTAU) | (1u << CRS_ST_CTAU)
2380                           | (1u << CRS_ST_GAMMA) | (1u << CRS_ST_D)))
2381     {
2382       double *cum;
2383       double Dr, Dc;
2384       double P, Q;
2385       double btau_cum, ctau_cum, gamma_cum, d_yx_cum, d_xy_cum;
2386       double btau_var;
2387       int r, c;
2388
2389       Dr = Dc = pow2 (pt->total);
2390       for (r = 0; r < pt->n_rows; r++)
2391         Dr -= pow2 (pt->row_tot[r]);
2392       for (c = 0; c < pt->n_cols; c++)
2393         Dc -= pow2 (pt->col_tot[c]);
2394
2395       cum = xnmalloc (pt->n_cols * pt->n_rows, sizeof *cum);
2396       for (c = 0; c < pt->n_cols; c++)
2397         {
2398           double ct = 0.;
2399
2400           for (r = 0; r < pt->n_rows; r++)
2401             cum[c + r * pt->n_cols] = ct += pt->mat[c + r * pt->n_cols];
2402         }
2403
2404       /* P and Q. */
2405       {
2406         int i, j;
2407         double Cij, Dij;
2408
2409         P = Q = 0.;
2410         for (i = 0; i < pt->n_rows; i++)
2411           {
2412             Cij = Dij = 0.;
2413
2414             for (j = 1; j < pt->n_cols; j++)
2415               Cij += pt->col_tot[j] - cum[j + i * pt->n_cols];
2416
2417             if (i > 0)
2418               for (j = 1; j < pt->n_cols; j++)
2419                 Dij += cum[j + (i - 1) * pt->n_cols];
2420
2421             for (j = 0;;)
2422               {
2423                 double fij = pt->mat[j + i * pt->n_cols];
2424                 P += fij * Cij;
2425                 Q += fij * Dij;
2426
2427                 if (++j == pt->n_cols)
2428                   break;
2429                 assert (j < pt->n_cols);
2430
2431                 Cij -= pt->col_tot[j] - cum[j + i * pt->n_cols];
2432                 Dij += pt->col_tot[j - 1] - cum[j - 1 + i * pt->n_cols];
2433
2434                 if (i > 0)
2435                   {
2436                     Cij += cum[j - 1 + (i - 1) * pt->n_cols];
2437                     Dij -= cum[j + (i - 1) * pt->n_cols];
2438                   }
2439               }
2440           }
2441       }
2442
2443       if (proc->statistics & (1u << CRS_ST_BTAU))
2444         v[3] = (P - Q) / sqrt (Dr * Dc);
2445       if (proc->statistics & (1u << CRS_ST_CTAU))
2446         v[4] = (q * (P - Q)) / (pow2 (pt->total) * (q - 1));
2447       if (proc->statistics & (1u << CRS_ST_GAMMA))
2448         v[5] = (P - Q) / (P + Q);
2449
2450       /* ASE for tau-b, tau-c, gamma.  Calculations could be
2451          eliminated here, at expense of memory.  */
2452       {
2453         int i, j;
2454         double Cij, Dij;
2455
2456         btau_cum = ctau_cum = gamma_cum = d_yx_cum = d_xy_cum = 0.;
2457         for (i = 0; i < pt->n_rows; i++)
2458           {
2459             Cij = Dij = 0.;
2460
2461             for (j = 1; j < pt->n_cols; j++)
2462               Cij += pt->col_tot[j] - cum[j + i * pt->n_cols];
2463
2464             if (i > 0)
2465               for (j = 1; j < pt->n_cols; j++)
2466                 Dij += cum[j + (i - 1) * pt->n_cols];
2467
2468             for (j = 0;;)
2469               {
2470                 double fij = pt->mat[j + i * pt->n_cols];
2471
2472                 if (proc->statistics & (1u << CRS_ST_BTAU))
2473                   {
2474                     const double temp = (2. * sqrt (Dr * Dc) * (Cij - Dij)
2475                                          + v[3] * (pt->row_tot[i] * Dc
2476                                                    + pt->col_tot[j] * Dr));
2477                     btau_cum += fij * temp * temp;
2478                   }
2479
2480                 {
2481                   const double temp = Cij - Dij;
2482                   ctau_cum += fij * temp * temp;
2483                 }
2484
2485                 if (proc->statistics & (1u << CRS_ST_GAMMA))
2486                   {
2487                     const double temp = Q * Cij - P * Dij;
2488                     gamma_cum += fij * temp * temp;
2489                   }
2490
2491                 if (proc->statistics & (1u << CRS_ST_D))
2492                   {
2493                     d_yx_cum += fij * pow2 (Dr * (Cij - Dij)
2494                                             - (P - Q) * (pt->total - pt->row_tot[i]));
2495                     d_xy_cum += fij * pow2 (Dc * (Dij - Cij)
2496                                             - (Q - P) * (pt->total - pt->col_tot[j]));
2497                   }
2498
2499                 if (++j == pt->n_cols)
2500                   break;
2501                 assert (j < pt->n_cols);
2502
2503                 Cij -= pt->col_tot[j] - cum[j + i * pt->n_cols];
2504                 Dij += pt->col_tot[j - 1] - cum[j - 1 + i * pt->n_cols];
2505
2506                 if (i > 0)
2507                   {
2508                     Cij += cum[j - 1 + (i - 1) * pt->n_cols];
2509                     Dij -= cum[j + (i - 1) * pt->n_cols];
2510                   }
2511               }
2512           }
2513       }
2514
2515       btau_var = ((btau_cum
2516                    - (pt->total * pow2 (pt->total * (P - Q) / sqrt (Dr * Dc) * (Dr + Dc))))
2517                   / pow2 (Dr * Dc));
2518       if (proc->statistics & (1u << CRS_ST_BTAU))
2519         {
2520           ase[3] = sqrt (btau_var);
2521           t[3] = v[3] / (2 * sqrt ((ctau_cum - (P - Q) * (P - Q) / pt->total)
2522                                    / (Dr * Dc)));
2523         }
2524       if (proc->statistics & (1u << CRS_ST_CTAU))
2525         {
2526           ase[4] = ((2 * q / ((q - 1) * pow2 (pt->total)))
2527                     * sqrt (ctau_cum - (P - Q) * (P - Q) / pt->total));
2528           t[4] = v[4] / ase[4];
2529         }
2530       if (proc->statistics & (1u << CRS_ST_GAMMA))
2531         {
2532           ase[5] = ((4. / ((P + Q) * (P + Q))) * sqrt (gamma_cum));
2533           t[5] = v[5] / (2. / (P + Q)
2534                          * sqrt (ctau_cum - (P - Q) * (P - Q) / pt->total));
2535         }
2536       if (proc->statistics & (1u << CRS_ST_D))
2537         {
2538           somers_d_v[0] = (P - Q) / (.5 * (Dc + Dr));
2539           somers_d_ase[0] = 2. * btau_var / (Dr + Dc) * sqrt (Dr * Dc);
2540           somers_d_t[0] = (somers_d_v[0]
2541                            / (4 / (Dc + Dr)
2542                               * sqrt (ctau_cum - pow2 (P - Q) / pt->total)));
2543           somers_d_v[1] = (P - Q) / Dc;
2544           somers_d_ase[1] = 2. / pow2 (Dc) * sqrt (d_xy_cum);
2545           somers_d_t[1] = (somers_d_v[1]
2546                            / (2. / Dc
2547                               * sqrt (ctau_cum - pow2 (P - Q) / pt->total)));
2548           somers_d_v[2] = (P - Q) / Dr;
2549           somers_d_ase[2] = 2. / pow2 (Dr) * sqrt (d_yx_cum);
2550           somers_d_t[2] = (somers_d_v[2]
2551                            / (2. / Dr
2552                               * sqrt (ctau_cum - pow2 (P - Q) / pt->total)));
2553         }
2554
2555       free (cum);
2556     }
2557
2558   /* Spearman correlation, Pearson's r. */
2559   if (proc->statistics & (1u << CRS_ST_CORR))
2560     {
2561       double *R = xmalloc (sizeof *R * pt->n_rows);
2562       double *C = xmalloc (sizeof *C * pt->n_cols);
2563
2564       {
2565         double y, t, c = 0., s = 0.;
2566         int i = 0;
2567
2568         for (;;)
2569           {
2570             R[i] = s + (pt->row_tot[i] + 1.) / 2.;
2571             y = pt->row_tot[i] - c;
2572             t = s + y;
2573             c = (t - s) - y;
2574             s = t;
2575             if (++i == pt->n_rows)
2576               break;
2577             assert (i < pt->n_rows);
2578           }
2579       }
2580
2581       {
2582         double y, t, c = 0., s = 0.;
2583         int j = 0;
2584
2585         for (;;)
2586           {
2587             C[j] = s + (pt->col_tot[j] + 1.) / 2;
2588             y = pt->col_tot[j] - c;
2589             t = s + y;
2590             c = (t - s) - y;
2591             s = t;
2592             if (++j == pt->n_cols)
2593               break;
2594             assert (j < pt->n_cols);
2595           }
2596       }
2597
2598       calc_r (pt, R, C, &v[6], &t[6], &ase[6]);
2599       t[6] = v[6] / t[6];
2600
2601       free (R);
2602       free (C);
2603
2604       calc_r (pt, (double *) pt->rows, (double *) pt->cols, &v[7], &t[7], &ase[7]);
2605       t[7] = v[7] / t[7];
2606     }
2607
2608   /* Cohen's kappa. */
2609   if (proc->statistics & (1u << CRS_ST_KAPPA) && pt->ns_rows == pt->ns_cols)
2610     {
2611       double sum_fii, sum_rici, sum_fiiri_ci, sum_fijri_ci2, sum_riciri_ci;
2612       int i, j;
2613
2614       for (sum_fii = sum_rici = sum_fiiri_ci = sum_riciri_ci = 0., i = j = 0;
2615            i < pt->ns_rows; i++, j++)
2616         {
2617           double prod, sum;
2618
2619           while (pt->col_tot[j] == 0.)
2620             j++;
2621
2622           prod = pt->row_tot[i] * pt->col_tot[j];
2623           sum = pt->row_tot[i] + pt->col_tot[j];
2624
2625           sum_fii += pt->mat[j + i * pt->n_cols];
2626           sum_rici += prod;
2627           sum_fiiri_ci += pt->mat[j + i * pt->n_cols] * sum;
2628           sum_riciri_ci += prod * sum;
2629         }
2630       for (sum_fijri_ci2 = 0., i = 0; i < pt->ns_rows; i++)
2631         for (j = 0; j < pt->ns_cols; j++)
2632           {
2633             double sum = pt->row_tot[i] + pt->col_tot[j];
2634             sum_fijri_ci2 += pt->mat[j + i * pt->n_cols] * sum * sum;
2635           }
2636
2637       v[8] = (pt->total * sum_fii - sum_rici) / (pow2 (pt->total) - sum_rici);
2638
2639       ase[8] = sqrt ((pow2 (pt->total) * sum_rici
2640                       + sum_rici * sum_rici
2641                       - pt->total * sum_riciri_ci)
2642                      / (pt->total * (pow2 (pt->total) - sum_rici) * (pow2 (pt->total) - sum_rici)));
2643 #if 0
2644       t[8] = v[8] / sqrt (pt->total * (((sum_fii * (pt->total - sum_fii))
2645                                 / pow2 (pow2 (pt->total) - sum_rici))
2646                                + ((2. * (pt->total - sum_fii)
2647                                    * (2. * sum_fii * sum_rici
2648                                       - pt->total * sum_fiiri_ci))
2649                                   / cube (pow2 (pt->total) - sum_rici))
2650                                + (pow2 (pt->total - sum_fii)
2651                                   * (pt->total * sum_fijri_ci2 - 4.
2652                                      * sum_rici * sum_rici)
2653                                   / pow4 (pow2 (pt->total) - sum_rici))));
2654 #else
2655       t[8] = v[8] / ase[8];
2656 #endif
2657     }
2658
2659   return 1;
2660 }
2661
2662 /* Calculate risk estimate. */
2663 static int
2664 calc_risk (struct pivot_table *pt,
2665            double *value, double *upper, double *lower, union value *c)
2666 {
2667   double f11, f12, f21, f22;
2668   double v;
2669
2670   {
2671     int i;
2672
2673     for (i = 0; i < 3; i++)
2674       value[i] = upper[i] = lower[i] = SYSMIS;
2675   }
2676
2677   if (pt->ns_rows != 2 || pt->ns_cols != 2)
2678     return 0;
2679
2680   {
2681     int nz_cols[2];
2682     int i, j;
2683
2684     for (i = j = 0; i < pt->n_cols; i++)
2685       if (pt->col_tot[i] != 0.)
2686         {
2687           nz_cols[j++] = i;
2688           if (j == 2)
2689             break;
2690         }
2691
2692     assert (j == 2);
2693
2694     f11 = pt->mat[nz_cols[0]];
2695     f12 = pt->mat[nz_cols[1]];
2696     f21 = pt->mat[nz_cols[0] + pt->n_cols];
2697     f22 = pt->mat[nz_cols[1] + pt->n_cols];
2698
2699     c[0] = pt->cols[nz_cols[0]];
2700     c[1] = pt->cols[nz_cols[1]];
2701   }
2702
2703   value[0] = (f11 * f22) / (f12 * f21);
2704   v = sqrt (1. / f11 + 1. / f12 + 1. / f21 + 1. / f22);
2705   lower[0] = value[0] * exp (-1.960 * v);
2706   upper[0] = value[0] * exp (1.960 * v);
2707
2708   value[1] = (f11 * (f21 + f22)) / (f21 * (f11 + f12));
2709   v = sqrt ((f12 / (f11 * (f11 + f12)))
2710             + (f22 / (f21 * (f21 + f22))));
2711   lower[1] = value[1] * exp (-1.960 * v);
2712   upper[1] = value[1] * exp (1.960 * v);
2713
2714   value[2] = (f12 * (f21 + f22)) / (f22 * (f11 + f12));
2715   v = sqrt ((f11 / (f12 * (f11 + f12)))
2716             + (f21 / (f22 * (f21 + f22))));
2717   lower[2] = value[2] * exp (-1.960 * v);
2718   upper[2] = value[2] * exp (1.960 * v);
2719
2720   return 1;
2721 }
2722
2723 /* Calculate directional measures. */
2724 static int
2725 calc_directional (struct crosstabs_proc *proc, struct pivot_table *pt,
2726                   double v[N_DIRECTIONAL], double ase[N_DIRECTIONAL],
2727                   double t[N_DIRECTIONAL])
2728 {
2729   {
2730     int i;
2731
2732     for (i = 0; i < N_DIRECTIONAL; i++)
2733       v[i] = ase[i] = t[i] = SYSMIS;
2734   }
2735
2736   /* Lambda. */
2737   if (proc->statistics & (1u << CRS_ST_LAMBDA))
2738     {
2739       double *fim = xnmalloc (pt->n_rows, sizeof *fim);
2740       int *fim_index = xnmalloc (pt->n_rows, sizeof *fim_index);
2741       double *fmj = xnmalloc (pt->n_cols, sizeof *fmj);
2742       int *fmj_index = xnmalloc (pt->n_cols, sizeof *fmj_index);
2743       double sum_fim, sum_fmj;
2744       double rm, cm;
2745       int rm_index, cm_index;
2746       int i, j;
2747
2748       /* Find maximum for each row and their sum. */
2749       for (sum_fim = 0., i = 0; i < pt->n_rows; i++)
2750         {
2751           double max = pt->mat[i * pt->n_cols];
2752           int index = 0;
2753
2754           for (j = 1; j < pt->n_cols; j++)
2755             if (pt->mat[j + i * pt->n_cols] > max)
2756               {
2757                 max = pt->mat[j + i * pt->n_cols];
2758                 index = j;
2759               }
2760
2761           sum_fim += fim[i] = max;
2762           fim_index[i] = index;
2763         }
2764
2765       /* Find maximum for each column. */
2766       for (sum_fmj = 0., j = 0; j < pt->n_cols; j++)
2767         {
2768           double max = pt->mat[j];
2769           int index = 0;
2770
2771           for (i = 1; i < pt->n_rows; i++)
2772             if (pt->mat[j + i * pt->n_cols] > max)
2773               {
2774                 max = pt->mat[j + i * pt->n_cols];
2775                 index = i;
2776               }
2777
2778           sum_fmj += fmj[j] = max;
2779           fmj_index[j] = index;
2780         }
2781
2782       /* Find maximum row total. */
2783       rm = pt->row_tot[0];
2784       rm_index = 0;
2785       for (i = 1; i < pt->n_rows; i++)
2786         if (pt->row_tot[i] > rm)
2787           {
2788             rm = pt->row_tot[i];
2789             rm_index = i;
2790           }
2791
2792       /* Find maximum column total. */
2793       cm = pt->col_tot[0];
2794       cm_index = 0;
2795       for (j = 1; j < pt->n_cols; j++)
2796         if (pt->col_tot[j] > cm)
2797           {
2798             cm = pt->col_tot[j];
2799             cm_index = j;
2800           }
2801
2802       v[0] = (sum_fim + sum_fmj - cm - rm) / (2. * pt->total - rm - cm);
2803       v[1] = (sum_fmj - rm) / (pt->total - rm);
2804       v[2] = (sum_fim - cm) / (pt->total - cm);
2805
2806       /* ASE1 for Y given PT. */
2807       {
2808         double accum;
2809
2810         for (accum = 0., i = 0; i < pt->n_rows; i++)
2811           for (j = 0; j < pt->n_cols; j++)
2812             {
2813               const int deltaj = j == cm_index;
2814               accum += (pt->mat[j + i * pt->n_cols]
2815                         * pow2 ((j == fim_index[i])
2816                                - deltaj
2817                                + v[0] * deltaj));
2818             }
2819
2820         ase[2] = sqrt (accum - pt->total * v[0]) / (pt->total - cm);
2821       }
2822
2823       /* ASE0 for Y given PT. */
2824       {
2825         double accum;
2826
2827         for (accum = 0., i = 0; i < pt->n_rows; i++)
2828           if (cm_index != fim_index[i])
2829             accum += (pt->mat[i * pt->n_cols + fim_index[i]]
2830                       + pt->mat[i * pt->n_cols + cm_index]);
2831         t[2] = v[2] / (sqrt (accum - pow2 (sum_fim - cm) / pt->total) / (pt->total - cm));
2832       }
2833
2834       /* ASE1 for PT given Y. */
2835       {
2836         double accum;
2837
2838         for (accum = 0., i = 0; i < pt->n_rows; i++)
2839           for (j = 0; j < pt->n_cols; j++)
2840             {
2841               const int deltaj = i == rm_index;
2842               accum += (pt->mat[j + i * pt->n_cols]
2843                         * pow2 ((i == fmj_index[j])
2844                                - deltaj
2845                                + v[0] * deltaj));
2846             }
2847
2848         ase[1] = sqrt (accum - pt->total * v[0]) / (pt->total - rm);
2849       }
2850
2851       /* ASE0 for PT given Y. */
2852       {
2853         double accum;
2854
2855         for (accum = 0., j = 0; j < pt->n_cols; j++)
2856           if (rm_index != fmj_index[j])
2857             accum += (pt->mat[j + pt->n_cols * fmj_index[j]]
2858                       + pt->mat[j + pt->n_cols * rm_index]);
2859         t[1] = v[1] / (sqrt (accum - pow2 (sum_fmj - rm) / pt->total) / (pt->total - rm));
2860       }
2861
2862       /* Symmetric ASE0 and ASE1. */
2863       {
2864         double accum0;
2865         double accum1;
2866
2867         for (accum0 = accum1 = 0., i = 0; i < pt->n_rows; i++)
2868           for (j = 0; j < pt->n_cols; j++)
2869             {
2870               int temp0 = (fmj_index[j] == i) + (fim_index[i] == j);
2871               int temp1 = (i == rm_index) + (j == cm_index);
2872               accum0 += pt->mat[j + i * pt->n_cols] * pow2 (temp0 - temp1);
2873               accum1 += (pt->mat[j + i * pt->n_cols]
2874                          * pow2 (temp0 + (v[0] - 1.) * temp1));
2875             }
2876         ase[0] = sqrt (accum1 - 4. * pt->total * v[0] * v[0]) / (2. * pt->total - rm - cm);
2877         t[0] = v[0] / (sqrt (accum0 - pow2 ((sum_fim + sum_fmj - cm - rm) / pt->total))
2878                        / (2. * pt->total - rm - cm));
2879       }
2880
2881       free (fim);
2882       free (fim_index);
2883       free (fmj);
2884       free (fmj_index);
2885
2886       {
2887         double sum_fij2_ri, sum_fij2_ci;
2888         double sum_ri2, sum_cj2;
2889
2890         for (sum_fij2_ri = sum_fij2_ci = 0., i = 0; i < pt->n_rows; i++)
2891           for (j = 0; j < pt->n_cols; j++)
2892             {
2893               double temp = pow2 (pt->mat[j + i * pt->n_cols]);
2894               sum_fij2_ri += temp / pt->row_tot[i];
2895               sum_fij2_ci += temp / pt->col_tot[j];
2896             }
2897
2898         for (sum_ri2 = 0., i = 0; i < pt->n_rows; i++)
2899           sum_ri2 += pow2 (pt->row_tot[i]);
2900
2901         for (sum_cj2 = 0., j = 0; j < pt->n_cols; j++)
2902           sum_cj2 += pow2 (pt->col_tot[j]);
2903
2904         v[3] = (pt->total * sum_fij2_ci - sum_ri2) / (pow2 (pt->total) - sum_ri2);
2905         v[4] = (pt->total * sum_fij2_ri - sum_cj2) / (pow2 (pt->total) - sum_cj2);
2906       }
2907     }
2908
2909   if (proc->statistics & (1u << CRS_ST_UC))
2910     {
2911       double UX, UY, UXY, P;
2912       double ase1_yx, ase1_xy, ase1_sym;
2913       int i, j;
2914
2915       for (UX = 0., i = 0; i < pt->n_rows; i++)
2916         if (pt->row_tot[i] > 0.)
2917           UX -= pt->row_tot[i] / pt->total * log (pt->row_tot[i] / pt->total);
2918
2919       for (UY = 0., j = 0; j < pt->n_cols; j++)
2920         if (pt->col_tot[j] > 0.)
2921           UY -= pt->col_tot[j] / pt->total * log (pt->col_tot[j] / pt->total);
2922
2923       for (UXY = P = 0., i = 0; i < pt->n_rows; i++)
2924         for (j = 0; j < pt->n_cols; j++)
2925           {
2926             double entry = pt->mat[j + i * pt->n_cols];
2927
2928             if (entry <= 0.)
2929               continue;
2930
2931             P += entry * pow2 (log (pt->col_tot[j] * pt->row_tot[i] / (pt->total * entry)));
2932             UXY -= entry / pt->total * log (entry / pt->total);
2933           }
2934
2935       for (ase1_yx = ase1_xy = ase1_sym = 0., i = 0; i < pt->n_rows; i++)
2936         for (j = 0; j < pt->n_cols; j++)
2937           {
2938             double entry = pt->mat[j + i * pt->n_cols];
2939
2940             if (entry <= 0.)
2941               continue;
2942
2943             ase1_yx += entry * pow2 (UY * log (entry / pt->row_tot[i])
2944                                     + (UX - UXY) * log (pt->col_tot[j] / pt->total));
2945             ase1_xy += entry * pow2 (UX * log (entry / pt->col_tot[j])
2946                                     + (UY - UXY) * log (pt->row_tot[i] / pt->total));
2947             ase1_sym += entry * pow2 ((UXY
2948                                       * log (pt->row_tot[i] * pt->col_tot[j] / pow2 (pt->total)))
2949                                      - (UX + UY) * log (entry / pt->total));
2950           }
2951
2952       v[5] = 2. * ((UX + UY - UXY) / (UX + UY));
2953       ase[5] = (2. / (pt->total * pow2 (UX + UY))) * sqrt (ase1_sym);
2954       t[5] = v[5] / ((2. / (pt->total * (UX + UY)))
2955                      * sqrt (P - pow2 (UX + UY - UXY) / pt->total));
2956
2957       v[6] = (UX + UY - UXY) / UX;
2958       ase[6] = sqrt (ase1_xy) / (pt->total * UX * UX);
2959       t[6] = v[6] / (sqrt (P - pt->total * pow2 (UX + UY - UXY)) / (pt->total * UX));
2960
2961       v[7] = (UX + UY - UXY) / UY;
2962       ase[7] = sqrt (ase1_yx) / (pt->total * UY * UY);
2963       t[7] = v[7] / (sqrt (P - pt->total * pow2 (UX + UY - UXY)) / (pt->total * UY));
2964     }
2965
2966   /* Somers' D. */
2967   if (proc->statistics & (1u << CRS_ST_D))
2968     {
2969       double v_dummy[N_SYMMETRIC];
2970       double ase_dummy[N_SYMMETRIC];
2971       double t_dummy[N_SYMMETRIC];
2972       double somers_d_v[3];
2973       double somers_d_ase[3];
2974       double somers_d_t[3];
2975
2976       if (calc_symmetric (proc, pt, v_dummy, ase_dummy, t_dummy,
2977                           somers_d_v, somers_d_ase, somers_d_t))
2978         {
2979           int i;
2980           for (i = 0; i < 3; i++)
2981             {
2982               v[8 + i] = somers_d_v[i];
2983               ase[8 + i] = somers_d_ase[i];
2984               t[8 + i] = somers_d_t[i];
2985             }
2986         }
2987     }
2988
2989   /* Eta. */
2990   if (proc->statistics & (1u << CRS_ST_ETA))
2991     {
2992       {
2993         double sum_Xr, sum_X2r;
2994         double SX, SXW;
2995         int i, j;
2996
2997         for (sum_Xr = sum_X2r = 0., i = 0; i < pt->n_rows; i++)
2998           {
2999             sum_Xr += pt->rows[i].f * pt->row_tot[i];
3000             sum_X2r += pow2 (pt->rows[i].f) * pt->row_tot[i];
3001           }
3002         SX = sum_X2r - pow2 (sum_Xr) / pt->total;
3003
3004         for (SXW = 0., j = 0; j < pt->n_cols; j++)
3005           {
3006             double cum;
3007
3008             for (cum = 0., i = 0; i < pt->n_rows; i++)
3009               {
3010                 SXW += pow2 (pt->rows[i].f) * pt->mat[j + i * pt->n_cols];
3011                 cum += pt->rows[i].f * pt->mat[j + i * pt->n_cols];
3012               }
3013
3014             SXW -= cum * cum / pt->col_tot[j];
3015           }
3016         v[11] = sqrt (1. - SXW / SX);
3017       }
3018
3019       {
3020         double sum_Yc, sum_Y2c;
3021         double SY, SYW;
3022         int i, j;
3023
3024         for (sum_Yc = sum_Y2c = 0., i = 0; i < pt->n_cols; i++)
3025           {
3026             sum_Yc += pt->cols[i].f * pt->col_tot[i];
3027             sum_Y2c += pow2 (pt->cols[i].f) * pt->col_tot[i];
3028           }
3029         SY = sum_Y2c - sum_Yc * sum_Yc / pt->total;
3030
3031         for (SYW = 0., i = 0; i < pt->n_rows; i++)
3032           {
3033             double cum;
3034
3035             for (cum = 0., j = 0; j < pt->n_cols; j++)
3036               {
3037                 SYW += pow2 (pt->cols[j].f) * pt->mat[j + i * pt->n_cols];
3038                 cum += pt->cols[j].f * pt->mat[j + i * pt->n_cols];
3039               }
3040
3041             SYW -= cum * cum / pt->row_tot[i];
3042           }
3043         v[12] = sqrt (1. - SYW / SY);
3044       }
3045     }
3046
3047   return 1;
3048 }
3049
3050 /*
3051    Local Variables:
3052    mode: c
3053    End:
3054 */