1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2015 Free Software Foundation, Inc.
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.
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.
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/>. */
19 #include "output/charts/barchart.h"
20 #include "output/charts/piechart.h"
24 #include "libpspp/cast.h"
25 #include "libpspp/str.h"
26 #include "libpspp/array.h"
27 #include "output/chart-item-provider.h"
29 #include "gl/xalloc.h"
30 #include "data/variable.h"
31 #include "language/stats/freq.h"
35 compare_category_3way (const void *a_, const void *b_, const void *bc_)
37 const struct category *const*a = a_;
38 const struct category *const*b = b_;
39 const struct barchart *bc = bc_;
41 return value_compare_3way (&(*a)->val, &(*b)->val, var_get_width (bc->var[1]));
46 hash_freq_2level_ptr (const void *a_, const void *bc_)
48 const struct freq *const *ap = a_;
49 const struct barchart *bc = bc_;
51 size_t hash = value_hash (&(*ap)->values[0], bc->widths[0], 0);
54 hash = value_hash (&(*ap)->values[1], bc->widths[1], hash);
61 compare_freq_2level_ptr_3way (const void *a_, const void *b_, const void *bc_)
63 const struct freq *const *ap = a_;
64 const struct freq *const *bp = b_;
65 const struct barchart *bc = bc_;
67 const int level0 = value_compare_3way (&(*ap)->values[0], &(*bp)->values[0], bc->widths[0]);
69 if (level0 == 0 && bc->n_vars > 1)
70 return value_compare_3way (&(*ap)->values[1], &(*bp)->values[1], bc->widths[1]);
77 /* Creates and returns a chart that will render a barchart with
78 the given TITLE and the N_CATS described in CATS.
80 VAR is an array containing the categorical variables, and N_VAR
81 the number of them. N_VAR must be exactly 1 or 2.
83 CATS are the counts of the values of those variables. N_CATS is the
84 number of distinct values.
87 barchart_create (const struct variable **var, int n_vars,
88 const char *ylabel, bool percent,
89 struct freq *const *cats, int n_cats)
98 int width = var_get_width (var[pidx]);
100 assert (n_vars >= 1);
102 bar = xzalloc (sizeof *bar);
103 bar->percent = percent;
105 bar->n_vars = n_vars;
106 bar->n_nzcats = n_cats;
107 chart_item_init (&bar->chart_item, &barchart_class, var_to_string (var[pidx]));
110 bar->ylabel = strdup (ylabel);
114 hmap_init (&bar->primaries);
117 Iterate the categories and create a hash table of the primary categories.
118 We need to do this to find out how many there are and to cache the labels.
120 for (i = 0; i < n_cats; i++)
122 const struct freq *src = cats[i];
123 size_t hash = value_hash (&src->values[pidx], width, 0);
125 struct category *foo;
127 HMAP_FOR_EACH_WITH_HASH (foo, struct category, node, hash, &bar->primaries)
129 if (value_equal (&foo->val, &src->values[pidx], width))
138 struct category *s = xzalloc (sizeof *s);
140 s->width = var_get_width (var[pidx]);
141 value_init (&s->val, s->width);
142 value_copy (&s->val, &src->values[pidx], s->width);
143 ds_init_empty (&s->label);
144 var_append_value_name (var[pidx], &s->val, &s->label);
146 hmap_insert (&bar->primaries, &s->node, hash);
150 bar->n_pcats = hmap_count (&bar->primaries);
155 hmap_init (&bar->secondaries);
157 /* Iterate the categories, and create a hash table of secondary categories */
158 for (i = 0; i < n_cats; i++)
160 struct freq *src = cats[i];
162 struct category *foo;
164 size_t hash = value_hash (&src->values[sidx], var_get_width (var[sidx]), 0);
165 HMAP_FOR_EACH_WITH_HASH (foo, struct category, node, hash, &bar->secondaries)
167 if (value_equal (&foo->val, &src->values[sidx], var_get_width (var[sidx])))
176 struct category *s = xzalloc (sizeof *s);
178 s->width = var_get_width (var[sidx]);
179 value_init (&s->val, s->width);
180 value_copy (&s->val, &src->values[sidx], var_get_width (var[sidx]));
181 ds_init_empty (&s->label);
182 var_append_value_name (var[sidx], &s->val, &s->label);
184 hmap_insert (&bar->secondaries, &s->node, hash);
185 bar->ss = xrealloc (bar->ss, idx * sizeof *bar->ss);
186 bar->ss[idx - 1] = s;
190 int n_category = hmap_count (&bar->secondaries);
192 sort (bar->ss, n_category, sizeof *bar->ss,
193 compare_category_3way, bar);
197 /* Deep copy. Not necessary for cmd line, but essential for the GUI,
198 since an expose callback will access these structs which may not
201 bar->cats = xcalloc (n_cats, sizeof *bar->cats);
203 bar->widths[0] = var_get_width (bar->var[0]);
205 bar->widths[1] = var_get_width (bar->var[1]);
208 struct hmap level2table;
209 hmap_init (&level2table);
212 for (i = 0; i < n_cats; i++)
214 struct freq *c = cats[i];
218 size_t hash = hash_freq_2level_ptr (&c, bar);
219 HMAP_FOR_EACH_WITH_HASH (foo, struct freq, node, hash, &level2table)
221 if (0 == compare_freq_2level_ptr_3way (&foo, &c, bar))
223 foo->count += c->count;
224 bar->total_count += c->count;
226 if (foo->count > bar->largest)
227 bar->largest = foo->count;
236 struct freq *aggregated_freq = freq_clone (c, n_vars, bar->widths);
237 hmap_insert (&level2table, &aggregated_freq->node, hash);
239 if (c->count > bar->largest)
240 bar->largest = aggregated_freq->count;
242 bar->total_count += c->count;
243 bar->cats[x++] = aggregated_freq;
247 bar->n_nzcats = hmap_count (&level2table);
248 hmap_destroy (&level2table);
251 sort (bar->cats, bar->n_nzcats, sizeof *bar->cats,
252 compare_freq_2level_ptr_3way, bar);
254 return &bar->chart_item;
258 destroy_cat_map (struct hmap *m)
260 struct category *foo = NULL;
261 struct category *next = NULL;
262 HMAP_FOR_EACH_SAFE (foo, next, struct category, node, m)
264 value_destroy (&foo->val, foo->width);
266 ds_destroy (&foo->label);
274 barchart_destroy (struct chart_item *chart_item)
276 struct barchart *bar = to_barchart (chart_item);
280 destroy_cat_map (&bar->primaries);
283 destroy_cat_map (&bar->secondaries);
286 for (i = 0; i < bar->n_nzcats; i++)
288 freq_destroy (bar->cats[i], bar->n_vars, bar->widths);
297 const struct chart_item_class barchart_class =