FREQUENCIES: Fix the default /STATISTICS.
[pspp] / src / language / stats / frequencies.c
1 /*
2   PSPP - a program for statistical analysis.
3   Copyright (C) 1997-9, 2000, 2007, 2009, 2010, 2011, 2014 Free Software Foundation, Inc.
4    
5   This program is free software: you can redistribute it and/or modify
6   it under the terms of the GNU General Public License as published by
7   the Free Software Foundation, either version 3 of the License, or
8   (at your option) any later version.
9
10   This program is distributed in the hope that it will be useful,
11   but WITHOUT ANY WARRANTY; without even the implied warranty of
12   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13   GNU General Public License for more details.
14   
15   You should have received a copy of the GNU General Public License
16   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 */
18
19 #include <config.h>
20 #include <stdlib.h>
21 #include <gsl/gsl_histogram.h>
22
23
24 #include "data/case.h"
25 #include "data/casegrouper.h"
26 #include "data/casereader.h"
27 #include "data/dataset.h"
28 #include "data/dictionary.h"
29 #include "data/format.h"
30 #include "data/missing-values.h"
31 #include "data/settings.h"
32 #include "data/value-labels.h"
33 #include "data/variable.h"
34
35 #include "language/dictionary/split-file.h"
36
37 #include "language/command.h"
38 #include "language/lexer/lexer.h"
39 #include "language/lexer/variable-parser.h"
40 #include "language/stats/freq.h"
41
42 #include "libpspp/array.h"
43 #include "libpspp/bit-vector.h"
44 #include "libpspp/compiler.h"
45 #include "libpspp/hmap.h"
46 #include "libpspp/message.h"
47 #include "libpspp/misc.h"
48 #include "libpspp/pool.h"
49
50 #include "math/histogram.h"
51 #include "math/moments.h"
52 #include "math/chart-geometry.h"
53
54
55 #include "output/chart-item.h"
56 #include "output/charts/piechart.h"
57 #include "output/charts/plot-hist.h"
58 #include "output/tab.h"
59
60 #include "gl/minmax.h"
61 #include "gl/xalloc.h"
62
63 #include "gettext.h"
64 #define _(msgid) gettext (msgid)
65 #define N_(msgid) msgid
66
67 /* Percentiles to calculate. */
68
69 struct percentile
70 {
71   double p;        /* the %ile to be calculated */
72   double value;    /* the %ile's value */
73   bool show;       /* True to show this percentile in the statistics box. */
74 };
75
76 static int
77 ptile_3way (const void *_p1, const void *_p2)
78 {
79   const struct percentile *p1 = _p1;
80   const struct percentile *p2 = _p2;
81
82   if (p1->p < p2->p)
83     return -1;
84
85   return (p1->p > p2->p);
86 }
87
88
89 enum
90   {
91     FRQ_NONORMAL,
92     FRQ_NORMAL
93   };
94
95 enum
96   {
97     FRQ_FREQ,
98     FRQ_PERCENT
99   };
100
101 enum sortprops 
102   {
103     FRQ_AFREQ,
104     FRQ_DFREQ,
105     FRQ_AVALUE,
106     FRQ_DVALUE
107   };
108
109 /* Array indices for STATISTICS subcommand. */
110 enum
111   {
112     FRQ_ST_MEAN,
113     FRQ_ST_SEMEAN,
114     FRQ_ST_MEDIAN,
115     FRQ_ST_MODE,
116     FRQ_ST_STDDEV,
117     FRQ_ST_VARIANCE,
118     FRQ_ST_KURTOSIS,
119     FRQ_ST_SEKURTOSIS,
120     FRQ_ST_SKEWNESS,
121     FRQ_ST_SESKEWNESS,
122     FRQ_ST_RANGE,
123     FRQ_ST_MINIMUM,
124     FRQ_ST_MAXIMUM,
125     FRQ_ST_SUM,
126     FRQ_ST_count
127   };
128
129 /* Description of statistics. */
130 static const char *st_name[FRQ_ST_count] =
131 {
132    N_("Mean"),
133    N_("S.E. Mean"),
134    N_("Median"),
135    N_("Mode"),
136    N_("Std Dev"),
137    N_("Variance"),
138    N_("Kurtosis"),
139    N_("S.E. Kurt"),
140    N_("Skewness"),
141    N_("S.E. Skew"),
142    N_("Range"),
143    N_("Minimum"),
144    N_("Maximum"),
145    N_("Sum")
146 };
147
148 struct freq_tab
149   {
150     struct hmap data;           /* Hash table for accumulating counts. */
151     struct freq *valid;         /* Valid freqs. */
152     int n_valid;                /* Number of total freqs. */
153     const struct dictionary *dict; /* Source of entries in the table. */
154
155     struct freq *missing;       /* Missing freqs. */
156     int n_missing;              /* Number of missing freqs. */
157
158     /* Statistics. */
159     double total_cases;         /* Sum of weights of all cases. */
160     double valid_cases;         /* Sum of weights of valid cases. */
161   };
162
163 struct frq_chart
164   {
165     double x_min;               /* X axis minimum value. */
166     double x_max;               /* X axis maximum value. */
167     int y_scale;                /* Y axis scale: FRQ_FREQ or FRQ_PERCENT. */
168
169     /* Histograms only. */
170     double y_max;               /* Y axis maximum value. */
171     bool draw_normal;           /* Whether to draw normal curve. */
172
173     /* Pie charts only. */
174     bool include_missing;       /* Whether to include missing values. */
175   };
176
177 /* Per-variable frequency data. */
178 struct var_freqs
179   {
180     const struct variable *var;
181
182     /* Freqency table. */
183     struct freq_tab tab;        /* Frequencies table to use. */
184
185     /* Percentiles. */
186     int n_groups;               /* Number of groups. */
187     double *groups;             /* Groups. */
188
189     /* Statistics. */
190     double stat[FRQ_ST_count];
191
192     /* Variable attributes. */
193     int width;
194   };
195
196 struct frq_proc
197   {
198     struct pool *pool;
199
200     struct var_freqs *vars;
201     size_t n_vars;
202
203     /* Percentiles to calculate and possibly display. */
204     struct percentile *percentiles;
205     int n_percentiles, n_show_percentiles;
206
207     /* Frequency table display. */
208     int max_categories;         /* Maximum categories to show. */
209     int sort;                   /* FRQ_AVALUE or FRQ_DVALUE
210                                    or FRQ_AFREQ or FRQ_DFREQ. */
211
212     /* Statistics; number of statistics. */
213     unsigned long stats;
214     int n_stats;
215
216     /* Histogram and pie chart settings. */
217     struct frq_chart *hist, *pie;
218   };
219
220
221 struct freq_compare_aux
222   {
223     bool by_freq;
224     bool ascending_freq;
225
226     int width;
227     bool ascending_value;
228   };
229
230 static void calc_stats (const struct var_freqs *vf, double d[FRQ_ST_count]);
231
232 static void do_piechart(const struct frq_chart *pie, 
233                         const struct variable *var,
234                         const struct freq_tab *frq_tab);
235
236 static void dump_statistics (const struct frq_proc *frq, 
237                              const struct var_freqs *vf,
238                              const struct variable *wv);
239
240 static int
241 compare_freq (const void *a_, const void *b_, const void *aux_)
242 {
243   const struct freq_compare_aux *aux = aux_;
244   const struct freq *a = a_;
245   const struct freq *b = b_;
246
247   if (aux->by_freq && a->count != b->count)
248     {
249       int cmp = a->count > b->count ? 1 : -1;
250       return aux->ascending_freq ? cmp : -cmp;
251     }
252   else
253     {
254       int cmp = value_compare_3way (&a->value, &b->value, aux->width);
255       return aux->ascending_value ? cmp : -cmp;
256     }
257 }
258
259 /* Create a gsl_histogram from a freq_tab */
260 static struct histogram *
261 freq_tab_to_hist (const struct frq_proc *frq, const struct freq_tab *ft,
262                   const struct variable *var);
263
264
265 /* Displays a full frequency table for variable V. */
266 static void
267 dump_freq_table (const struct var_freqs *vf, const struct variable *wv)
268 {
269   const struct fmt_spec *wfmt = wv ? var_get_print_format (wv) : &F_8_0;
270   const struct freq_tab *ft = &vf->tab;
271   int n_categories;
272   struct freq *f;
273   struct tab_table *t;
274   int r, x;
275   double cum_total = 0.0;
276   double cum_freq = 0.0;
277
278   static const char *headings[] = {
279     N_("Value Label"),
280     N_("Value"),
281     N_("Frequency"),
282     N_("Percent"),
283     N_("Valid Percent"),
284     N_("Cum Percent")
285   };
286
287   n_categories = ft->n_valid + ft->n_missing;
288   t = tab_create (6, n_categories + 2);
289   tab_set_format (t, RC_WEIGHT, wfmt);
290   tab_headers (t, 0, 0, 1, 0);
291
292   for (x = 0; x < 6; x++)
293     tab_text (t, x, 0, TAB_CENTER | TAT_TITLE, gettext (headings[x]));
294
295   r = 1;
296   for (f = ft->valid; f < ft->missing; f++)
297     {
298       const char *label;
299       double percent, valid_percent;
300
301       cum_freq += f->count;
302
303       percent = f->count / ft->total_cases * 100.0;
304       valid_percent = f->count / ft->valid_cases * 100.0;
305       cum_total += valid_percent;
306
307       label = var_lookup_value_label (vf->var, &f->value);
308       if (label != NULL)
309         tab_text (t, 0, r, TAB_LEFT, label);
310
311       tab_value (t, 1, r, TAB_NONE, &f->value, vf->var, NULL);
312       tab_double (t, 2, r, TAB_NONE, f->count, NULL, RC_WEIGHT);
313       tab_double (t, 3, r, TAB_NONE, percent, NULL, RC_OTHER);
314       tab_double (t, 4, r, TAB_NONE, valid_percent, NULL, RC_OTHER);
315       tab_double (t, 5, r, TAB_NONE, cum_total, NULL, RC_OTHER);
316       r++;
317     }
318   for (; f < &ft->valid[n_categories]; f++)
319     {
320       const char *label;
321
322       cum_freq += f->count;
323
324       label = var_lookup_value_label (vf->var, &f->value);
325       if (label != NULL)
326         tab_text (t, 0, r, TAB_LEFT, label);
327
328       tab_value (t, 1, r, TAB_NONE, &f->value, vf->var, NULL);
329       tab_double (t, 2, r, TAB_NONE, f->count, NULL, RC_WEIGHT);
330       tab_double (t, 3, r, TAB_NONE,
331                   f->count / ft->total_cases * 100.0, NULL, RC_OTHER);
332       tab_text (t, 4, r, TAB_NONE, _("Missing"));
333       r++;
334     }
335
336   tab_box (t, TAL_1, TAL_1, -1, TAL_1, 0, 0, 5, r);
337   tab_hline (t, TAL_2, 0, 5, 1);
338   tab_hline (t, TAL_2, 0, 5, r);
339   tab_joint_text (t, 0, r, 1, r, TAB_RIGHT | TAT_TITLE, _("Total"));
340   tab_vline (t, TAL_0, 1, r, r);
341   tab_double (t, 2, r, TAB_NONE, cum_freq, NULL, RC_WEIGHT);
342   tab_double (t, 3, r, TAB_NONE, 100.0, &F_5_1, RC_OTHER);
343   tab_double (t, 4, r, TAB_NONE, 100.0, &F_5_1, RC_OTHER);
344
345   tab_title (t, "%s", var_to_string (vf->var));
346   tab_submit (t);
347 }
348 \f
349 /* Statistical display. */
350
351 static double
352 calc_percentile (double p, double valid_cases, double x1, double x2)
353 {
354   double s, dummy;
355
356   s = (settings_get_algorithm () != COMPATIBLE
357        ? modf ((valid_cases - 1) * p, &dummy)
358        : modf ((valid_cases + 1) * p - 1, &dummy));
359
360   return x1 + (x2 - x1) * s;
361 }
362
363 /* Calculates all of the percentiles for VF within FRQ. */
364 static void
365 calc_percentiles (const struct frq_proc *frq, const struct var_freqs *vf)
366 {
367   const struct freq_tab *ft = &vf->tab;
368   double W = ft->valid_cases;
369   const struct freq *f;
370   int percentile_idx;
371   double rank;
372
373   assert (ft->n_valid > 0);
374
375   rank = 0;
376   percentile_idx = 0;
377   for (f = ft->valid; f < ft->missing; f++)
378     {
379       rank += f->count;
380       for (; percentile_idx < frq->n_percentiles; percentile_idx++)
381         {
382           struct percentile *pc = &frq->percentiles[percentile_idx];
383           double tp;
384
385           tp = (settings_get_algorithm () == ENHANCED
386                 ? (W - 1) * pc->p
387                 : (W + 1) * pc->p - 1);
388
389           if (rank <= tp)
390             break;
391
392           if (tp + 1 < rank || f + 1 >= ft->missing)
393             pc->value = f->value.f;
394           else
395             pc->value = calc_percentile (pc->p, W, f->value.f, f[1].value.f);
396         }
397     }
398   for (; percentile_idx < frq->n_percentiles; percentile_idx++)
399     {
400       struct percentile *pc = &frq->percentiles[percentile_idx];
401       pc->value = ft->valid[ft->n_valid - 1].value.f;
402     }
403 }
404
405 /* Returns true iff the value in struct freq F is non-missing
406    for variable V. */
407 static bool
408 not_missing (const void *f_, const void *v_)
409 {
410   const struct freq *f = f_;
411   const struct variable *v = v_;
412
413   return !var_is_value_missing (v, &f->value, MV_ANY);
414 }
415
416
417 /* Summarizes the frequency table data for variable V. */
418 static void
419 postprocess_freq_tab (const struct frq_proc *frq, struct var_freqs *vf)
420 {
421   struct freq_tab *ft = &vf->tab;
422   struct freq_compare_aux aux;
423   size_t count;
424   struct freq *freqs, *f;
425   size_t i;
426
427   /* Extract data from hash table. */
428   count = hmap_count (&ft->data);
429   freqs = freq_hmap_extract (&ft->data);
430
431   /* Put data into ft. */
432   ft->valid = freqs;
433   ft->n_valid = partition (freqs, count, sizeof *freqs, not_missing, vf->var);
434   ft->missing = freqs + ft->n_valid;
435   ft->n_missing = count - ft->n_valid;
436
437   /* Sort data. */
438   aux.by_freq = frq->sort == FRQ_AFREQ || frq->sort == FRQ_DFREQ;
439   aux.ascending_freq = frq->sort != FRQ_DFREQ;
440   aux.width = vf->width;
441   aux.ascending_value = frq->sort != FRQ_DVALUE;
442   sort (ft->valid, ft->n_valid, sizeof *ft->valid, compare_freq, &aux);
443   sort (ft->missing, ft->n_missing, sizeof *ft->missing, compare_freq, &aux);
444
445   /* Summary statistics. */
446   ft->valid_cases = 0.0;
447   for(i = 0 ;  i < ft->n_valid ; ++i )
448     {
449       f = &ft->valid[i];
450       ft->valid_cases += f->count;
451
452     }
453
454   ft->total_cases = ft->valid_cases ;
455   for(i = 0 ;  i < ft->n_missing ; ++i )
456     {
457       f = &ft->missing[i];
458       ft->total_cases += f->count;
459     }
460
461 }
462
463 /* Frees the frequency table for variable V. */
464 static void
465 cleanup_freq_tab (struct var_freqs *vf)
466 {
467   free (vf->tab.valid);
468   freq_hmap_destroy (&vf->tab.data, vf->width);
469 }
470
471 /* Add data from case C to the frequency table. */
472 static void
473 calc (struct frq_proc *frq, const struct ccase *c, const struct dataset *ds)
474 {
475   double weight = dict_get_case_weight (dataset_dict (ds), c, NULL);
476   size_t i;
477
478   for (i = 0; i < frq->n_vars; i++)
479     {
480       struct var_freqs *vf = &frq->vars[i];
481       const union value *value = case_data (c, vf->var);
482       size_t hash = value_hash (value, vf->width, 0);
483       struct freq *f;
484
485       f = freq_hmap_search (&vf->tab.data, value, vf->width, hash);
486       if (f == NULL)
487         f = freq_hmap_insert (&vf->tab.data, value, vf->width, hash);
488
489       f->count += weight;
490     }
491 }
492
493 /* Prepares each variable that is the target of FREQUENCIES by setting
494    up its hash table. */
495 static void
496 precalc (struct frq_proc *frq, struct casereader *input, struct dataset *ds)
497 {
498   struct ccase *c;
499   size_t i;
500
501   c = casereader_peek (input, 0);
502   if (c != NULL)
503     {
504       output_split_file_values (ds, c);
505       case_unref (c);
506     }
507
508   for (i = 0; i < frq->n_vars; i++)
509     hmap_init (&frq->vars[i].tab.data);
510 }
511
512 /* Finishes up with the variables after frequencies have been
513    calculated.  Displays statistics, percentiles, ... */
514 static void
515 postcalc (struct frq_proc *frq, const struct dataset *ds)
516 {
517   const struct dictionary *dict = dataset_dict (ds);
518   const struct variable *wv = dict_get_weight (dict);
519   size_t i;
520
521   for (i = 0; i < frq->n_vars; i++)
522     {
523       struct var_freqs *vf = &frq->vars[i];
524
525       postprocess_freq_tab (frq, vf);
526
527       /* Frequencies tables. */
528       if (vf->tab.n_valid + vf->tab.n_missing <= frq->max_categories)
529         dump_freq_table (vf, wv);
530
531       calc_percentiles (frq, vf);
532
533       /* Statistics. */
534       if (frq->n_stats)
535         dump_statistics (frq, vf, wv);
536
537       if (frq->hist && var_is_numeric (vf->var) && vf->tab.n_valid > 0)
538         {
539           double d[FRQ_ST_count];
540           struct histogram *histogram;
541
542           calc_stats (vf, d);
543
544           histogram = freq_tab_to_hist (frq, &vf->tab, vf->var);
545
546           if ( histogram)
547             {
548               chart_item_submit (histogram_chart_create (
549                                histogram->gsl_hist, var_to_string(vf->var),
550                                vf->tab.valid_cases,
551                                d[FRQ_ST_MEAN],
552                                d[FRQ_ST_STDDEV],
553                                frq->hist->draw_normal));
554
555               statistic_destroy (&histogram->parent);
556             }
557         }
558
559       if (frq->pie)
560         do_piechart(frq->pie, vf->var, &vf->tab);
561
562       cleanup_freq_tab (vf);
563     }
564 }
565
566 int
567 cmd_frequencies (struct lexer *lexer, struct dataset *ds)
568 {
569   int i;
570   struct frq_proc frq;
571   const struct variable **vars;
572
573   bool sbc_barchart = false;
574   bool sbc_piechart = false;
575   bool sbc_histogram = false;
576
577   double pie_min = -DBL_MAX;
578   double pie_max = DBL_MAX;
579   bool pie_missing = false;
580
581   double hi_min = -DBL_MAX;
582   double hi_max = DBL_MAX;
583   int hi_scale = FRQ_FREQ;
584   int hi_freq = INT_MIN;
585   int hi_pcnt = INT_MIN;
586   int hi_norm = FRQ_NONORMAL;
587
588   frq.pool = pool_create ();
589   frq.sort = FRQ_AVALUE;
590
591   frq.vars = NULL;
592   frq.n_vars = 0;
593   
594   frq.stats = BIT_INDEX (FRQ_ST_MEAN) 
595     | BIT_INDEX (FRQ_ST_STDDEV) 
596     | BIT_INDEX (FRQ_ST_MINIMUM)
597     | BIT_INDEX (FRQ_ST_MAXIMUM);
598
599   frq.n_stats = 4;
600
601   frq.max_categories = INT_MAX;
602
603   frq.percentiles = NULL;
604   frq.n_percentiles = 0;
605   frq.n_show_percentiles = 0;
606
607   frq.hist = NULL;
608   frq.pie = NULL;
609
610
611   /* Accept an optional, completely pointless "/VARIABLES=" */
612   lex_match (lexer, T_SLASH);
613   if (lex_match_id  (lexer, "VARIABLES"))
614     {
615       if (! lex_force_match (lexer, T_EQUALS) )
616         goto error;
617     }
618
619   if (!parse_variables_const (lexer, dataset_dict (ds),
620                               &vars,
621                               &frq.n_vars,
622                               PV_NO_DUPLICATE))
623     goto error;
624
625   frq.vars = xzalloc (frq.n_vars * sizeof (*frq.vars));
626   for (i = 0; i < frq.n_vars; ++i)
627     {
628       frq.vars[i].var = vars[i];
629       frq.vars[i].width = var_get_width (vars[i]);
630     }
631
632   while (lex_token (lexer) != T_ENDCMD)
633     {
634       lex_match (lexer, T_SLASH);
635
636       if (lex_match_id (lexer, "STATISTICS"))
637         {
638           frq.stats = BIT_INDEX (FRQ_ST_MEAN) 
639             | BIT_INDEX (FRQ_ST_STDDEV) 
640             | BIT_INDEX (FRQ_ST_MINIMUM)
641             | BIT_INDEX (FRQ_ST_MAXIMUM);
642           
643           frq.n_stats = 4;
644
645           if (lex_match (lexer, T_EQUALS))
646             {
647               frq.n_stats = 0;
648               frq.stats = 0;
649             }
650
651           while (lex_token (lexer) != T_ENDCMD
652                  && lex_token (lexer) != T_SLASH)
653             {
654               if (lex_match_id (lexer, "DEFAULT"))
655                 {
656                   frq.stats = BIT_INDEX (FRQ_ST_MEAN) 
657                     | BIT_INDEX (FRQ_ST_STDDEV) 
658                     | BIT_INDEX (FRQ_ST_MINIMUM)
659                     | BIT_INDEX (FRQ_ST_MAXIMUM);
660
661                   frq.n_stats = 4;
662                 }
663               else if (lex_match_id (lexer, "MEAN"))
664                 {
665                   frq.stats |= BIT_INDEX (FRQ_ST_MEAN);
666                   frq.n_stats++;
667                 }
668               else if (lex_match_id (lexer, "SEMEAN"))
669                 {
670                   frq.stats |= BIT_INDEX (FRQ_ST_SEMEAN);
671                   frq.n_stats++;
672                 }
673               else if (lex_match_id (lexer, "MEDIAN"))
674                 {
675                   frq.stats |= BIT_INDEX (FRQ_ST_MEDIAN);
676                   frq.n_stats++;
677                 }
678               else if (lex_match_id (lexer, "MODE"))
679                 {
680                   frq.stats |= BIT_INDEX (FRQ_ST_MODE);
681                   frq.n_stats++;
682                 }
683               else if (lex_match_id (lexer, "STDDEV"))
684                 {
685                   frq.stats |= BIT_INDEX (FRQ_ST_STDDEV);
686                   frq.n_stats++;
687                 }
688               else if (lex_match_id (lexer, "VARIANCE"))
689                 {
690                   frq.stats |= BIT_INDEX (FRQ_ST_MEAN);
691                   frq.n_stats++;
692                 }
693               else if (lex_match_id (lexer, "KURTOSIS"))
694                 {
695                   frq.stats |= BIT_INDEX (FRQ_ST_KURTOSIS);
696                   frq.n_stats++;
697                 }
698               else if (lex_match_id (lexer, "SKEWNESS"))
699                 {
700                   frq.stats |= BIT_INDEX (FRQ_ST_SKEWNESS);
701                   frq.n_stats++;
702                 }
703               else if (lex_match_id (lexer, "RANGE"))
704                 {
705                   frq.stats |= BIT_INDEX (FRQ_ST_RANGE);
706                   frq.n_stats++;
707                 }
708               else if (lex_match_id (lexer, "MINIMUM"))
709                 {
710                   frq.stats |= BIT_INDEX (FRQ_ST_MINIMUM);
711                   frq.n_stats++;
712                 }
713               else if (lex_match_id (lexer, "MAXIMUM"))
714                 {
715                   frq.stats |= BIT_INDEX (FRQ_ST_MAXIMUM);
716                   frq.n_stats++;
717                 }
718               else if (lex_match_id (lexer, "SUM"))
719                 {
720                   frq.stats |= BIT_INDEX (FRQ_ST_SUM);
721                   frq.n_stats++;
722                 }
723               else if (lex_match_id (lexer, "SESKEWNESS"))
724                 {
725                   frq.stats |= BIT_INDEX (FRQ_ST_SESKEWNESS);
726                   frq.n_stats++;
727                 }
728               else if (lex_match_id (lexer, "SEKURTOSIS"))
729                 {
730                   frq.stats |= BIT_INDEX (FRQ_ST_SEKURTOSIS);
731                   frq.n_stats++;
732                 }
733               else if (lex_match_id (lexer, "NONE"))
734                 {
735                   frq.stats = 0;
736                   frq.n_stats = 0;
737                 }
738               else if (lex_match (lexer, T_ALL))
739                 {
740                   frq.stats = ~0;
741                   frq.n_stats = FRQ_ST_count;
742                 }
743               else
744                 {
745                   lex_error (lexer, NULL);
746                   goto error;
747                 }
748             }
749         }
750       else if (lex_match_id (lexer, "PERCENTILES"))
751         {
752           lex_match (lexer, T_EQUALS);
753           while (lex_token (lexer) != T_ENDCMD
754                  && lex_token (lexer) != T_SLASH)
755             {
756               if (lex_force_num (lexer))
757                 {
758                   frq.percentiles =
759                     xrealloc (frq.percentiles, 
760                               (frq.n_percentiles + 1)
761                               * sizeof (*frq.percentiles));
762                   frq.percentiles[frq.n_percentiles].p = lex_number (lexer)  / 100.0;
763                   frq.percentiles[frq.n_percentiles].show = true;
764                   lex_get (lexer);
765                   frq.n_percentiles++;
766                   frq.n_show_percentiles++;
767                 }
768               else
769                 {
770                   lex_error (lexer, NULL);
771                   goto error;
772                 }
773             }
774         }
775       else if (lex_match_id (lexer, "FORMAT"))
776         {
777           lex_match (lexer, T_EQUALS);
778           while (lex_token (lexer) != T_ENDCMD
779                  && lex_token (lexer) != T_SLASH)
780             {
781               if (lex_match_id (lexer, "TABLE"))
782                 {
783                   
784                 }
785               else if (lex_match_id (lexer, "NOTABLE"))
786                 {
787                   frq.max_categories = 0;
788                 }
789               else if (lex_match_id (lexer, "AVALUE"))
790                 {
791                   frq.sort = FRQ_AVALUE;
792                 }
793               else if (lex_match_id (lexer, "DVALUE"))
794                 {
795                   frq.sort = FRQ_DVALUE;
796                 }
797               else if (lex_match_id (lexer, "AFREQ"))
798                 {
799                   frq.sort = FRQ_AFREQ;
800                 }
801               else if (lex_match_id (lexer, "DFREQ"))
802                 {
803                   frq.sort = FRQ_DFREQ;
804                 }
805               else
806                 {
807                   lex_error (lexer, NULL);
808                   goto error;
809                 }
810             }
811         }
812       else if (lex_match_id (lexer, "NTILES"))
813         {
814           lex_match (lexer, T_EQUALS);
815
816           if (lex_force_int (lexer))
817             {
818               int i;
819               int n = lex_integer (lexer);
820               lex_get (lexer);
821               for (i = 0; i < n + 1; ++i)
822                 {
823                   frq.percentiles =
824                     xrealloc (frq.percentiles, 
825                               (frq.n_percentiles + 1)
826                               * sizeof (*frq.percentiles));
827                   frq.percentiles[frq.n_percentiles].p =
828                     i / (double) n ;
829                   frq.percentiles[frq.n_percentiles].show = true;
830
831                   frq.n_percentiles++;
832                   frq.n_show_percentiles++;
833                 }
834             }
835           else
836             {
837               lex_error (lexer, NULL);
838               goto error;
839             }
840         }
841       else if (lex_match_id (lexer, "ALGORITHM"))
842         {
843           lex_match (lexer, T_EQUALS);
844
845           if (lex_match_id (lexer, "COMPATIBLE"))
846             {
847               settings_set_cmd_algorithm (COMPATIBLE);
848             }
849           else if (lex_match_id (lexer, "ENHANCED"))
850             {
851               settings_set_cmd_algorithm (ENHANCED);
852             }
853           else
854             {
855               lex_error (lexer, NULL);
856               goto error;
857             }
858         }
859       else if (lex_match_id (lexer, "HISTOGRAM"))
860         {
861           lex_match (lexer, T_EQUALS);
862           sbc_histogram = true;
863
864           while (lex_token (lexer) != T_ENDCMD
865                  && lex_token (lexer) != T_SLASH)
866             {
867               if (lex_match_id (lexer, "NORMAL"))
868                 {
869                   hi_norm = FRQ_NORMAL;
870                 }
871               else if (lex_match_id (lexer, "NONORMAL"))
872                 {
873                   hi_norm = FRQ_NONORMAL;
874                 }
875               else if (lex_match_id (lexer, "FREQ"))
876                 {
877                   hi_scale = FRQ_FREQ;
878                   if (lex_match (lexer, T_LPAREN))
879                     {
880                       if (lex_force_int (lexer))
881                         {
882                           hi_freq = lex_integer (lexer);
883                           if (hi_freq <= 0)
884                             {
885                               lex_error (lexer, _("Histogram frequency must be greater than zero."));
886                             }
887                           lex_get (lexer);
888                           lex_force_match (lexer, T_RPAREN);
889                         }
890                     }
891                 }
892               else if (lex_match_id (lexer, "PERCENT"))
893                 {
894                   hi_scale = FRQ_PERCENT;
895                   if (lex_match (lexer, T_LPAREN))
896                     {
897                       if (lex_force_int (lexer))
898                         {
899                           hi_pcnt = lex_integer (lexer);
900                           if (hi_pcnt <= 0)
901                             {
902                               lex_error (lexer, _("Histogram percentage must be greater than zero."));
903                             }
904                           lex_get (lexer);
905                           lex_force_match (lexer, T_RPAREN);
906                         }
907                     }
908                 }
909               else if (lex_match_id (lexer, "MINIMUM"))
910                 {
911                   lex_force_match (lexer, T_LPAREN);
912                   if (lex_force_num (lexer))
913                     {
914                       hi_min = lex_number (lexer);
915                       lex_get (lexer);
916                     }
917                   lex_force_match (lexer, T_RPAREN);
918                 }
919               else if (lex_match_id (lexer, "MAXIMUM"))
920                 {
921                   lex_force_match (lexer, T_LPAREN);
922                   if (lex_force_num (lexer))
923                     {
924                       hi_max = lex_number (lexer);
925                       lex_get (lexer);
926                     }
927                   lex_force_match (lexer, T_RPAREN);
928                 }
929               else
930                 {
931                   lex_error (lexer, NULL);
932                   goto error;
933                 }
934             }
935         }
936       else if (lex_match_id (lexer, "PIECHART"))
937         {
938           lex_match (lexer, T_EQUALS);
939           while (lex_token (lexer) != T_ENDCMD
940                  && lex_token (lexer) != T_SLASH)
941             {
942               if (lex_match_id (lexer, "MINIMUM"))
943                 {
944                   lex_force_match (lexer, T_LPAREN);
945                   if (lex_force_num (lexer))
946                     {
947                       pie_min = lex_number (lexer);
948                       lex_get (lexer);
949                     }
950                   lex_force_match (lexer, T_RPAREN);
951                 }
952               else if (lex_match_id (lexer, "MAXIMUM"))
953                 {
954                   lex_force_match (lexer, T_LPAREN);
955                   if (lex_force_num (lexer))
956                     {
957                       pie_max = lex_number (lexer);
958                       lex_get (lexer);
959                     }
960                   lex_force_match (lexer, T_RPAREN);
961                 }
962               else if (lex_match_id (lexer, "MISSING"))
963                 {
964                   pie_missing = true;
965                 }
966               else if (lex_match_id (lexer, "NOMISSING"))
967                 {
968                   pie_missing = false;
969                 }
970               else
971                 {
972                   lex_error (lexer, NULL);
973                   goto error;
974                 }
975             }
976           sbc_piechart = true;
977         }
978       else if (lex_match_id (lexer, "MISSING"))
979         {
980           lex_match (lexer, T_EQUALS);
981
982           while (lex_token (lexer) != T_ENDCMD
983                  && lex_token (lexer) != T_SLASH)
984             {
985               if (lex_match_id (lexer, "EXCLUDE"))
986                 {
987                 }
988               else if (lex_match_id (lexer, "INCLUDE"))
989                 {
990                 }
991               else
992                 {
993                   lex_error (lexer, NULL);
994                   goto error;
995                 }
996             }
997         }
998       else
999         {
1000           lex_error (lexer, NULL);
1001           goto error;
1002         }
1003     }
1004
1005   if (frq.stats & BIT_INDEX (FRQ_ST_MEDIAN))
1006     {
1007         frq.percentiles =
1008           xrealloc (frq.percentiles, 
1009                     (frq.n_percentiles + 1)
1010                     * sizeof (*frq.percentiles));
1011         
1012         frq.percentiles[frq.n_percentiles].p = 0.50;
1013         frq.percentiles[frq.n_percentiles].show = true;
1014
1015         frq.n_percentiles++;
1016     }
1017
1018
1019 /* Figure out which charts the user requested.  */
1020
1021   {
1022     if (sbc_barchart)
1023       msg (SW, _("Bar charts are not implemented."));
1024
1025     if (sbc_histogram)
1026       {
1027         struct frq_chart *hist;
1028
1029         hist = frq.hist = xmalloc (sizeof *frq.hist);
1030         hist->x_min = hi_min;
1031         hist->x_max = hi_max;
1032         hist->y_scale = hi_scale;
1033         hist->y_max = hi_scale == FRQ_FREQ ? hi_freq : hi_pcnt;
1034         hist->draw_normal = hi_norm != FRQ_NONORMAL;
1035         hist->include_missing = false;
1036
1037         if (hist->x_min != SYSMIS && hist->x_max != SYSMIS
1038             && hist->x_min >= hist->x_max)
1039           {
1040             msg (SE, _("%s for histogram must be greater than or equal to %s, "
1041                        "but %s was specified as %.15g and %s as %.15g.  "
1042                        "%s and %s will be ignored."),
1043                  "MAX", "MIN", 
1044                  "MIN", hist->x_min, 
1045                  "MAX", hist->x_max,
1046                  "MIN", "MAX");
1047             hist->x_min = hist->x_max = SYSMIS;
1048           }
1049
1050         frq.percentiles =
1051           xrealloc (frq.percentiles, 
1052                     (frq.n_percentiles + 2)
1053                     * sizeof (*frq.percentiles));
1054         
1055         frq.percentiles[frq.n_percentiles].p = 0.25;
1056         frq.percentiles[frq.n_percentiles].show = false;
1057
1058         frq.percentiles[frq.n_percentiles + 1].p = 0.75;
1059         frq.percentiles[frq.n_percentiles + 1].show = false;
1060         
1061         frq.n_percentiles+=2;
1062       }
1063
1064     if (sbc_piechart)
1065       {
1066         struct frq_chart *pie;
1067
1068         pie = frq.pie = xmalloc (sizeof *frq.pie);
1069         pie->x_min = pie_min;
1070         pie->x_max = pie_max;
1071         pie->include_missing = pie_missing;
1072
1073         if (pie->x_min != SYSMIS && pie->x_max != SYSMIS
1074             && pie->x_min >= pie->x_max)
1075           {
1076             msg (SE, _("%s for pie chart must be greater than or equal to %s, "
1077                        "but %s was specified as %.15g and %s as %.15g.  "
1078                        "%s and %s will be ignored."), 
1079                  "MAX", "MIN", 
1080                  "MIN", pie->x_min,
1081                  "MAX", pie->x_max,
1082                  "MIN", "MAX");
1083             pie->x_min = pie->x_max = SYSMIS;
1084           }
1085       }
1086   }
1087
1088   {
1089     int i,o;
1090     double previous_p = -1;
1091     qsort (frq.percentiles, frq.n_percentiles,
1092            sizeof (*frq.percentiles), 
1093            ptile_3way);
1094
1095     frq.n_show_percentiles = 0;
1096     for (i = o = 0; i < frq.n_percentiles; ++i)
1097       {
1098         frq.percentiles[o].p = frq.percentiles[i].p;
1099
1100         if (frq.percentiles[i].show)
1101           frq.percentiles[o].show = true;
1102
1103         if (frq.percentiles[i].p != previous_p)
1104           {
1105             if (frq.percentiles[i].show)
1106               frq.n_show_percentiles++;
1107
1108             o++;
1109           }
1110
1111         previous_p = frq.percentiles[i].p;
1112       }
1113
1114     frq.n_percentiles = o;
1115   }
1116
1117   {
1118     struct casegrouper *grouper;
1119     struct casereader *group;
1120     bool ok;
1121
1122     grouper = casegrouper_create_splits (proc_open (ds), dataset_dict (ds));
1123     while (casegrouper_get_next_group (grouper, &group))
1124       {
1125         struct ccase *c;
1126         precalc (&frq, group, ds);
1127         for (; (c = casereader_read (group)) != NULL; case_unref (c))
1128           calc (&frq, c, ds);
1129         postcalc (&frq, ds);
1130       }
1131     ok = casegrouper_destroy (grouper);
1132     ok = proc_commit (ds) && ok;
1133   }
1134
1135
1136   return CMD_SUCCESS;
1137
1138  error:
1139
1140   return CMD_FAILURE;
1141 }
1142
1143 static double
1144 calculate_iqr (const struct frq_proc *frq)
1145 {
1146   double q1 = SYSMIS;
1147   double q3 = SYSMIS;
1148   int i;
1149
1150   /* This cannot work unless the 25th and 75th percentile are calculated */
1151   assert (frq->n_percentiles >= 2);
1152   for (i = 0; i < frq->n_percentiles; i++)
1153     {
1154       struct percentile *pc = &frq->percentiles[i];
1155
1156       if (fabs (0.25 - pc->p) < DBL_EPSILON)
1157         q1 = pc->value;
1158       else if (fabs (0.75 - pc->p) < DBL_EPSILON)
1159         q3 = pc->value;
1160     }
1161
1162   return q1 == SYSMIS || q3 == SYSMIS ? SYSMIS : q3 - q1;
1163 }
1164
1165 static bool
1166 chart_includes_value (const struct frq_chart *chart,
1167                       const struct variable *var,
1168                       const union value *value)
1169 {
1170   if (!chart->include_missing && var_is_value_missing (var, value, MV_ANY))
1171     return false;
1172
1173   if (var_is_numeric (var)
1174       && ((chart->x_min != SYSMIS && value->f < chart->x_min)
1175           || (chart->x_max != SYSMIS && value->f > chart->x_max)))
1176     return false;
1177
1178   return true;
1179 }
1180
1181 /* Create a gsl_histogram from a freq_tab */
1182 static struct histogram *
1183 freq_tab_to_hist (const struct frq_proc *frq, const struct freq_tab *ft,
1184                   const struct variable *var)
1185 {
1186   double x_min, x_max, valid_freq;
1187   int i;
1188   double bin_width;
1189   struct histogram *histogram;
1190   double iqr;
1191
1192   /* Find out the extremes of the x value, within the range to be included in
1193      the histogram, and sum the total frequency of those values. */
1194   x_min = DBL_MAX;
1195   x_max = -DBL_MAX;
1196   valid_freq = 0;
1197   for (i = 0; i < ft->n_valid; i++)
1198     {
1199       const struct freq *f = &ft->valid[i];
1200       if (chart_includes_value (frq->hist, var, &f->value))
1201         {
1202           x_min = MIN (x_min, f->value.f);
1203           x_max = MAX (x_max, f->value.f);
1204           valid_freq += f->count;
1205         }
1206     }
1207
1208
1209   iqr = calculate_iqr (frq);
1210
1211   if (iqr > 0)
1212     /* Freedman-Diaconis' choice of bin width. */
1213     bin_width = 2 * iqr / pow (valid_freq, 1.0 / 3.0);
1214
1215   else
1216     /* Sturges Rule */
1217     bin_width = (x_max - x_min) / (1 + log2 (valid_freq));
1218
1219   histogram = histogram_create (bin_width, x_min, x_max);
1220
1221   if ( histogram == NULL)
1222     return NULL;
1223
1224   for (i = 0; i < ft->n_valid; i++)
1225     {
1226       const struct freq *f = &ft->valid[i];
1227       if (chart_includes_value (frq->hist, var, &f->value))
1228         histogram_add (histogram, f->value.f, f->count);
1229     }
1230
1231   return histogram;
1232 }
1233
1234 static int
1235 add_slice (const struct frq_chart *pie, const struct freq *freq,
1236            const struct variable *var, struct slice *slice)
1237 {
1238   if (chart_includes_value (pie, var, &freq->value))
1239     {
1240       ds_init_empty (&slice->label);
1241       var_append_value_name (var, &freq->value, &slice->label);
1242       slice->magnitude = freq->count;
1243       return 1;
1244     }
1245   else
1246     return 0;
1247 }
1248
1249 /* Allocate an array of slices and fill them from the data in frq_tab
1250    n_slices will contain the number of slices allocated.
1251    The caller is responsible for freeing slices
1252 */
1253 static struct slice *
1254 freq_tab_to_slice_array(const struct frq_chart *pie,
1255                         const struct freq_tab *frq_tab,
1256                         const struct variable *var,
1257                         int *n_slicesp)
1258 {
1259   struct slice *slices;
1260   int n_slices;
1261   int i;
1262
1263   slices = xnmalloc (frq_tab->n_valid + frq_tab->n_missing, sizeof *slices);
1264   n_slices = 0;
1265
1266   for (i = 0; i < frq_tab->n_valid; i++)
1267     n_slices += add_slice (pie, &frq_tab->valid[i], var, &slices[n_slices]);
1268   for (i = 0; i < frq_tab->n_missing; i++)
1269     n_slices += add_slice (pie, &frq_tab->missing[i], var, &slices[n_slices]);
1270
1271   *n_slicesp = n_slices;
1272   return slices;
1273 }
1274
1275
1276 static void
1277 do_piechart(const struct frq_chart *pie, const struct variable *var,
1278             const struct freq_tab *frq_tab)
1279 {
1280   struct slice *slices;
1281   int n_slices, i;
1282
1283   slices = freq_tab_to_slice_array (pie, frq_tab, var, &n_slices);
1284
1285   if (n_slices < 2)
1286     msg (SW, _("Omitting pie chart for %s, which has only %d unique values."),
1287          var_get_name (var), n_slices);
1288   else if (n_slices > 50)
1289     msg (SW, _("Omitting pie chart for %s, which has over 50 unique values."),
1290          var_get_name (var));
1291   else
1292     chart_item_submit (piechart_create (var_to_string(var), slices, n_slices));
1293
1294   for (i = 0; i < n_slices; i++)
1295     ds_destroy (&slices[i].label);
1296   free (slices);
1297 }
1298
1299 /* Calculates all the pertinent statistics for VF, putting them in array
1300    D[]. */
1301 static void
1302 calc_stats (const struct var_freqs *vf, double d[FRQ_ST_count])
1303 {
1304   const struct freq_tab *ft = &vf->tab;
1305   double W = ft->valid_cases;
1306   const struct freq *f;
1307   struct moments *m;
1308   int most_often;
1309   double X_mode;
1310
1311   assert (ft->n_valid > 0);
1312
1313   /* Calculate the mode. */
1314   most_often = -1;
1315   X_mode = SYSMIS;
1316   for (f = ft->valid; f < ft->missing; f++)
1317     {
1318       if (most_often < f->count)
1319         {
1320           most_often = f->count;
1321           X_mode = f->value.f;
1322         }
1323       else if (most_often == f->count)
1324         {
1325           /* A duplicate mode is undefined.
1326              FIXME: keep track of *all* the modes. */
1327           X_mode = SYSMIS;
1328         }
1329     }
1330
1331   /* Calculate moments. */
1332   m = moments_create (MOMENT_KURTOSIS);
1333   for (f = ft->valid; f < ft->missing; f++)
1334     moments_pass_one (m, f->value.f, f->count);
1335   for (f = ft->valid; f < ft->missing; f++)
1336     moments_pass_two (m, f->value.f, f->count);
1337   moments_calculate (m, NULL, &d[FRQ_ST_MEAN], &d[FRQ_ST_VARIANCE],
1338                      &d[FRQ_ST_SKEWNESS], &d[FRQ_ST_KURTOSIS]);
1339   moments_destroy (m);
1340
1341   /* Formulas below are taken from _SPSS Statistical Algorithms_. */
1342   d[FRQ_ST_MINIMUM] = ft->valid[0].value.f;
1343   d[FRQ_ST_MAXIMUM] = ft->valid[ft->n_valid - 1].value.f;
1344   d[FRQ_ST_MODE] = X_mode;
1345   d[FRQ_ST_RANGE] = d[FRQ_ST_MAXIMUM] - d[FRQ_ST_MINIMUM];
1346   d[FRQ_ST_SUM] = d[FRQ_ST_MEAN] * W;
1347   d[FRQ_ST_STDDEV] = sqrt (d[FRQ_ST_VARIANCE]);
1348   d[FRQ_ST_SEMEAN] = d[FRQ_ST_STDDEV] / sqrt (W);
1349   d[FRQ_ST_SESKEWNESS] = calc_seskew (W);
1350   d[FRQ_ST_SEKURTOSIS] = calc_sekurt (W);
1351 }
1352
1353 /* Displays a table of all the statistics requested for variable V. */
1354 static void
1355 dump_statistics (const struct frq_proc *frq, const struct var_freqs *vf,
1356                  const struct variable *wv)
1357 {
1358   const struct fmt_spec *wfmt = wv ? var_get_print_format (wv) : &F_8_0;
1359   const struct freq_tab *ft = &vf->tab;
1360   double stat_value[FRQ_ST_count];
1361   struct tab_table *t;
1362   int i, r;
1363
1364   if (var_is_alpha (vf->var))
1365     return;
1366
1367   if (ft->n_valid == 0)
1368     {
1369       msg (SW, _("No valid data for variable %s; statistics not displayed."),
1370            var_get_name (vf->var));
1371       return;
1372     }
1373   calc_stats (vf, stat_value);
1374
1375   t = tab_create (3, ((frq->stats & BIT_INDEX (FRQ_ST_MEDIAN)) ? frq->n_stats - 1 : frq->n_stats)
1376                   + frq->n_show_percentiles + 2);
1377   tab_set_format (t, RC_WEIGHT, wfmt);
1378   tab_box (t, TAL_1, TAL_1, -1, -1 , 0 , 0 , 2, tab_nr(t) - 1) ;
1379
1380
1381   tab_vline (t, TAL_1 , 2, 0, tab_nr(t) - 1);
1382   tab_vline (t, TAL_GAP , 1, 0, tab_nr(t) - 1 ) ;
1383
1384   r = 2; /* N missing and N valid are always dumped */
1385
1386   for (i = 0; i < FRQ_ST_count; i++)
1387     {
1388       if (FRQ_ST_MEDIAN == i)
1389         continue;
1390
1391       if (frq->stats & BIT_INDEX (i))
1392       {
1393         tab_text (t, 0, r, TAB_LEFT | TAT_TITLE,
1394                       gettext (st_name[i]));
1395         tab_double (t, 2, r, TAB_NONE, stat_value[i], NULL, RC_OTHER);
1396         r++;
1397       }
1398     }
1399
1400   tab_text (t, 0, 0, TAB_LEFT | TAT_TITLE, _("N"));
1401   tab_text (t, 1, 0, TAB_LEFT | TAT_TITLE, _("Valid"));
1402   tab_text (t, 1, 1, TAB_LEFT | TAT_TITLE, _("Missing"));
1403
1404   tab_double (t, 2, 0, TAB_NONE, ft->valid_cases, NULL, RC_WEIGHT);
1405   tab_double (t, 2, 1, TAB_NONE, ft->total_cases - ft->valid_cases, NULL, RC_WEIGHT);
1406
1407   for (i = 0; i < frq->n_percentiles; i++)
1408     {
1409       const struct percentile *pc = &frq->percentiles[i];
1410
1411       if (!pc->show)
1412         continue;
1413
1414       if ( i == 0 )
1415         {
1416           tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Percentiles"));
1417         }
1418
1419       if (pc->p == 0.5)
1420         tab_text (t, 1, r, TAB_LEFT, _("50 (Median)"));
1421       else
1422         tab_double (t, 1, r, TAB_LEFT, pc->p * 100, NULL, RC_INTEGER);
1423       tab_double (t, 2, r, TAB_NONE, pc->value,
1424                   var_get_print_format (vf->var), RC_OTHER);
1425       r++;
1426     }
1427
1428   tab_title (t, "%s", var_to_string (vf->var));
1429
1430   tab_submit (t);
1431 }
1432