Made GLM as well as ONEWAY work
[pspp] / src / math / categoricals.c
1 /* PSPP - a program for statistical analysis.
2    Copyright (C) 2009, 2010, 2011 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 "math/categoricals.h"
20 #include "math/interaction.h"
21
22 #include <stdio.h>
23
24 #include "data/case.h"
25 #include "data/value.h"
26 #include "data/variable.h"
27 #include "libpspp/array.h"
28 #include "libpspp/hmap.h"
29 #include "libpspp/pool.h"
30 #include "libpspp/str.h"
31 #include "libpspp/hash-functions.h"
32
33 #include "gl/xalloc.h"
34
35 struct value_node
36 {
37   struct hmap_node node;      /* Node in hash map. */
38
39   union value val;            /* The value */
40
41 };
42
43 struct interaction_value
44 {
45   struct hmap_node node;        /* Node in hash map. */
46
47   struct ccase *ccase;          /* A case (probably the first in the dataset) which matches this value */
48
49   /* Total of the weights of cases matching this interaction */
50   double cc; 
51
52   void *user_data;            /* A pointer to data which the caller can store stuff */
53 };
54
55 static struct value_node *
56 lookup_value (const struct hmap *map, const union value *val, unsigned int hash, int width)
57 {
58   struct value_node *vn = NULL;
59   HMAP_FOR_EACH_WITH_HASH (vn, struct value_node, node, hash, map)
60     {
61       if (value_equal (&vn->val, val, width))
62         break;
63     }
64   
65   return vn;
66 }
67
68 struct variable_node
69 {
70   struct hmap_node node;      /* Node in hash map. */
71   const struct variable *var; /* The variable */
72
73   struct hmap valmap;         /* A map of value nodes */
74 };
75
76 static void
77 dump_interaction (const struct interaction *iact)
78 {
79   struct string str = DS_EMPTY_INITIALIZER;
80   interaction_to_string (iact, &str);
81   printf ("Interaction: %s\n", ds_cstr (&str));
82   ds_destroy (&str);
83 }
84
85
86 static struct variable_node *
87 lookup_variable (const struct hmap *map, const struct variable *var, unsigned int hash)
88 {
89   struct variable_node *vn = NULL;
90   HMAP_FOR_EACH_WITH_HASH (vn, struct variable_node, node, hash, map)
91     {
92       if (vn->var == var)
93         break;
94       
95       fprintf (stderr, "Warning: Hash table collision\n");
96     }
97   
98   return vn;
99 }
100
101
102 struct interact_params
103 {
104   /* A map indexed by a interaction_value */
105   struct hmap ivmap;
106
107   const struct interaction *iact;
108
109   int base_subscript_short;
110   int base_subscript_long;
111
112   /* The number of distinct values of this interaction */
113   int n_cats;
114
115   /* The degrees of freedom for this interaction */
116   int df; 
117
118   /* A map of interaction_values indexed by subscript */
119   struct interaction_value **reverse_interaction_value_map;
120
121   double cc;
122 };
123
124
125 /* Comparison function to sort the reverse_value_map in ascending order */
126 static int
127 compare_interaction_value_3way (const void *vn1_, const void *vn2_, const void *aux)
128 {
129   const struct interaction_value *const *vn1p = vn1_;
130   const struct interaction_value *const *vn2p = vn2_;
131
132   const struct interact_params *iap = aux;
133
134   return interaction_case_cmp_3way (iap->iact, (*vn1p)->ccase, (*vn2p)->ccase);
135 }
136
137 struct categoricals
138 {
139   /* The weight variable */
140   const struct variable *wv;
141
142   /* An array of interact_params */
143   struct interact_params *iap;
144
145   /* Map whose members are the union of the variables which comprise IAP */
146   struct hmap varmap;
147
148   /* The size of IAP. (ie, the number of interactions involved.) */
149   size_t n_iap;
150
151   /* The number of categorical variables which contain entries.
152      In the absence of missing values, this will be equal to N_IAP */
153   size_t n_vars;
154
155   size_t df_sum;
156
157   /* A map to enable the lookup of variables indexed by subscript.
158      This map considers only the N - 1 of the N variables.
159    */
160   int *reverse_variable_map_short;
161
162   /* Like the above, but uses all N variables */
163   int *reverse_variable_map_long;
164
165   size_t n_cats_total;
166
167   struct pool *pool;
168
169   /* Missing values to be excluded */
170   enum mv_class exclude;
171
172   /* Function to be called on each update */
173   update_func *update;
174
175   /* Function specified by the caller to create user_data */
176   user_data_create_func *user_data_create;
177
178   /* Auxilliary data to be passed to update and user_data_create_func*/
179   void *aux1;
180   void *aux2;
181 };
182
183
184 static void
185 categoricals_dump (const struct categoricals *cat)
186 {
187   int i;
188
189   printf ("Reverse Variable Map (short):\n");
190   for (i = 0; i < cat->df_sum; ++i)
191     {
192       printf (" %d", cat->reverse_variable_map_short[i]);
193     }
194   printf ("\n");
195
196   printf ("Reverse Variable Map (long):\n");
197   for (i = 0; i < cat->n_cats_total; ++i)
198     {
199       printf (" %d", cat->reverse_variable_map_long[i]);
200     }
201   printf ("\n");
202
203
204   printf ("Number of interactions %d\n", cat->n_iap);
205   for (i = 0 ; i < cat->n_iap; ++i)
206     {
207       int v;
208       struct string str;
209       const struct interact_params *iap = &cat->iap[i];
210       const struct interaction *iact = iap->iact;
211
212       ds_init_empty (&str);
213       interaction_to_string (iact, &str);
214
215       printf ("\nInteraction: %s (n: %d; df: %d ); ", ds_cstr (&str), iap->n_cats, iap->df);
216       ds_destroy (&str);
217       printf ("Base subscript: %d\n", iap->base_subscript_short);
218
219       printf ("\t(");
220       for (v = 0; v < hmap_count (&iap->ivmap); ++v)
221         {
222           int vv;
223           const struct interaction_value *iv = iap->reverse_interaction_value_map[v];
224           
225           if (v > 0)  printf ("   ");
226           printf ("{");
227           for (vv = 0; vv < iact->n_vars; ++vv)
228             {
229               const struct variable *var = iact->vars[vv];
230               const union value *val = case_data (iv->ccase, var);
231               
232               printf ("%g", val->f);
233               if (vv < iact->n_vars - 1)
234                 printf (", ");
235             }
236           printf ("}");
237         }
238       printf (")\n");
239     }
240 }
241
242
243 void
244 categoricals_destroy (struct categoricals *cat)
245 {
246   free (cat);
247 }
248
249
250
251 static struct interaction_value *
252 lookup_case (const struct hmap *map, const struct interaction *iact, const struct ccase *c)
253 {
254   struct interaction_value *iv = NULL;
255   size_t hash = interaction_case_hash (iact, c);
256
257   HMAP_FOR_EACH_WITH_HASH (iv, struct interaction_value, node, hash, map)
258     {
259       if (interaction_case_equal (iact, c, iv->ccase))
260         break;
261
262       fprintf (stderr, "Warning: Hash table collision\n");
263     }
264
265   return iv;
266 }
267
268
269 struct categoricals *
270 categoricals_create (struct interaction *const*inter, size_t n_inter,
271                      const struct variable *wv, enum mv_class exclude,
272                      user_data_create_func *udf,
273                      update_func *update, void *aux1, void *aux2
274                      )
275 {
276   size_t i;
277   struct categoricals *cat = xmalloc (sizeof *cat);
278   
279   cat->n_iap = n_inter;
280   cat->wv = wv;
281   cat->n_cats_total = 0;
282   cat->n_vars = 0;
283   cat->reverse_variable_map_short = NULL;
284   cat->reverse_variable_map_long = NULL;
285   cat->pool = pool_create ();
286   cat->exclude = exclude;
287   cat->update = update;
288   cat->user_data_create = udf;
289
290   cat->aux1 = aux1;
291   cat->aux2 = aux2;
292
293   cat->iap = pool_calloc (cat->pool, cat->n_iap, sizeof *cat->iap);
294
295   hmap_init (&cat->varmap);
296   for (i = 0 ; i < cat->n_iap; ++i)
297     {
298       int v;
299       hmap_init (&cat->iap[i].ivmap);
300       cat->iap[i].iact = inter[i];
301       cat->iap[i].cc = 0.0;
302       for (v = 0; v < inter[i]->n_vars; ++v)
303         {
304           const struct variable *var = inter[i]->vars[v];
305           unsigned int hash = hash_pointer (var, 0);
306           struct variable_node *vn = lookup_variable (&cat->varmap, var, hash);
307           if (vn == NULL)
308             {
309               vn = pool_malloc (cat->pool, sizeof *vn);
310               vn->var = var;
311               hmap_init (&vn->valmap);
312
313               hmap_insert (&cat->varmap, &vn->node,  hash);
314             }
315         }
316     }
317
318   return cat;
319 }
320
321
322
323 void
324 categoricals_update (struct categoricals *cat, const struct ccase *c)
325 {
326   int i;
327   struct variable_node *vn = NULL;
328   const double weight = cat->wv ? case_data (c, cat->wv)->f : 1.0;
329
330   assert (NULL == cat->reverse_variable_map_short);
331   assert (NULL == cat->reverse_variable_map_long);
332
333   /* Interate over each variable, and add the value of that variable
334      to the appropriate map, if it's not already present. */
335   HMAP_FOR_EACH (vn, struct variable_node, node, &cat->varmap)
336     {
337       const int width = var_get_width (vn->var);
338       const union value *val = case_data (c, vn->var);
339       unsigned int hash = value_hash (val, width, 0);
340
341       struct value_node *valn = lookup_value (&vn->valmap, val, hash, width);
342       if (valn == NULL)
343         {
344           valn = pool_malloc (cat->pool, sizeof *valn);
345           value_init (&valn->val, width);
346           value_copy (&valn->val, val, width);
347           hmap_insert (&vn->valmap, &valn->node, hash);
348         }
349     }     
350   
351
352   for (i = 0 ; i < cat->n_iap; ++i)
353     {
354       const struct interaction *iact = cat->iap[i].iact;
355
356       //      if ( interaction_case_is_missing (iact, c, cat->exclude))
357       //         continue;
358
359       size_t hash = interaction_case_hash (iact, c);
360       struct interaction_value *node = lookup_case (&cat->iap[i].ivmap, iact, c);
361
362       if ( NULL == node)
363         {
364           node = pool_malloc (cat->pool, sizeof *node);
365
366           node->ccase = case_ref (c);
367           node->cc = weight;
368
369           hmap_insert (&cat->iap[i].ivmap, &node->node, hash);
370
371           if (cat->user_data_create)
372             node->user_data = cat->user_data_create (cat->aux1, cat->aux2);
373         }
374       else
375         {
376           node->cc += weight;
377         }
378       cat->iap[i].cc += weight;
379
380       if (cat->update)
381         cat->update (node->user_data, cat->exclude, cat->wv, NULL, c, cat->aux1, cat->aux2);
382     }
383 }
384
385 /* Return the number of categories (distinct values) for interction N */
386 size_t
387 categoricals_n_count (const struct categoricals *cat, size_t n)
388 {
389   return hmap_count (&cat->iap[n].ivmap);
390 }
391
392
393 size_t
394 categoricals_df (const struct categoricals *cat, size_t n)
395 {
396   return cat->iap[n].df;
397 }
398
399
400 /* Return the total number of categories */
401 size_t
402 categoricals_n_total (const struct categoricals *cat)
403 {
404   assert (cat->reverse_variable_map_long);
405
406   return cat->n_cats_total;
407 }
408
409 size_t
410 categoricals_df_total (const struct categoricals *cat)
411 {
412   return cat->df_sum;
413 }
414
415 /* This function must be called *before* any call to categoricals_get_*_by subscript and
416  *after* all calls to categoricals_update */
417 void
418 categoricals_done (const struct categoricals *cat_)
419 {
420   /* Implementation Note: Whilst this function is O(n) in cat->n_cats_total, in most
421      uses it will be more efficient that using a tree based structure, since it
422      is called only once, and means that subsequent lookups will be O(1).
423
424      1 call of O(n) + 10^9 calls of O(1) is better than 10^9 calls of O(log n).
425   */
426   struct categoricals *cat = CONST_CAST (struct categoricals *, cat_);
427   int v;
428   int i;
429   int idx_short = 0;
430   int idx_long = 0;
431   cat->df_sum = 0;
432   cat->n_cats_total = 0;
433
434   /* Calculate the degrees of freedom, and the number of categories */
435   for (i = 0 ; i < cat->n_iap; ++i)
436     {
437       const struct interaction *iact = cat->iap[i].iact;
438
439       cat->iap[i].df = 1;
440       cat->iap[i].n_cats = 1;
441
442       for (v = 0 ; v < iact->n_vars; ++v)
443         {
444           const struct variable *var = iact->vars[v];
445
446           struct variable_node *vn = lookup_variable (&cat->varmap, var, hash_pointer (var, 0));
447
448           cat->iap[i].df *= hmap_count (&vn->valmap) - 1;
449           cat->iap[i].n_cats *= hmap_count (&vn->valmap);
450         }
451
452       cat->df_sum += cat->iap[i].df;
453       cat->n_cats_total += cat->iap[i].n_cats;
454     }
455
456
457   cat->reverse_variable_map_short = pool_calloc (cat->pool,
458                                                  cat->df_sum,
459                                                  sizeof *cat->reverse_variable_map_short);
460
461   cat->reverse_variable_map_long = pool_calloc (cat->pool,
462                                                 cat->n_cats_total,
463                                                 sizeof *cat->reverse_variable_map_long);
464
465   for (i = 0 ; i < cat->n_iap; ++i)
466     {
467       struct interaction_value *ivn = NULL;
468       int x = 0;
469       int ii;
470       struct interact_params *iap = &cat->iap[i];
471
472       iap->base_subscript_short = idx_short;
473       iap->base_subscript_long = idx_long;
474
475       iap->reverse_interaction_value_map = pool_calloc (cat->pool, iap->n_cats,
476                                                         sizeof *iap->reverse_interaction_value_map);
477
478       HMAP_FOR_EACH (ivn, struct interaction_value, node, &iap->ivmap)
479         {
480           iap->reverse_interaction_value_map[x++] = ivn;
481         }
482
483       assert (x <= iap->n_cats);
484
485       /* For some purposes (eg CONTRASTS in ONEWAY) the values need to be sorted */
486       sort (iap->reverse_interaction_value_map, x, sizeof (*iap->reverse_interaction_value_map),
487             compare_interaction_value_3way, iap);
488
489       /* Populate the reverse variable maps. */
490       for (ii = 0; ii < iap->df; ++ii)
491         cat->reverse_variable_map_short[idx_short++] = i;
492
493       for (ii = 0; ii < iap->n_cats; ++ii)
494         cat->reverse_variable_map_long[idx_long++] = i;
495     }
496
497   assert (cat->n_vars <= cat->n_iap);
498
499   //  categoricals_dump (cat);
500 }
501
502
503 static int
504 reverse_variable_lookup_short (const struct categoricals *cat, int subscript)
505 {
506   assert (cat->reverse_variable_map_short);
507   assert (subscript >= 0);
508   assert (subscript < cat->df_sum);
509
510   return cat->reverse_variable_map_short[subscript];
511 }
512
513 static int
514 reverse_variable_lookup_long (const struct categoricals *cat, int subscript)
515 {
516   assert (cat->reverse_variable_map_long);
517   assert (subscript >= 0);
518   assert (subscript < cat->n_cats_total);
519
520   return cat->reverse_variable_map_long[subscript];
521 }
522
523
524 /* Return the interaction corresponding to SUBSCRIPT */
525 const struct interaction *
526 categoricals_get_interaction_by_subscript (const struct categoricals *cat, int subscript)
527 {
528   int index = reverse_variable_lookup_short (cat, subscript);
529
530   return cat->iap[index].iact;
531 }
532
533
534 /* Return the case corresponding to SUBSCRIPT */
535 static const struct ccase *
536 categoricals_get_case_by_subscript (const struct categoricals *cat, int subscript)
537 {
538   int vindex = reverse_variable_lookup_short (cat, subscript);
539   const struct interact_params *vp = &cat->iap[vindex];
540   const struct interaction_value *vn = vp->reverse_interaction_value_map [subscript - vp->base_subscript_short];
541   return vn->ccase;
542 }
543
544
545 double
546 categoricals_get_weight_by_subscript (const struct categoricals *cat, int subscript)
547 {
548   int vindex = reverse_variable_lookup_short (cat, subscript);
549   const struct interact_params *vp = &cat->iap[vindex];
550
551   return vp->cc;
552 }
553
554 double
555 categoricals_get_sum_by_subscript (const struct categoricals *cat, int subscript)
556 {
557   int vindex = reverse_variable_lookup_short (cat, subscript);
558   const struct interact_params *vp = &cat->iap[vindex];
559
560   const struct interaction_value *iv = vp->reverse_interaction_value_map [subscript - vp->base_subscript_short];
561
562   return iv->cc;
563 }
564
565 /* Returns unity if the value in case C at SUBSCRIPT is equal to the category
566    for that subscript */
567 double
568 categoricals_get_binary_by_subscript (const struct categoricals *cat, int subscript,
569                                       const struct ccase *c)
570 {
571   const struct interaction *iact = categoricals_get_interaction_by_subscript (cat, subscript);
572
573   const struct ccase *c2 =  categoricals_get_case_by_subscript (cat, subscript);
574
575   return interaction_case_equal (iact, c, c2);
576 }
577
578
579 size_t
580 categoricals_get_n_variables (const struct categoricals *cat)
581 {
582   printf ("%s\n", __FUNCTION__);
583   return cat->n_vars;
584 }
585
586 /* Return a case containing the set of values corresponding to SUBSCRIPT */
587 const struct ccase *
588 categoricals_get_case_by_category (const struct categoricals *cat, int subscript)
589 {
590   int vindex = reverse_variable_lookup_long (cat, subscript);
591   const struct interact_params *vp = &cat->iap[vindex];
592   const struct interaction_value *vn = vp->reverse_interaction_value_map [subscript - vp->base_subscript_long];
593
594   return vn->ccase;
595 }
596
597 void *
598 categoricals_get_user_data_by_category (const struct categoricals *cat, int subscript)
599 {
600   int vindex = reverse_variable_lookup_long (cat, subscript);
601   const struct interact_params *vp = &cat->iap[vindex];
602
603   const struct interaction_value *iv = vp->reverse_interaction_value_map [subscript - vp->base_subscript_long];
604   return iv->user_data;
605 }