checkin of 0.3.0
[pspp-builds.git] / src / descript.q
1 /* PSPP - computes sample statistics.
2    Copyright (C) 1997-9, 2000 Free Software Foundation, Inc.
3    Written by Ben Pfaff <blp@gnu.org>.
4
5    This program is free software; you can redistribute it and/or
6    modify it under the terms of the GNU General Public License as
7    published by the Free Software Foundation; either version 2 of the
8    License, or (at your option) any later version.
9
10    This program is distributed in the hope that it will be useful, but
11    WITHOUT ANY WARRANTY; without even the implied warranty of
12    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13    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, write to the Free Software
17    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
18    02111-1307, USA. */
19
20 /* FIXME: Many possible optimizations. */
21
22 #include <config.h>
23 #include <assert.h>
24 #include <limits.h>
25 #include <math.h>
26 #include <stdlib.h>
27 #include "alloc.h"
28 #include "bitvector.h"
29 #include "command.h"
30 #include "lexer.h"
31 #include "error.h"
32 #include "approx.h"
33 #include "magic.h"
34 #include "stats.h"
35 #include "som.h"
36 #include "tab.h"
37 #include "var.h"
38 #include "vfm.h"
39
40 /* (specification)
41    DESCRIPTIVES (dsc_):
42      *variables=custom;
43      +missing=miss:!variable/listwise,incl:!noinclude/include;
44      +format=labeled:!labels/nolabels,indexed:!noindex/index,lined:!line/serial;
45      +save=;
46      +options[op_]=1,2,3,4,5,6,7,8;
47      +statistics[st_]=all,1|mean,2|semean,5|stddev,6|variance,7|kurtosis,
48                       8|skewness,9|range,10|minimum,11|maximum,12|sum,
49                       13|default,14|seskewness,15|sekurtosis;
50      +sort=sortby:mean/semean/stddev/variance/kurtosis/skewness/range/
51            range/minimum/maximum/sum/name/seskewness/sekurtosis/!none, 
52            order:!a/d.
53 */
54 /* (declarations) */
55 /* (functions) */
56
57 /* DESCRIPTIVES private data. */
58
59 /* Describes properties of a distribution for the purpose of
60    calculating a Z-score. */
61 struct dsc_z_score
62   {
63     struct variable *s, *d;     /* Source, destination variable. */
64     double mean;                /* Distribution mean. */
65     double std_dev;             /* Distribution standard deviation. */
66   };
67
68 /* DESCRIPTIVES transformation (for calculating Z-scores). */
69 struct descriptives_trns
70   {
71     struct trns_header h;
72     int n;                      /* Number of Z-scores. */
73     struct dsc_z_score *z;      /* Array of Z-scores. */
74   };
75
76 /* These next three vars, see comment at top of display(). */
77 /* Number of cases missing listwise, even if option 5 not selected. */
78 static double d_glob_miss_list;
79
80 /* Number of total *cases* valid or missing, as a double.  Unless
81    option 5 is selected, d_glob_missing is 0. */
82 static double d_glob_valid, d_glob_missing;
83
84 /* Set when a weighting variable is missing or <=0. */
85 static int bad_weight;
86
87 /* Number of generic zvarnames we've generated in this execution. */
88 static int z_count;
89
90 /* Variables specified on command. */
91 static struct variable **v_variables;
92 static int n_variables;
93
94 /* Command specifications. */
95 static struct cmd_descriptives cmd;
96
97 /* Whether z-scores are computed. */
98 static int z_scores;
99
100 /* Statistic to sort by. */
101 static int sortby_stat;
102
103 /* Statistics to display. */
104 static unsigned long stats;
105
106 /* Easier access to long-named arrays. */
107 #define stat cmd.a_statistics
108 #define opt  cmd.a_options
109
110 /* Groups of statistics. */
111 #define BI          BIT_INDEX
112
113 #define dsc_default                                                     \
114         (BI (dsc_mean) | BI (dsc_stddev) | BI (dsc_min) | BI (dsc_max))
115      
116 #define dsc_all                                                 \
117         (BI (dsc_sum) | BI (dsc_min) | BI (dsc_max)             \
118          | BI (dsc_mean) | BI (dsc_semean) | BI (dsc_stddev)    \
119          | BI (dsc_variance) | BI (dsc_kurt) | BI (dsc_sekurt)  \
120          | BI (dsc_skew) | BI (dsc_seskew) | BI (dsc_range)     \
121          | BI (dsc_range))
122
123 /* Table of options. */
124 #define op_incl_miss    DSC_OP_1        /* Honored. */
125 #define op_no_varlabs   DSC_OP_2        /* Ignored. */
126 #define op_zscores      DSC_OP_3        /* Honored. */
127 #define op_index        DSC_OP_4        /* FIXME. */
128 #define op_excl_miss    DSC_OP_5        /* Honored. */
129 #define op_serial       DSC_OP_6        /* Honored. */
130 #define op_narrow       DSC_OP_7        /* Ignored. */
131 #define op_no_varnames  DSC_OP_8        /* Honored. */
132
133 /* Describes one statistic that can be calculated. */
134 /* FIXME: Currently sm,col_width are not used. */
135 struct dsc_info
136   {
137     int st_indx;                /* Index into st_a_statistics[]. */
138     int sb_indx;                /* Sort-by index. */
139     const char *s10;            /* Name, stuffed into 10 columns. */
140     const char *s8;             /* Name, stuffed into 8 columns. */
141     const char *sm;             /* Name, stuffed minimally. */
142     const char *s;              /* Full name. */
143     int max_degree;             /* Highest degree necessary to calculate this
144                                    statistic. */
145     int col_width;              /* Column width (not incl. spacing between columns) */
146   };
147
148 /* Table of statistics, indexed by dsc_*. */
149 static struct dsc_info dsc_info[dsc_n_stats] =
150 {
151   {DSC_ST_MEAN, DSC_MEAN, N_("Mean"), N_("Mean"), N_("Mean"), N_("mean"), 1, 10},
152   {DSC_ST_SEMEAN, DSC_SEMEAN, N_("S.E. Mean"), N_("S E Mean"), N_("SE"),
153    N_("standard error of mean"), 2, 10},
154   {DSC_ST_STDDEV, DSC_STDDEV, N_("Std Dev"), N_("Std Dev"), N_("SD"),
155    N_("standard deviation"), 2, 11},
156   {DSC_ST_VARIANCE, DSC_VARIANCE, N_("Variance"), N_("Variance"),
157    N_("Var"), N_("variance"), 2, 12},
158   {DSC_ST_KURTOSIS, DSC_KURTOSIS, N_("Kurtosis"), N_("Kurtosis"),
159    N_("Kurt"), N_("kurtosis"), 4, 9},
160   {DSC_ST_SEKURTOSIS, DSC_SEKURTOSIS, N_("S.E. Kurt"), N_("S E Kurt"), N_("SEKurt"),
161    N_("standard error of kurtosis"), 0, 9},
162   {DSC_ST_SKEWNESS, DSC_SKEWNESS, N_("Skewness"), N_("Skewness"), N_("Skew"),
163    N_("skewness"), 3, 9},
164   {DSC_ST_SESKEWNESS, DSC_SESKEWNESS, N_("S.E. Skew"), N_("S E Skew"), N_("SESkew"),
165    N_("standard error of skewness"), 0, 9},
166   {DSC_ST_RANGE, DSC_RANGE, N_("Range"), N_("Range"), N_("Rng"), N_("range"), 0, 10},
167   {DSC_ST_MINIMUM, DSC_MINIMUM, N_("Minimum"), N_("Minimum"), N_("Min"),
168    N_("minimum"), 0, 10},
169   {DSC_ST_MAXIMUM, DSC_MAXIMUM, N_("Maximum"), N_("Maximum"), N_("Max"),
170    N_("maximum"), 0, 10},
171   {DSC_ST_SUM, DSC_SUM, N_("Sum"), N_("Sum"), N_("Sum"), N_("sum"), 1, 13},
172 };
173
174 /* Z-score functions. */
175 static int generate_z_varname (struct variable * v);
176 static void dump_z_table (void);
177 static void run_z_pass (void);
178
179 /* Procedure execution functions. */
180 static int calc (struct ccase *);
181 static void precalc (void);
182 static void postcalc (void);
183 static void display (void);
184 \f
185 /* Parser and outline. */
186
187 int
188 cmd_descriptives (void)
189 {
190   struct variable *v;
191   int i;
192
193   v_variables = NULL;
194   n_variables = 0;
195
196   lex_match_id ("DESCRIPTIVES");
197   lex_match_id ("CONDESCRIPTIVES");
198   if (!parse_descriptives (&cmd))
199     goto lossage;
200
201   if (n_variables == 0)
202     goto lossage;
203   for (i = 0; i < n_variables; i++)
204     {
205       v = v_variables[i];
206       v->p.dsc.dup = 0;
207       v->p.dsc.zname[0] = 0;
208     }
209
210   if (n_variables < 0)
211     {
212       msg (SE, _("No variables specified."));
213       goto lossage;
214     }
215
216   if (cmd.sbc_options && (cmd.sbc_save || cmd.sbc_format || cmd.sbc_missing))
217     {
218       msg (SE, _("OPTIONS may not be used with SAVE, FORMAT, or MISSING."));
219       goto lossage;
220     }
221   
222   if (!cmd.sbc_options)
223     {
224       if (cmd.incl == DSC_INCLUDE)
225         opt[op_incl_miss] = 1;
226       if (cmd.labeled == DSC_NOLABELS)
227         opt[op_no_varlabs] = 1;
228       if (cmd.sbc_save)
229         opt[op_zscores] = 1;
230       if (cmd.miss == DSC_LISTWISE)
231         opt[op_excl_miss] = 1;
232       if (cmd.lined == DSC_SERIAL)
233         opt[op_serial] = 1;
234     }
235
236   /* Construct z-score varnames, show translation table. */
237   if (opt[op_zscores])
238     {
239       z_count = 0;
240       for (i = 0; i < n_variables; i++)
241         {
242           v = v_variables[i];
243           if (v->p.dsc.dup++)
244             continue;
245
246           if (v->p.dsc.zname[0] == 0)
247             if (!generate_z_varname (v))
248               goto lossage;
249         }
250       dump_z_table ();
251       z_scores = 1;
252     }
253
254   /* Figure out statistics to calculate. */
255   stats = 0;
256   if (stat[DSC_ST_DEFAULT] || !cmd.sbc_statistics)
257     stats |= dsc_default;
258   if (stat[DSC_ST_ALL])
259     stats |= dsc_all;
260   for (i = 0; i < dsc_n_stats; i++)
261     if (stat[dsc_info[i].st_indx])
262       stats |= BIT_INDEX (i);
263   if (stats & dsc_kurt)
264     stats |= dsc_sekurt;
265   if (stats & dsc_skew)
266     stats |= dsc_seskew;
267
268   /* Check the sort order. */
269   sortby_stat = -1;
270   if (cmd.sortby == DSC_NONE)
271     sortby_stat = -2;
272   else if (cmd.sortby != DSC_NAME)
273     {
274       for (i = 0; i < n_variables; i++)
275         if (dsc_info[i].sb_indx == cmd.sortby)
276           {
277             sortby_stat = i;
278             if (!(stats & BIT_INDEX (i)))
279               {
280                 msg (SE, _("It's not possible to sort on `%s' without "
281                            "displaying `%s'."),
282                      gettext (dsc_info[i].s), gettext (dsc_info[i].s));
283                 goto lossage;
284               }
285           }
286       assert (sortby_stat != -1);
287     }
288
289   /* Data pass! */
290   update_weighting (&default_dict);
291   bad_weight = 0;
292   procedure (precalc, calc, postcalc);
293
294   if (bad_weight)
295     msg (SW, _("At least one case in the data file had a weight value "
296          "that was system-missing, zero, or negative.  These case(s) "
297          "were ignored."));
298
299   /* Z-scoring! */
300   if (z_scores)
301     run_z_pass ();
302
303   if (v_variables)
304     free (v_variables);
305   return CMD_SUCCESS;
306
307  lossage:
308   if (v_variables)
309     free (v_variables);
310   return CMD_FAILURE;
311 }
312
313 /* Parses the VARIABLES subcommand. */
314 static int
315 dsc_custom_variables (struct cmd_descriptives *cmd unused)
316 {
317   if (!lex_match_id ("VARIABLES")
318       && (token != T_ID || !is_varname (tokid))
319       && token != T_ALL)
320     return 2;
321   lex_match ('=');
322
323   while (token == T_ID || token == T_ALL)
324     {
325       int i, n;
326
327       n = n_variables;
328       if (!parse_variables (NULL, &v_variables, &n_variables,
329                             PV_DUPLICATE | PV_SINGLE | PV_APPEND | PV_NUMERIC
330                             | PV_NO_SCRATCH))
331         return 0;
332       if (lex_match ('('))
333         {
334           if (n_variables - n > 1)
335             {
336               msg (SE, _("Names for z-score variables must be given for "
337                          "individual variables, not for groups of "
338                          "variables."));
339               return 0;
340             }
341           assert (n_variables - n <= 0);
342           if (token != T_ID)
343             {
344               msg (SE, _("Name for z-score variable expected."));
345               return 0;
346             }
347           if (is_varname (tokid))
348             {
349               msg (SE, _("Z-score variable name `%s' is a "
350                          "duplicate variable name with a current variable."),
351                    tokid);
352               return 0;
353             }
354           for (i = 0; i < n_variables; i++)
355             if (v_variables[i]->p.dsc.zname[0]
356                 && !strcmp (v_variables[i]->p.dsc.zname, tokid))
357               {
358                 msg (SE, _("Z-score variable name `%s' is "
359                            "used multiple times."), tokid);
360                 return 0;
361               }
362           strcpy (v_variables[n_variables - 1]->p.dsc.zname, tokid);
363           lex_get ();
364           if (token != ')')
365             {
366               msg (SE, _("`)' expected after z-score variable name."));
367               return 0;
368             }
369
370           z_scores = 1;
371         }
372       lex_match (',');
373     }
374   return 1;
375 }
376 \f
377 /* Z scores. */
378
379 /* Returns 0 if NAME is a duplicate of any existing variable name or
380    of any previously-declared z-var name; otherwise returns 1. */
381 static int
382 try_name (char *name)
383 {
384   int i;
385
386   if (is_varname (name))
387     return 0;
388   for (i = 0; i < n_variables; i++)
389     {
390       struct variable *v = v_variables[i];
391       if (!strcmp (v->p.dsc.zname, name))
392         return 0;
393     }
394   return 1;
395 }
396
397 static int
398 generate_z_varname (struct variable * v)
399 {
400   char zname[10];
401
402   strcpy (&zname[1], v->name);
403   zname[0] = 'Z';
404   zname[8] = '\0';
405   if (try_name (zname))
406     {
407       strcpy (v->p.dsc.zname, zname);
408       return 1;
409     }
410
411   for (;;)
412     {
413       /* Generate variable name. */
414       z_count++;
415
416       if (z_count <= 99)
417         sprintf (zname, "ZSC%03d", z_count);
418       else if (z_count <= 108)
419         sprintf (zname, "STDZ%02d", z_count - 99);
420       else if (z_count <= 117)
421         sprintf (zname, "ZZZZ%02d", z_count - 108);
422       else if (z_count <= 126)
423         sprintf (zname, "ZQZQ%02d", z_count - 117);
424       else
425         {
426           msg (SE, _("Ran out of generic names for Z-score variables.  "
427                      "There are only 126 generic names: ZSC001-ZSC0999, "
428                      "STDZ01-STDZ09, ZZZZ01-ZZZZ09, ZQZQ01-ZQZQ09."));
429           return 0;
430         }
431       
432       if (try_name (zname))
433         {
434           strcpy (v->p.dsc.zname, zname);
435           return 1;
436         }
437     }
438 }
439
440 static void
441 dump_z_table (void)
442 {
443   int count;
444   struct tab_table *t;
445   
446   {
447     int i;
448     
449     for (count = i = 0; i < n_variables; i++)
450       if (v_variables[i]->p.dsc.zname)
451         count++;
452   }
453   
454   t = tab_create (2, count + 1, 0);
455   tab_title (t, 0, _("Mapping of variables to corresponding Z-scores."));
456   tab_columns (t, SOM_COL_DOWN, 1);
457   tab_headers (t, 0, 0, 1, 0);
458   tab_box (t, TAL_1, TAL_1, TAL_0, TAL_1, 0, 0, 1, count);
459   tab_hline (t, TAL_2, 0, 1, 1);
460   tab_text (t, 0, 0, TAB_CENTER | TAT_TITLE, _("Source"));
461   tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Target"));
462   tab_dim (t, tab_natural_dimensions);
463
464   {
465     int i, y;
466     
467     for (i = 0, y = 1; i < n_variables; i++)
468       if (v_variables[i]->p.dsc.zname)
469         {
470           tab_text (t, 0, y, TAB_LEFT, v_variables[i]->name);
471           tab_text (t, 1, y++, TAB_LEFT, v_variables[i]->p.dsc.zname);
472         }
473   }
474   
475   tab_submit (t);
476 }
477
478 /* Transformation function to calculate Z-scores. */
479 static int
480 descriptives_trns_proc (struct trns_header * trns, struct ccase * c)
481 {
482   struct descriptives_trns *t = (struct descriptives_trns *) trns;
483   struct dsc_z_score *z;
484   int i;
485
486   for (i = t->n, z = t->z; i--; z++)
487     {
488       double score = c->data[z->s->fv].f;
489
490       if (z->mean == SYSMIS || score == SYSMIS)
491         c->data[z->d->fv].f = SYSMIS;
492       else
493         c->data[z->d->fv].f = (score - z->mean) / z->std_dev;
494     }
495   return -1;
496 }
497
498 /* Frees a descriptives_trns struct. */
499 static void
500 descriptives_trns_free (struct trns_header * trns)
501 {
502   struct descriptives_trns *t = (struct descriptives_trns *) trns;
503
504   free (t->z);
505 }
506
507 /* The name is a misnomer: actually this function sets up a
508    transformation by which scores can be converted into Z-scores. */
509 static void
510 run_z_pass (void)
511 {
512   struct descriptives_trns *t;
513   int count, i;
514
515   for (i = 0; i < n_variables; i++)
516     v_variables[i]->p.dsc.dup = 0;
517   for (count = i = 0; i < n_variables; i++)
518     {
519       if (v_variables[i]->p.dsc.dup++)
520         continue;
521       if (v_variables[i]->p.dsc.zname)
522         count++;
523     }
524
525   t = xmalloc (sizeof *t);
526   t->h.proc = descriptives_trns_proc;
527   t->h.free = descriptives_trns_free;
528   t->n = count;
529   t->z = xmalloc (count * sizeof *t->z);
530
531   for (i = 0; i < n_variables; i++)
532     v_variables[i]->p.dsc.dup = 0;
533   for (count = i = 0; i < n_variables; i++)
534     {
535       struct variable *v = v_variables[i];
536       if (v->p.dsc.dup++ == 0 && v->p.dsc.zname[0])
537         {
538           char *cp;
539           struct variable *d;
540
541           t->z[count].s = v;
542           t->z[count].d = d = force_create_variable (&default_dict,
543                                                      v->p.dsc.zname,
544                                                      NUMERIC, 0);
545           if (v->label)
546             {
547               d->label = xmalloc (strlen (v->label) + 12);
548               cp = stpcpy (d->label, _("Z-score of "));
549               strcpy (cp, v->label);
550             }
551           else
552             {
553               d->label = xmalloc (strlen (v->name) + 12);
554               cp = stpcpy (d->label, _("Z-score of "));
555               strcpy (cp, v->name);
556             }
557           t->z[count].mean = v->p.dsc.stats[dsc_mean];
558           t->z[count].std_dev = v->p.dsc.stats[dsc_stddev];
559           if (t->z[count].std_dev == SYSMIS
560               || approx_eq (t->z[count].std_dev, 0.0))
561             t->z[count].mean = SYSMIS;
562           count++;
563         }
564     }
565
566   add_transformation ((struct trns_header *) t);
567 }
568 \f
569 /* Statistical calculation. */
570
571 static void
572 precalc (void)
573 {
574   int i;
575
576   for (i = 0; i < n_variables; i++)
577     v_variables[i]->p.dsc.dup = -2;
578   for (i = 0; i < n_variables; i++)
579     {
580       struct descriptives_proc *dsc = &v_variables[i]->p.dsc;
581
582       /* Don't need to initialize more than once. */
583       if (dsc->dup == -1)
584         continue;
585       dsc->dup = -1;
586
587       dsc->valid = dsc->miss = 0.0;
588       dsc->X_bar = dsc->M2 = dsc->M3 = dsc->M4 = 0.0;
589       dsc->min = DBL_MAX;
590       dsc->max = -DBL_MAX;
591     }
592   d_glob_valid = d_glob_missing = 0.0;
593 }
594
595 static int
596 calc (struct ccase * c)
597 {
598   int i;
599
600   /* Unique case identifier. */
601   static int case_id;
602
603   /* Get the weight for this case. */
604   double w;
605
606   if (default_dict.weight_index == -1)
607     w = 1.0;
608   else
609     {
610       w = c->data[default_dict.weight_index].f;
611       if (w <= 0.0 || w == SYSMIS)
612         {
613           w = 0.0;
614           bad_weight = 1;
615         }
616     }
617
618   case_id++;
619
620   /* Handle missing values. */
621   for (i = 0; i < n_variables; i++)
622     {
623       struct variable *v = v_variables[i];
624       double X = c->data[v->fv].f;
625
626       if (X == SYSMIS || (!opt[op_incl_miss] && is_num_user_missing (X, v)))
627         {
628           if (opt[op_excl_miss])
629             {
630               d_glob_missing += w;
631               return 1;
632             }
633           else
634             {
635               d_glob_miss_list += w;
636               goto iterate;
637             }
638         }
639     }
640   d_glob_valid += w;
641
642 iterate:
643   for (i = 0; i < n_variables; i++)
644     {
645       struct descriptives_proc *inf = &v_variables[i]->p.dsc;
646
647       double X, v;
648       double W_old, W_new;
649       double v2, v3, v4;
650       double w2, w3, w4;
651
652       if (inf->dup == case_id)
653         continue;
654       inf->dup = case_id;
655
656       X = c->data[v_variables[i]->fv].f;
657       if (X == SYSMIS
658           || (!opt[op_incl_miss] && is_num_user_missing (X, v_variables[i])))
659         {
660           inf->miss += w;
661           continue;
662         }
663
664       /* These formulas taken from _SPSS Statistical Algorithms_.  The
665          names W_old, and W_new are used for W_j-1 and W_j,
666          respectively, and other variables simply have the subscripts
667          trimmed off, except for X_bar.
668
669          I am happy that mathematical formulas may not be
670          copyrighted. */
671       W_old = inf->valid;
672       W_new = inf->valid += w;
673       v = (w / W_new) * (X - inf->X_bar);
674       v2 = v * v;
675       v3 = v2 * v;
676       v4 = v3 * v;
677       w2 = w * w;
678       w3 = w2 * w;
679       w4 = w3 * w;
680       inf->M4 += (-4.0 * v * inf->M3 + 6.0 * v2 * inf->M2
681                + (W_new * W_new - 3 * w * W_old / w3) * v4 * W_old * W_new);
682       inf->M3 += (-3.0 * v * inf->M2 + W_new * W_old / w2
683                   * (W_new - 2 * w) * v3);
684       inf->M2 += W_new * W_old / w * v2;
685       inf->X_bar += v;
686       if (X < inf->min)
687         inf->min = X;
688       if (X > inf->max)
689         inf->max = X;
690     }
691   return 1;
692 }
693
694 static void
695 postcalc (void)
696 {
697   int i;
698
699   if (opt[op_excl_miss])
700     d_glob_miss_list = d_glob_missing;
701
702   for (i = 0; i < n_variables; i++)
703     {
704       struct descriptives_proc *dsc = &v_variables[i]->p.dsc;
705       double W;
706
707       /* Don't duplicate our efforts. */
708       if (dsc->dup == -2)
709         continue;
710       dsc->dup = -2;
711
712       W = dsc->valid;
713
714       dsc->stats[dsc_mean] = dsc->X_bar;
715       dsc->stats[dsc_variance] = dsc->M2 / (W - 1);
716       dsc->stats[dsc_stddev] = sqrt (dsc->stats[dsc_variance]);
717       dsc->stats[dsc_semean] = dsc->stats[dsc_stddev] / sqrt (W);
718       dsc->stats[dsc_min] = dsc->min == DBL_MAX ? SYSMIS : dsc->min;
719       dsc->stats[dsc_max] = dsc->max == -DBL_MAX ? SYSMIS : dsc->max;
720       dsc->stats[dsc_range] = ((dsc->min == DBL_MAX || dsc->max == -DBL_MAX)
721                                ? SYSMIS : dsc->max - dsc->min);
722       dsc->stats[dsc_sum] = W * dsc->X_bar;
723       if (W > 2.0 && dsc->stats[dsc_variance] >= 1e-20)
724         {
725           double S = dsc->stats[dsc_stddev];
726           dsc->stats[dsc_skew] = (W * dsc->M3 / ((W - 1.0) * (W - 2.0) * S * S * S));
727           dsc->stats[dsc_seskew] =
728             sqrt (6.0 * W * (W - 1.0) / ((W - 2.0) * (W + 1.0) * (W + 3.0)));
729         }
730       else
731         {
732           dsc->stats[dsc_skew] = dsc->stats[dsc_seskew] = SYSMIS;
733         }
734       if (W > 3.0 && dsc->stats[dsc_variance] >= 1e-20)
735         {
736           double S2 = dsc->stats[dsc_variance];
737           double SE_g1 = dsc->stats[dsc_seskew];
738
739           dsc->stats[dsc_kurt] =
740             (W * (W + 1.0) * dsc->M4 - 3.0 * dsc->M2 * dsc->M2 * (W - 1.0))
741             / ((W - 1.0) * (W - 2.0) * (W - 3.0) * S2 * S2);
742
743           /* Note that in _SPSS Statistical Algorithms_, the square
744              root symbol is missing from this formula. */
745           dsc->stats[dsc_sekurt] =
746             sqrt ((4.0 * (W * W - 1.0) * SE_g1 * SE_g1) / ((W - 3.0) * (W + 5.0)));
747         }
748       else
749         {
750           dsc->stats[dsc_kurt] = dsc->stats[dsc_sekurt] = SYSMIS;
751         }
752     }
753
754   display ();
755 }
756 \f
757 /* Statistical display. */
758
759 static int compare_func (struct variable ** a, struct variable ** b);
760
761 static void
762 display (void)
763 {
764   int i, j;
765
766   int nc, n_stats;
767   struct tab_table *t;
768
769   /* If op_excl_miss is on, d_glob_valid and (potentially)
770      d_glob_missing are nonzero, and d_glob_missing equals
771      d_glob_miss_list.
772
773      If op_excl_miss is off, d_glob_valid is nonzero.  d_glob_missing
774      is zero.  d_glob_miss_list is (potentially) nonzero.  */
775
776   if (sortby_stat != -2)
777     qsort (v_variables, n_variables, sizeof (struct variable *),
778            (int (*)(const void *, const void *)) compare_func);
779
780   for (nc = i = 0; i < dsc_n_stats; i++)
781     if (stats & BIT_INDEX (i))
782       nc++;
783   n_stats = nc;
784   if (!opt[op_no_varnames])
785     nc++;
786   nc += opt[op_serial] ? 2 : 1;
787
788   t = tab_create (nc, n_variables + 1, 0);
789   tab_headers (t, 1, 0, 1, 0);
790   tab_box (t, TAL_1, TAL_1, -1, -1, 0, 0, nc - 1, n_variables);
791   tab_box (t, -1, -1, -1, TAL_1, 1, 0, nc - 1, n_variables);
792   tab_hline (t, TAL_2, 0, nc - 1, 1);
793   tab_vline (t, TAL_2, 1, 0, n_variables);
794   tab_dim (t, tab_natural_dimensions);
795
796   nc = 0;
797   if (!opt[op_no_varnames])
798     {
799       tab_text (t, nc++, 0, TAB_LEFT | TAT_TITLE, _("Variable"));
800     }
801   if (opt[op_serial])
802     {
803       tab_text (t, nc++, 0, TAB_CENTER | TAT_TITLE, _("Valid N"));
804       tab_text (t, nc++, 0, TAB_CENTER | TAT_TITLE, _("Missing N"));
805     } else {
806       tab_text (t, nc++, 0, TAB_CENTER | TAT_TITLE, "N");
807     }
808
809   for (i = 0; i < dsc_n_stats; i++)
810     if (stats & BIT_INDEX (i))
811       {
812         const char *title = gettext (dsc_info[i].s8);
813         tab_text (t, nc++, 0, TAB_CENTER | TAT_TITLE, title);
814       }
815
816   for (i = 0; i < n_variables; i++)
817     {
818       struct variable *v = v_variables[i];
819
820       nc = 0;
821       if (!opt[op_no_varnames])
822         tab_text (t, nc++, i + 1, TAB_LEFT, v->name);
823       tab_text (t, nc++, i + 1, TAT_PRINTF, "%g", v->p.dsc.valid);
824       if (opt[op_serial])
825         tab_text (t, nc++, i + 1, TAT_PRINTF, "%g", v->p.dsc.miss);
826       for (j = 0; j < dsc_n_stats; j++)
827         if (stats & BIT_INDEX (j))
828           tab_float (t, nc++, i + 1, TAB_NONE, v->p.dsc.stats[j], 10, 3);
829     }
830
831   tab_title (t, 1, _("Valid cases = %g; cases with missing value(s) = %g."),
832              d_glob_valid, d_glob_miss_list);
833
834   tab_submit (t);
835 }
836
837 static int
838 compare_func (struct variable ** a, struct variable ** b)
839 {
840   double temp;
841
842   if (cmd.order == DSC_D)
843     {
844       struct variable **t;
845       t = a;
846       a = b;
847       b = t;
848     }
849
850   if (cmd.sortby == DSC_NAME)
851     return strcmp ((*a)->name, (*b)->name);
852   temp = ((*a)->p.dsc.stats[sortby_stat]
853           - (*b)->p.dsc.stats[sortby_stat]);
854   if (temp > 0)
855     return 1;
856   else if (temp < 0)
857     return -1;
858   else
859     return 0;
860 }
861
862 /*
863    Local variables:
864    mode: c
865    End:
866 */