625de2d2a9f9200986f98e453cb3fcf5a7d4513b
[pspp] / src / language / stats / glm.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2010, 2011, 2012 Free Software Foundation, Inc.
3
4    This program is free software: you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation, either version 3 of the License, or
7    (at your option) any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>. */
16
17 #include <config.h>
18
19 #include <gsl/gsl_cdf.h>
20 #include <gsl/gsl_matrix.h>
21 #include <gsl/gsl_combination.h>
22 #include <math.h>
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/value.h"
31 #include "language/command.h"
32 #include "language/dictionary/split-file.h"
33 #include "language/lexer/lexer.h"
34 #include "language/lexer/value-parser.h"
35 #include "language/lexer/variable-parser.h"
36 #include "libpspp/assertion.h"
37 #include "libpspp/ll.h"
38 #include "libpspp/message.h"
39 #include "libpspp/misc.h"
40 #include "libpspp/taint.h"
41 #include "linreg/sweep.h"
42 #include "math/categoricals.h"
43 #include "math/covariance.h"
44 #include "math/interaction.h"
45 #include "math/moments.h"
46 #include "output/tab.h"
47
48 #include "gettext.h"
49 #define _(msgid) gettext (msgid)
50
51 struct glm_spec
52 {
53   size_t n_dep_vars;
54   const struct variable **dep_vars;
55
56   size_t n_factor_vars;
57   const struct variable **factor_vars;
58
59   size_t n_interactions;
60   struct interaction **interactions;
61
62   enum mv_class exclude;
63
64   /* The weight variable */
65   const struct variable *wv;
66
67   const struct dictionary *dict;
68
69   int ss_type;
70   bool intercept;
71
72   double alpha;
73
74   bool dump_coding;
75 };
76
77 struct glm_workspace
78 {
79   double total_ssq;
80   struct moments *totals;
81
82   struct categoricals *cats;
83
84   /* 
85      Sums of squares due to different variables. Element 0 is the SSE
86      for the entire model. For i > 0, element i is the SS due to
87      variable i.
88    */
89   gsl_vector *ssq;
90 };
91
92
93 /* Default design: all possible interactions */
94 static void
95 design_full (struct glm_spec *glm)
96 {
97   int sz;
98   int i = 0;
99   glm->n_interactions = (1 << glm->n_factor_vars) - 1;
100
101   glm->interactions = xcalloc (glm->n_interactions, sizeof *glm->interactions);
102
103   /* All subsets, with exception of the empty set, of [0, glm->n_factor_vars) */
104   for (sz = 1; sz <= glm->n_factor_vars; ++sz)
105     {
106       gsl_combination *c = gsl_combination_calloc (glm->n_factor_vars, sz);
107
108       do
109         {
110           struct interaction *iact = interaction_create (NULL);
111           int e;
112           for (e = 0 ; e < gsl_combination_k (c); ++e)
113             interaction_add_variable (iact, glm->factor_vars [gsl_combination_get (c, e)]);
114
115           glm->interactions[i++] = iact;
116         }
117       while (gsl_combination_next (c) == GSL_SUCCESS);
118
119       gsl_combination_free (c);
120     }
121 }
122
123 static void output_glm (const struct glm_spec *,
124                         const struct glm_workspace *ws);
125 static void run_glm (struct glm_spec *cmd, struct casereader *input,
126                      const struct dataset *ds);
127
128
129 static bool parse_design_spec (struct lexer *lexer, struct glm_spec *glm);
130
131
132 int
133 cmd_glm (struct lexer *lexer, struct dataset *ds)
134 {
135   int i;
136   struct const_var_set *factors = NULL;
137   struct glm_spec glm;
138   bool design = false;
139   glm.dict = dataset_dict (ds);
140   glm.n_dep_vars = 0;
141   glm.n_factor_vars = 0;
142   glm.n_interactions = 0;
143   glm.interactions = NULL;
144   glm.dep_vars = NULL;
145   glm.factor_vars = NULL;
146   glm.exclude = MV_ANY;
147   glm.intercept = true;
148   glm.wv = dict_get_weight (glm.dict);
149   glm.alpha = 0.05;
150   glm.dump_coding = false;
151   glm.ss_type = 3;
152
153   if (!parse_variables_const (lexer, glm.dict,
154                               &glm.dep_vars, &glm.n_dep_vars,
155                               PV_NO_DUPLICATE | PV_NUMERIC))
156     goto error;
157
158   if (! lex_force_match (lexer, T_BY))
159     goto error;
160
161   if (!parse_variables_const (lexer, glm.dict,
162                               &glm.factor_vars, &glm.n_factor_vars,
163                               PV_NO_DUPLICATE | PV_NUMERIC))
164     goto error;
165
166   if (glm.n_dep_vars > 1)
167     {
168       msg (ME, _("Multivariate analysis is not yet implemented"));
169       return CMD_FAILURE;
170     }
171
172   factors =
173     const_var_set_create_from_array (glm.factor_vars, glm.n_factor_vars);
174
175   while (lex_token (lexer) != T_ENDCMD)
176     {
177       lex_match (lexer, T_SLASH);
178
179       if (lex_match_id (lexer, "MISSING"))
180         {
181           lex_match (lexer, T_EQUALS);
182           while (lex_token (lexer) != T_ENDCMD
183                  && lex_token (lexer) != T_SLASH)
184             {
185               if (lex_match_id (lexer, "INCLUDE"))
186                 {
187                   glm.exclude = MV_SYSTEM;
188                 }
189               else if (lex_match_id (lexer, "EXCLUDE"))
190                 {
191                   glm.exclude = MV_ANY;
192                 }
193               else
194                 {
195                   lex_error (lexer, NULL);
196                   goto error;
197                 }
198             }
199         }
200       else if (lex_match_id (lexer, "INTERCEPT"))
201         {
202           lex_match (lexer, T_EQUALS);
203           while (lex_token (lexer) != T_ENDCMD
204                  && lex_token (lexer) != T_SLASH)
205             {
206               if (lex_match_id (lexer, "INCLUDE"))
207                 {
208                   glm.intercept = true;
209                 }
210               else if (lex_match_id (lexer, "EXCLUDE"))
211                 {
212                   glm.intercept = false;
213                 }
214               else
215                 {
216                   lex_error (lexer, NULL);
217                   goto error;
218                 }
219             }
220         }
221       else if (lex_match_id (lexer, "CRITERIA"))
222         {
223           lex_match (lexer, T_EQUALS);
224           if (lex_match_id (lexer, "ALPHA"))
225             {
226               if (lex_force_match (lexer, T_LPAREN))
227                 {
228                   if (! lex_force_num (lexer))
229                     {
230                       lex_error (lexer, NULL);
231                       goto error;
232                     }
233                   
234                   glm.alpha = lex_number (lexer);
235                   lex_get (lexer);
236                   if ( ! lex_force_match (lexer, T_RPAREN))
237                     {
238                       lex_error (lexer, NULL);
239                       goto error;
240                     }
241                 }
242             }
243           else
244             {
245               lex_error (lexer, NULL);
246               goto error;
247             }
248         }
249       else if (lex_match_id (lexer, "METHOD"))
250         {
251           lex_match (lexer, T_EQUALS);
252           if ( !lex_force_match_id (lexer, "SSTYPE"))
253             {
254               lex_error (lexer, NULL);
255               goto error;
256             }
257
258           if ( ! lex_force_match (lexer, T_LPAREN))
259             {
260               lex_error (lexer, NULL);
261               goto error;
262             }
263
264           if ( ! lex_force_int (lexer))
265             {
266               lex_error (lexer, NULL);
267               goto error;
268             }
269
270           glm.ss_type = lex_integer (lexer);
271           if (1 > glm.ss_type  ||  3 < glm.ss_type )
272             {
273               msg (ME, _("Only types 1, 2 & 3 sums of squares are currently implemented"));
274               goto error;
275             }
276
277           lex_get (lexer);
278
279           if ( ! lex_force_match (lexer, T_RPAREN))
280             {
281               lex_error (lexer, NULL);
282               goto error;
283             }
284         }
285       else if (lex_match_id (lexer, "DESIGN"))
286         {
287           lex_match (lexer, T_EQUALS);
288
289           if (! parse_design_spec (lexer, &glm))
290             goto error;
291
292           if (glm.n_interactions > 0)
293             design = true;
294         }
295       else if (lex_match_id (lexer, "SHOWCODES"))
296         /* Undocumented debug option */
297         {
298           lex_match (lexer, T_EQUALS);
299
300           glm.dump_coding = true;
301         }
302       else
303         {
304           lex_error (lexer, NULL);
305           goto error;
306         }
307     }
308
309   if ( ! design )
310     {
311       design_full (&glm);
312     }
313
314   {
315     struct casegrouper *grouper;
316     struct casereader *group;
317     bool ok;
318
319     grouper = casegrouper_create_splits (proc_open (ds), glm.dict);
320     while (casegrouper_get_next_group (grouper, &group))
321       run_glm (&glm, group, ds);
322     ok = casegrouper_destroy (grouper);
323     ok = proc_commit (ds) && ok;
324   }
325
326   const_var_set_destroy (factors);
327   free (glm.factor_vars);
328   for (i = 0 ; i < glm.n_interactions; ++i)
329     interaction_destroy (glm.interactions[i]);
330
331   free (glm.interactions);
332   free (glm.dep_vars);
333
334
335   return CMD_SUCCESS;
336
337 error:
338
339   const_var_set_destroy (factors);
340   free (glm.factor_vars);
341   for (i = 0 ; i < glm.n_interactions; ++i)
342     interaction_destroy (glm.interactions[i]);
343
344   free (glm.interactions);
345   free (glm.dep_vars);
346
347   return CMD_FAILURE;
348 }
349
350 static inline bool
351 not_dropped (size_t j, const bool *ff)
352 {
353   return ! ff[j];
354 }
355
356 static void
357 fill_submatrix (const gsl_matrix * cov, gsl_matrix * submatrix, bool *dropped_f)
358 {
359   size_t i;
360   size_t j;
361   size_t n = 0;
362   size_t m = 0;
363   
364   for (i = 0; i < cov->size1; i++)
365     {
366       if (not_dropped (i, dropped_f))
367         {         
368           m = 0;
369           for (j = 0; j < cov->size2; j++)
370             {
371               if (not_dropped (j, dropped_f))
372                 {
373                   gsl_matrix_set (submatrix, n, m,
374                                   gsl_matrix_get (cov, i, j));
375                   m++;
376                 }       
377             }
378           n++;
379         }
380     }
381 }
382
383
384 /* 
385    Type 1 sums of squares.
386    Populate SSQ with the Type 1 sums of squares according to COV
387  */
388 static void
389 ssq_type1 (struct covariance *cov, gsl_vector *ssq, const struct glm_spec *cmd)
390 {
391   const gsl_matrix *cm = covariance_calculate_unnormalized (cov);
392   size_t i;
393   size_t k;
394   bool *model_dropped = xcalloc (covariance_dim (cov), sizeof (*model_dropped));
395   bool *submodel_dropped = xcalloc (covariance_dim (cov), sizeof (*submodel_dropped));
396   const struct categoricals *cats = covariance_get_categoricals (cov);
397
398   size_t n_dropped_model = 0;
399   size_t n_dropped_submodel = 0;
400
401   for (i = cmd->n_dep_vars; i < covariance_dim (cov); i++)
402     {
403       n_dropped_model++;
404       n_dropped_submodel++;
405       model_dropped[i] = true;
406       submodel_dropped[i] = true;
407     }
408
409   for (k = 0; k < cmd->n_interactions; k++)
410     {
411       gsl_matrix *model_cov = NULL;
412       gsl_matrix *submodel_cov = NULL;
413       
414       n_dropped_submodel = n_dropped_model;
415       for (i = cmd->n_dep_vars; i < covariance_dim (cov); i++)
416         {
417           submodel_dropped[i] = model_dropped[i];
418         }
419
420       for (i = cmd->n_dep_vars; i < covariance_dim (cov); i++)
421         {
422           const struct interaction * x = 
423             categoricals_get_interaction_by_subscript (cats, i - cmd->n_dep_vars);
424
425           if ( x == cmd->interactions [k])
426             {
427               model_dropped[i] = false;
428               n_dropped_model--;
429             }
430         }
431
432       model_cov = gsl_matrix_alloc (cm->size1 - n_dropped_model, cm->size2 - n_dropped_model);
433       submodel_cov = gsl_matrix_alloc (cm->size1 - n_dropped_submodel, cm->size2 - n_dropped_submodel);
434
435       fill_submatrix (cm, model_cov,    model_dropped);
436       fill_submatrix (cm, submodel_cov, submodel_dropped);
437
438       reg_sweep (model_cov, 0);
439       reg_sweep (submodel_cov, 0);
440
441       gsl_vector_set (ssq, k + 1,
442                       gsl_matrix_get (submodel_cov, 0, 0) - gsl_matrix_get (model_cov, 0, 0)
443                       );
444
445       gsl_matrix_free (model_cov);
446       gsl_matrix_free (submodel_cov);
447     }
448
449   free (model_dropped);
450   free (submodel_dropped);
451 }
452
453 /* 
454    Type 2 sums of squares.
455    Populate SSQ with the Type 2 sums of squares according to COV
456  */
457 static void
458 ssq_type2 (struct covariance *cov, gsl_vector *ssq, const struct glm_spec *cmd)
459 {
460   const gsl_matrix *cm = covariance_calculate_unnormalized (cov);
461   size_t i;
462   size_t k;
463   bool *model_dropped = xcalloc (covariance_dim (cov), sizeof (*model_dropped));
464   bool *submodel_dropped = xcalloc (covariance_dim (cov), sizeof (*submodel_dropped));
465   const struct categoricals *cats = covariance_get_categoricals (cov);
466
467   for (k = 0; k < cmd->n_interactions; k++)
468     {
469       gsl_matrix *model_cov = NULL;
470       gsl_matrix *submodel_cov = NULL;
471       size_t n_dropped_model = 0;
472       size_t n_dropped_submodel = 0;
473       for (i = cmd->n_dep_vars; i < covariance_dim (cov); i++)
474         {
475           const struct interaction * x = 
476             categoricals_get_interaction_by_subscript (cats, i - cmd->n_dep_vars);
477
478           model_dropped[i] = false;
479           submodel_dropped[i] = false;
480           if (interaction_is_subset (cmd->interactions [k], x))
481             {
482               assert (n_dropped_submodel < covariance_dim (cov));
483               n_dropped_submodel++;
484               submodel_dropped[i] = true;
485
486               if ( cmd->interactions [k]->n_vars < x->n_vars)
487                 {
488                   assert (n_dropped_model < covariance_dim (cov));
489                   n_dropped_model++;
490                   model_dropped[i] = true;
491                 }
492             }
493         }
494
495       model_cov = gsl_matrix_alloc (cm->size1 - n_dropped_model, cm->size2 - n_dropped_model);
496       submodel_cov = gsl_matrix_alloc (cm->size1 - n_dropped_submodel, cm->size2 - n_dropped_submodel);
497
498       fill_submatrix (cm, model_cov,    model_dropped);
499       fill_submatrix (cm, submodel_cov, submodel_dropped);
500
501       reg_sweep (model_cov, 0);
502       reg_sweep (submodel_cov, 0);
503
504       gsl_vector_set (ssq, k + 1,
505                       gsl_matrix_get (submodel_cov, 0, 0) - gsl_matrix_get (model_cov, 0, 0)
506                       );
507
508       gsl_matrix_free (model_cov);
509       gsl_matrix_free (submodel_cov);
510     }
511
512   free (model_dropped);
513   free (submodel_dropped);
514 }
515
516 /* 
517    Type 3 sums of squares.
518    Populate SSQ with the Type 2 sums of squares according to COV
519  */
520 static void
521 ssq_type3 (struct covariance *cov, gsl_vector *ssq, const struct glm_spec *cmd)
522 {
523   const gsl_matrix *cm = covariance_calculate_unnormalized (cov);
524   size_t i;
525   size_t k;
526   bool *model_dropped = xcalloc (covariance_dim (cov), sizeof (*model_dropped));
527   bool *submodel_dropped = xcalloc (covariance_dim (cov), sizeof (*submodel_dropped));
528   const struct categoricals *cats = covariance_get_categoricals (cov);
529
530   double ss0;
531   gsl_matrix *submodel_cov = gsl_matrix_alloc (cm->size1, cm->size2);
532   fill_submatrix (cm, submodel_cov, submodel_dropped);
533   reg_sweep (submodel_cov, 0);
534   ss0 = gsl_matrix_get (submodel_cov, 0, 0);
535   gsl_matrix_free (submodel_cov);
536   free (submodel_dropped);
537
538   for (k = 0; k < cmd->n_interactions; k++)
539     {
540       gsl_matrix *model_cov = NULL;
541       size_t n_dropped_model = 0;
542
543       for (i = cmd->n_dep_vars; i < covariance_dim (cov); i++)
544         {
545           const struct interaction * x = 
546             categoricals_get_interaction_by_subscript (cats, i - cmd->n_dep_vars);
547
548           model_dropped[i] = false;
549
550           if ( cmd->interactions [k] == x)
551             {
552               assert (n_dropped_model < covariance_dim (cov));
553               n_dropped_model++;
554               model_dropped[i] = true;
555             }
556         }
557
558       model_cov = gsl_matrix_alloc (cm->size1 - n_dropped_model, cm->size2 - n_dropped_model);
559
560       fill_submatrix (cm, model_cov,    model_dropped);
561
562       reg_sweep (model_cov, 0);
563
564       gsl_vector_set (ssq, k + 1,
565                       gsl_matrix_get (model_cov, 0, 0) - ss0);
566
567       gsl_matrix_free (model_cov);
568     }
569   free (model_dropped);
570 }
571
572
573
574 //static  void dump_matrix (const gsl_matrix *m);
575
576 static void
577 run_glm (struct glm_spec *cmd, struct casereader *input,
578          const struct dataset *ds)
579 {
580   bool warn_bad_weight = true;
581   int v;
582   struct taint *taint;
583   struct dictionary *dict = dataset_dict (ds);
584   struct casereader *reader;
585   struct ccase *c;
586
587   struct glm_workspace ws;
588   struct covariance *cov;
589
590   ws.cats = categoricals_create (cmd->interactions, cmd->n_interactions,
591                                  cmd->wv, cmd->exclude, MV_ANY);
592
593   cov = covariance_2pass_create (cmd->n_dep_vars, cmd->dep_vars,
594                                  ws.cats, cmd->wv, cmd->exclude);
595
596
597   c = casereader_peek (input, 0);
598   if (c == NULL)
599     {
600       casereader_destroy (input);
601       return;
602     }
603   output_split_file_values (ds, c);
604   case_unref (c);
605
606   taint = taint_clone (casereader_get_taint (input));
607
608   ws.totals = moments_create (MOMENT_VARIANCE);
609
610   for (reader = casereader_clone (input);
611        (c = casereader_read (reader)) != NULL; case_unref (c))
612     {
613       double weight = dict_get_case_weight (dict, c, &warn_bad_weight);
614
615       for (v = 0; v < cmd->n_dep_vars; ++v)
616         moments_pass_one (ws.totals, case_data (c, cmd->dep_vars[v])->f,
617                           weight);
618
619       covariance_accumulate_pass1 (cov, c);
620     }
621   casereader_destroy (reader);
622
623   if (cmd->dump_coding)
624     reader = casereader_clone (input);
625   else
626     reader = input;
627
628   for (;
629        (c = casereader_read (reader)) != NULL; case_unref (c))
630     {
631       double weight = dict_get_case_weight (dict, c, &warn_bad_weight);
632
633       for (v = 0; v < cmd->n_dep_vars; ++v)
634         moments_pass_two (ws.totals, case_data (c, cmd->dep_vars[v])->f,
635                           weight);
636
637       covariance_accumulate_pass2 (cov, c);
638     }
639   casereader_destroy (reader);
640
641
642   if (cmd->dump_coding)
643     {
644       struct tab_table *t =
645         covariance_dump_enc_header (cov,
646                                     1 + casereader_count_cases (input));
647       for (reader = input;
648            (c = casereader_read (reader)) != NULL; case_unref (c))
649         {
650           covariance_dump_enc (cov, c, t);
651         }
652       casereader_destroy (reader);
653       tab_submit (t);
654     }
655
656   {
657     const gsl_matrix *ucm = covariance_calculate_unnormalized (cov);
658     gsl_matrix *cm = gsl_matrix_alloc (ucm->size1, ucm->size2);
659     gsl_matrix_memcpy (cm, ucm);
660
661     //    dump_matrix (cm);
662
663     ws.total_ssq = gsl_matrix_get (cm, 0, 0);
664
665     reg_sweep (cm, 0);
666
667     /*
668       Store the overall SSE.
669     */
670     ws.ssq = gsl_vector_alloc (cm->size1);
671     gsl_vector_set (ws.ssq, 0, gsl_matrix_get (cm, 0, 0));
672     switch (cmd->ss_type)
673       {
674       case 1:
675         ssq_type1 (cov, ws.ssq, cmd);
676         break;
677       case 2:
678         ssq_type2 (cov, ws.ssq, cmd);
679         break;
680       case 3:
681         ssq_type3 (cov, ws.ssq, cmd);
682         break;
683       default:
684         NOT_REACHED ();
685         break;
686       }
687     //    dump_matrix (cm);
688     gsl_matrix_free (cm);
689   }
690
691   if (!taint_has_tainted_successor (taint))
692     output_glm (cmd, &ws);
693
694   gsl_vector_free (ws.ssq);
695
696   covariance_destroy (cov);
697   moments_destroy (ws.totals);
698
699   taint_destroy (taint);
700 }
701
702 static const char *roman[] = 
703   {
704     "", /* The Romans had no concept of zero */
705     "I",
706     "II",
707     "III",
708     "IV"
709   };
710
711 static void
712 output_glm (const struct glm_spec *cmd, const struct glm_workspace *ws)
713 {
714   const struct fmt_spec *wfmt =
715     cmd->wv ? var_get_print_format (cmd->wv) : &F_8_0;
716
717   double intercept_ssq;
718   double ssq_effects;
719   double n_total, mean;
720   double df_corr = 1.0;
721   double mse = 0;
722
723   int f;
724   int r;
725   const int heading_columns = 1;
726   const int heading_rows = 1;
727   struct tab_table *t;
728
729   const int nc = 6;
730   int nr = heading_rows + 3 + cmd->n_interactions;
731   if (cmd->intercept)
732     nr += 2;
733
734   t = tab_create (nc, nr);
735   tab_set_format (t, RC_WEIGHT, wfmt);
736   tab_title (t, _("Tests of Between-Subjects Effects"));
737
738   tab_headers (t, heading_columns, 0, heading_rows, 0);
739
740   tab_box (t, TAL_2, TAL_2, -1, TAL_1, 0, 0, nc - 1, nr - 1);
741
742   tab_hline (t, TAL_2, 0, nc - 1, heading_rows);
743   tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
744
745   tab_text (t, 0, 0, TAB_CENTER | TAT_TITLE, _("Source"));
746
747   /* TRANSLATORS: The parameter is a roman numeral */
748   tab_text_format (t, 1, 0, TAB_CENTER | TAT_TITLE,
749                    _("Type %s Sum of Squares"), 
750                    roman[cmd->ss_type]);
751   tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("df"));
752   tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Mean Square"));
753   tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("F"));
754   tab_text (t, 5, 0, TAB_CENTER | TAT_TITLE, _("Sig."));
755
756   moments_calculate (ws->totals, &n_total, &mean, NULL, NULL, NULL);
757
758   df_corr += categoricals_df_total (ws->cats);
759
760   r = heading_rows;
761   if (cmd->intercept)
762     tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Corrected Model"));
763   else
764     tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Model"));
765
766   r++;
767
768   mse = gsl_vector_get (ws->ssq, 0) / (n_total - df_corr);
769
770   intercept_ssq = pow2 (mean * n_total) / n_total;
771
772   ssq_effects = 0.0;
773   if (cmd->intercept)
774     {
775       const double df = 1.0;
776       const double F = intercept_ssq / df / mse;
777       tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Intercept"));
778       /* The intercept for unbalanced models is of limited use and
779          nobody knows how to calculate it properly */
780       if (categoricals_isbalanced (ws->cats))
781         {
782           tab_double (t, 1, r, 0, intercept_ssq, NULL, RC_OTHER);
783           tab_double (t, 2, r, 0, 1.00, NULL, RC_WEIGHT);
784           tab_double (t, 3, r, 0, intercept_ssq / df, NULL, RC_OTHER);
785           tab_double (t, 4, r, 0, F, NULL, RC_OTHER);
786           tab_double (t, 5, r, 0, gsl_cdf_fdist_Q (F, df, n_total - df_corr),
787                       NULL, RC_PVALUE);
788         }
789       r++;
790     }
791
792   for (f = 0; f < cmd->n_interactions; ++f)
793     {
794       struct string str = DS_EMPTY_INITIALIZER;
795       double df = categoricals_df (ws->cats, f);
796
797       double ssq = gsl_vector_get (ws->ssq, f + 1);
798       double F;
799
800       ssq_effects += ssq;
801
802       if (! cmd->intercept) 
803         {
804           df++;
805           ssq += intercept_ssq;
806         }
807
808       F = ssq / df / mse;
809       interaction_to_string (cmd->interactions[f], &str);
810       tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, ds_cstr (&str));
811       ds_destroy (&str);
812
813       tab_double (t, 1, r, 0, ssq, NULL, RC_OTHER);
814       tab_double (t, 2, r, 0, df, NULL, RC_WEIGHT);
815       tab_double (t, 3, r, 0, ssq / df, NULL, RC_OTHER);
816       tab_double (t, 4, r, 0, F, NULL, RC_OTHER);
817
818       tab_double (t, 5, r, 0, gsl_cdf_fdist_Q (F, df, n_total - df_corr),
819                   NULL, RC_PVALUE);
820       r++;
821     }
822
823   {
824     /* Model / Corrected Model */
825     double df = df_corr;
826     double ssq = ws->total_ssq - gsl_vector_get (ws->ssq, 0);
827     double F;
828
829     if ( cmd->intercept )
830       df --;
831     else
832       ssq += intercept_ssq;
833
834     F = ssq / df / mse;
835     tab_double (t, 1, heading_rows, 0, ssq, NULL, RC_OTHER);
836     tab_double (t, 2, heading_rows, 0, df, NULL, RC_WEIGHT);
837     tab_double (t, 3, heading_rows, 0, ssq / df, NULL, RC_OTHER);
838     tab_double (t, 4, heading_rows, 0, F, NULL, RC_OTHER);
839
840     tab_double (t, 5, heading_rows, 0,
841                 gsl_cdf_fdist_Q (F, df, n_total - df_corr), NULL, RC_PVALUE);
842   }
843
844   {
845     const double df = n_total - df_corr;
846     const double ssq = gsl_vector_get (ws->ssq, 0);
847     const double mse = ssq / df;
848     tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Error"));
849     tab_double (t, 1, r, 0, ssq, NULL, RC_OTHER);
850     tab_double (t, 2, r, 0, df, NULL, RC_WEIGHT);
851     tab_double (t, 3, r++, 0, mse, NULL, RC_OTHER);
852   }
853
854   {
855     tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Total"));
856     tab_double (t, 1, r, 0, ws->total_ssq + intercept_ssq, NULL, RC_OTHER);
857     tab_double (t, 2, r, 0, n_total, NULL, RC_WEIGHT);
858     
859     r++;
860   }
861
862   if (cmd->intercept)
863     {
864       tab_text (t, 0, r, TAB_LEFT | TAT_TITLE, _("Corrected Total"));
865       tab_double (t, 1, r, 0, ws->total_ssq, NULL, RC_OTHER);
866       tab_double (t, 2, r, 0, n_total - 1.0, NULL, RC_WEIGHT);
867     }
868
869   tab_submit (t);
870 }
871
872 #if 0
873 static void
874 dump_matrix (const gsl_matrix * m)
875 {
876   size_t i, j;
877   for (i = 0; i < m->size1; ++i)
878     {
879       for (j = 0; j < m->size2; ++j)
880         {
881           double x = gsl_matrix_get (m, i, j);
882           printf ("%.3f ", x);
883         }
884       printf ("\n");
885     }
886   printf ("\n");
887 }
888 #endif
889
890
891 \f
892 static bool
893 parse_nested_variable (struct lexer *lexer, struct glm_spec *glm)
894 {
895   const struct variable *v = NULL;
896   if ( ! lex_match_variable (lexer, glm->dict, &v))
897     return false;
898
899   if (lex_match (lexer, T_LPAREN))
900     {
901       if ( ! parse_nested_variable (lexer, glm))
902         return false;
903
904       if ( ! lex_force_match (lexer, T_RPAREN))
905         return false;
906     }
907
908   lex_error (lexer, "Nested variables are not yet implemented"); return false;  
909   return true;
910 }
911
912 /* A design term is an interaction OR a nested variable */
913 static bool
914 parse_design_term (struct lexer *lexer, struct glm_spec *glm)
915 {
916   struct interaction *iact = NULL;
917   if (parse_design_interaction (lexer, glm->dict, &iact))
918     {
919       /* Interaction parsing successful.  Add to list of interactions */
920       glm->interactions = xrealloc (glm->interactions, sizeof *glm->interactions * ++glm->n_interactions);
921       glm->interactions[glm->n_interactions - 1] = iact;
922       return true;
923     }
924
925   if ( parse_nested_variable (lexer, glm))
926     return true;
927
928   return false;
929 }
930
931
932
933 /* Parse a complete DESIGN specification.
934    A design spec is a design term, optionally followed by a comma,
935    and another design spec.
936 */
937 static bool
938 parse_design_spec (struct lexer *lexer, struct glm_spec *glm)
939 {
940   if  (lex_token (lexer) == T_ENDCMD || lex_token (lexer) == T_SLASH)
941     return true;
942
943   if ( ! parse_design_term (lexer, glm))
944     return false;
945
946   lex_match (lexer, T_COMMA);
947
948   return parse_design_spec (lexer, glm);
949 }
950