1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 2011, 2012, 2013 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 "data/case.h"
20 #include "data/casegrouper.h"
21 #include "data/casereader.h"
22 #include "data/dataset.h"
23 #include "data/dictionary.h"
24 #include "data/format.h"
25 #include "data/variable.h"
27 #include "language/command.h"
28 #include "language/lexer/lexer.h"
29 #include "language/lexer/variable-parser.h"
31 #include "libpspp/misc.h"
32 #include "libpspp/pool.h"
34 #include "math/categoricals.h"
35 #include "math/interaction.h"
36 #include "math/moments.h"
38 #include "output/tab.h"
43 #define _(msgid) gettext (msgid)
44 #define N_(msgid) (msgid)
56 typedef void *stat_create (struct pool *pool);
57 typedef void stat_update (void *stat, double w, double x);
58 typedef double stat_get (const struct per_var_data *, void *aux);
62 /* Printable title for output */
65 /* Keyword for syntax */
80 harmonic_create (struct pool *pool)
82 struct harmonic_mean *hm = pool_alloc (pool, sizeof *hm);
92 harmonic_update (void *stat, double w, double x)
94 struct harmonic_mean *hm = stat;
101 harmonic_get (const struct per_var_data *pvd UNUSED, void *stat)
103 struct harmonic_mean *hm = stat;
105 return hm->n / hm->rsum;
110 struct geometric_mean
118 geometric_create (struct pool *pool)
120 struct geometric_mean *gm = pool_alloc (pool, sizeof *gm);
130 geometric_update (void *stat, double w, double x)
132 struct geometric_mean *gm = stat;
133 gm->prod *= pow (x, w);
139 geometric_get (const struct per_var_data *pvd UNUSED, void *stat)
141 struct geometric_mean *gm = stat;
143 return pow (gm->prod, 1.0 / gm->n);
149 sum_get (const struct per_var_data *pvd, void *stat UNUSED)
153 moments1_calculate (pvd->mom, &n, &mean, 0, 0, 0);
160 n_get (const struct per_var_data *pvd, void *stat UNUSED)
164 moments1_calculate (pvd->mom, &n, 0, 0, 0, 0);
170 arithmean_get (const struct per_var_data *pvd, void *stat UNUSED)
174 moments1_calculate (pvd->mom, &n, &mean, 0, 0, 0);
180 variance_get (const struct per_var_data *pvd, void *stat UNUSED)
182 double n, mean, variance;
184 moments1_calculate (pvd->mom, &n, &mean, &variance, 0, 0);
191 stddev_get (const struct per_var_data *pvd, void *stat)
193 return sqrt (variance_get (pvd, stat));
200 skew_get (const struct per_var_data *pvd, void *stat UNUSED)
204 moments1_calculate (pvd->mom, NULL, NULL, NULL, &skew, 0);
210 sekurt_get (const struct per_var_data *pvd, void *stat UNUSED)
214 moments1_calculate (pvd->mom, &n, NULL, NULL, NULL, NULL);
216 return calc_sekurt (n);
220 seskew_get (const struct per_var_data *pvd, void *stat UNUSED)
224 moments1_calculate (pvd->mom, &n, NULL, NULL, NULL, NULL);
226 return calc_seskew (n);
230 kurt_get (const struct per_var_data *pvd, void *stat UNUSED)
234 moments1_calculate (pvd->mom, NULL, NULL, NULL, NULL, &kurt);
240 semean_get (const struct per_var_data *pvd, void *stat UNUSED)
244 moments1_calculate (pvd->mom, &n, NULL, &var, NULL, NULL);
246 return sqrt (var / n);
252 min_create (struct pool *pool)
254 double *r = pool_alloc (pool, sizeof *r);
262 min_update (void *stat, double w UNUSED, double x)
271 min_get (const struct per_var_data *pvd UNUSED, void *stat)
279 max_create (struct pool *pool)
281 double *r = pool_alloc (pool, sizeof *r);
289 max_update (void *stat, double w UNUSED, double x)
298 max_get (const struct per_var_data *pvd UNUSED, void *stat)
314 range_create (struct pool *pool)
316 struct range *r = pool_alloc (pool, sizeof *r);
325 range_update (void *stat, double w UNUSED, double x)
327 struct range *r = stat;
337 range_get (const struct per_var_data *pvd UNUSED, void *stat)
339 struct range *r = stat;
341 return r->max - r->min;
347 last_create (struct pool *pool)
349 double *l = pool_alloc (pool, sizeof *l);
355 last_update (void *stat, double w UNUSED, double x)
363 last_get (const struct per_var_data *pvd UNUSED, void *stat)
372 first_create (struct pool *pool)
374 double *f = pool_alloc (pool, sizeof *f);
382 first_update (void *stat, double w UNUSED, double x)
391 first_get (const struct per_var_data *pvd UNUSED, void *stat)
405 /* Table of cell_specs */
406 static const struct cell_spec cell_spec[] = {
407 {N_("Mean"), "MEAN", NULL, NULL, arithmean_get},
408 {N_("N"), "COUNT", NULL, NULL, n_get},
409 {N_("Std. Deviation"), "STDDEV", NULL, NULL, stddev_get},
411 {N_("Median"), "MEDIAN", NULL, NULL, NULL},
412 {N_("Group Median"), "GMEDIAN", NULL, NULL, NULL},
414 {N_("S.E. Mean"), "SEMEAN", NULL, NULL, semean_get},
415 {N_("Sum"), "SUM", NULL, NULL, sum_get},
416 {N_("Min"), "MIN", min_create, min_update, min_get},
417 {N_("Max"), "MAX", max_create, max_update, max_get},
418 {N_("Range"), "RANGE", range_create, range_update, range_get},
419 {N_("Variance"), "VARIANCE", NULL, NULL, variance_get},
420 {N_("Kurtosis"), "KURT", NULL, NULL, kurt_get},
421 {N_("S.E. Kurt"), "SEKURT", NULL, NULL, sekurt_get},
422 {N_("Skewness"), "SKEW", NULL, NULL, skew_get},
423 {N_("S.E. Skew"), "SESKEW", NULL, NULL, seskew_get},
424 {N_("First"), "FIRST", first_create, first_update, first_get},
425 {N_("Last"), "LAST", last_create, last_update, last_get},
427 {N_("Percent N"), "NPCT", NULL, NULL, NULL},
428 {N_("Percent Sum"), "SPCT", NULL, NULL, NULL},
430 {N_("Harmonic Mean"), "HARMONIC", harmonic_create, harmonic_update, harmonic_get},
431 {N_("Geom. Mean"), "GEOMETRIC", geometric_create, geometric_update, geometric_get}
434 #define n_C (sizeof (cell_spec) / sizeof (struct cell_spec))
440 casenumber non_missing;
446 size_t n_factor_vars;
447 const struct variable **factor_vars;
450 /* The thing parsed after TABLES= */
454 const struct variable **dep_vars;
457 struct layer *layers;
459 struct interaction **interactions;
460 struct summary *summary;
464 struct categoricals *cats;
469 const struct dictionary *dict;
471 struct mtable *table;
474 /* Missing value class for categorical variables */
475 enum mv_class exclude;
477 /* Missing value class for dependent variables */
478 enum mv_class dep_exclude;
480 bool listwise_exclude;
482 /* an array indicating which statistics are to be calculated */
488 /* Pool on which cell functions may allocate data */
494 run_means (struct means *cmd, struct casereader *input,
495 const struct dataset *ds);
500 parse_means_table_syntax (struct lexer *lexer, const struct means *cmd, struct mtable *table)
504 table->layers = NULL;
505 table->interactions = NULL;
507 /* Dependent variable (s) */
508 if (!parse_variables_const_pool (lexer, cmd->pool, cmd->dict,
509 &table->dep_vars, &table->n_dep_vars,
510 PV_NO_DUPLICATE | PV_NUMERIC))
513 /* Factor variable (s) */
514 while (lex_token (lexer) != T_ENDCMD && lex_token (lexer) != T_SLASH)
516 if (lex_match (lexer, T_BY))
520 pool_realloc (cmd->pool, table->layers,
521 sizeof (*table->layers) * table->n_layers);
523 if (!parse_variables_const_pool
524 (lexer, cmd->pool, cmd->dict,
525 &table->layers[table->n_layers - 1].factor_vars,
526 &table->layers[table->n_layers - 1].n_factor_vars,
533 /* There is always at least one layer.
534 However the final layer is the total, and not
535 normally considered by the user as a
541 pool_realloc (cmd->pool, table->layers,
542 sizeof (*table->layers) * table->n_layers);
543 table->layers[table->n_layers - 1].factor_vars = NULL;
544 table->layers[table->n_layers - 1].n_factor_vars = 0;
550 If the match succeeds, the variable will be placed in VAR.
551 Returns true if successful */
553 lex_is_variable (struct lexer *lexer, const struct dictionary *dict,
557 if (lex_next_token (lexer, n) != T_ID)
560 tstr = lex_next_tokcstr (lexer, n);
562 if (NULL == dict_lookup_var (dict, tstr) )
570 cmd_means (struct lexer *lexer, struct dataset *ds)
576 bool more_tables = true;
578 means.pool = pool_create ();
580 means.exclude = MV_ANY;
581 means.dep_exclude = MV_ANY;
582 means.listwise_exclude = false;
586 means.dict = dataset_dict (ds);
589 means.cells = pool_calloc (means.pool, means.n_cells, sizeof (*means.cells));
592 /* The first three items (MEAN, COUNT, STDDEV) are the default */
593 for (i = 0; i < 3; ++i)
597 /* Optional TABLES = */
598 if (lex_match_id (lexer, "TABLES"))
600 if (! lex_force_match (lexer, T_EQUALS))
606 /* Parse the "tables" */
610 means.table = pool_realloc (means.pool, means.table, means.n_tables * sizeof (*means.table));
612 if (! parse_means_table_syntax (lexer, &means,
613 &means.table[means.n_tables - 1]))
618 /* Look ahead to see if there are more tables to be parsed */
620 if ( T_SLASH == lex_next_token (lexer, 0) )
622 if (lex_is_variable (lexer, means.dict, 1) )
625 lex_match (lexer, T_SLASH);
630 /* /MISSING subcommand */
631 while (lex_token (lexer) != T_ENDCMD)
633 lex_match (lexer, T_SLASH);
635 if (lex_match_id (lexer, "MISSING"))
638 If no MISSING subcommand is specified, each combination of
639 a dependent variable and categorical variables is handled
642 lex_match (lexer, T_EQUALS);
643 if (lex_match_id (lexer, "INCLUDE"))
646 Use the subcommand "/MISSING=INCLUDE" to include user-missing
647 values in the analysis.
650 means.exclude = MV_SYSTEM;
651 means.dep_exclude = MV_SYSTEM;
653 else if (lex_match_id (lexer, "TABLE"))
655 This is the default. (I think).
656 Every case containing a complete set of variables for a given
657 table. If any variable, categorical or dependent for in a table
658 is missing (as defined by what?), then that variable will
659 be dropped FOR THAT TABLE ONLY.
662 means.listwise_exclude = true;
664 else if (lex_match_id (lexer, "DEPENDENT"))
666 Use the command "/MISSING=DEPENDENT" to
667 include user-missing values for the categorical variables,
668 while excluding them for the dependent variables.
670 Cases are dropped only when user-missing values
671 appear in dependent variables. User-missing
672 values for categorical variables are treated according to
675 Cases are ALWAYS dropped when System Missing values appear
676 in the categorical variables.
679 means.dep_exclude = MV_ANY;
680 means.exclude = MV_SYSTEM;
684 lex_error (lexer, NULL);
688 else if (lex_match_id (lexer, "CELLS"))
690 lex_match (lexer, T_EQUALS);
692 /* The default values become overwritten */
694 while (lex_token (lexer) != T_ENDCMD
695 && lex_token (lexer) != T_SLASH)
698 if (lex_match (lexer, T_ALL))
702 pool_realloc (means.pool, means.cells,
703 (means.n_cells += n_C) * sizeof (*means.cells));
705 for (x = 0; x < n_C; ++x)
706 means.cells[means.n_cells - (n_C - 1 - x) - 1] = x;
708 else if (lex_match_id (lexer, "NONE"))
712 else if (lex_match_id (lexer, "DEFAULT"))
715 pool_realloc (means.pool, means.cells,
716 (means.n_cells += 3) * sizeof (*means.cells));
718 means.cells[means.n_cells - 2 - 1] = MEANS_MEAN;
719 means.cells[means.n_cells - 1 - 1] = MEANS_N;
720 means.cells[means.n_cells - 0 - 1] = MEANS_STDDEV;
726 if (lex_match_id (lexer, cell_spec[k].keyword))
729 pool_realloc (means.pool, means.cells,
730 ++means.n_cells * sizeof (*means.cells));
732 means.cells[means.n_cells - 1] = k;
739 lex_error (lexer, NULL);
746 lex_error (lexer, NULL);
753 for (t = 0; t < means.n_tables; ++t)
755 struct mtable *table = &means.table[t];
757 table->interactions =
758 pool_calloc (means.pool, table->n_layers, sizeof (*table->interactions));
761 pool_calloc (means.pool, table->n_dep_vars * table->n_layers, sizeof (*table->summary));
763 for (l = 0; l < table->n_layers; ++l)
766 const struct layer *lyr = &table->layers[l];
767 const int n_vars = lyr->n_factor_vars;
768 table->interactions[l] = interaction_create (NULL);
769 for (v = 0; v < n_vars ; ++v)
771 interaction_add_variable (table->interactions[l],
772 lyr->factor_vars[v]);
778 struct casegrouper *grouper;
779 struct casereader *group;
782 grouper = casegrouper_create_splits (proc_open (ds), means.dict);
783 while (casegrouper_get_next_group (grouper, &group))
785 run_means (&means, group, ds);
787 ok = casegrouper_destroy (grouper);
788 ok = proc_commit (ds) && ok;
791 for (t = 0; t < means.n_tables; ++t)
794 struct mtable *table = &means.table[t];
795 if (table->interactions)
796 for (l = 0; l < table->n_layers; ++l)
798 interaction_destroy (table->interactions[l]);
802 pool_destroy (means.pool);
807 for (t = 0; t < means.n_tables; ++t)
810 struct mtable *table = &means.table[t];
811 if (table->interactions)
812 for (l = 0; l < table->n_layers; ++l)
814 interaction_destroy (table->interactions[l]);
818 pool_destroy (means.pool);
824 is_missing (const struct means *cmd,
825 const struct variable *dvar,
826 const struct interaction *iact,
827 const struct ccase *c)
829 if ( interaction_case_is_missing (iact, c, cmd->exclude) )
833 if (var_is_value_missing (dvar,
841 static void output_case_processing_summary (const struct mtable *);
843 static void output_report (const struct means *, int, const struct mtable *);
848 struct per_var_data *pvd;
855 destroy_n (const void *aux1 UNUSED, void *aux2, void *user_data)
857 struct mtable *table = aux2;
859 struct per_cat_data *per_cat_data = user_data;
860 struct per_var_data *pvd = per_cat_data->pvd;
862 for (v = 0; v < table->n_dep_vars; ++v)
864 struct per_var_data *pp = &pvd[v];
865 moments1_destroy (pp->mom);
870 create_n (const void *aux1, void *aux2)
873 const struct means *means = aux1;
874 struct mtable *table = aux2;
875 struct per_cat_data *per_cat_data = pool_malloc (means->pool, sizeof *per_cat_data);
877 struct per_var_data *pvd = pool_calloc (means->pool, table->n_dep_vars, sizeof *pvd);
879 for (v = 0; v < table->n_dep_vars; ++v)
881 enum moment maxmom = MOMENT_KURTOSIS;
882 struct per_var_data *pp = &pvd[v];
884 pp->cell_stats = pool_calloc (means->pool, means->n_cells, sizeof *pp->cell_stats);
887 for (i = 0; i < means->n_cells; ++i)
889 int csi = means->cells[i];
890 const struct cell_spec *cs = &cell_spec[csi];
893 pp->cell_stats[i] = cs->sc (means->pool);
896 pp->mom = moments1_create (maxmom);
900 per_cat_data->pvd = pvd;
901 per_cat_data->warn = true;
906 update_n (const void *aux1, void *aux2, void *user_data, const struct ccase *c, double weight)
910 const struct means *means = aux1;
911 struct mtable *table = aux2;
912 struct per_cat_data *per_cat_data = user_data;
914 for (v = 0; v < table->n_dep_vars; ++v)
916 struct per_var_data *pvd = &per_cat_data->pvd[v];
918 const double x = case_data (c, table->dep_vars[v])->f;
920 for (i = 0; i < table->n_layers; ++i)
922 if ( is_missing (means, table->dep_vars[v],
923 table->interactions[i], c))
927 for (i = 0; i < means->n_cells; ++i)
929 const int csi = means->cells[i];
930 const struct cell_spec *cs = &cell_spec[csi];
934 cs->su (pvd->cell_stats[i],
938 moments1_add (pvd->mom, x, weight);
946 calculate_n (const void *aux1, void *aux2, void *user_data)
950 struct per_cat_data *per_cat_data = user_data;
951 const struct means *means = aux1;
952 struct mtable *table = aux2;
954 for (v = 0; v < table->n_dep_vars; ++v)
956 struct per_var_data *pvd = &per_cat_data->pvd[v];
957 for (i = 0; i < means->n_cells; ++i)
959 int csi = means->cells[i];
960 const struct cell_spec *cs = &cell_spec[csi];
963 cs->sd (pvd, pvd->cell_stats[i]);
969 run_means (struct means *cmd, struct casereader *input,
970 const struct dataset *ds UNUSED)
973 const struct variable *wv = dict_get_weight (cmd->dict);
975 struct casereader *reader;
977 struct payload payload;
978 payload.create = create_n;
979 payload.update = update_n;
980 payload.calculate = calculate_n;
981 payload.destroy = destroy_n;
983 for (t = 0; t < cmd->n_tables; ++t)
985 struct mtable *table = &cmd->table[t];
987 = categoricals_create (table->interactions,
988 table->n_layers, wv, cmd->dep_exclude, cmd->exclude);
990 categoricals_set_payload (table->cats, &payload, cmd, table);
994 (c = casereader_read (reader)) != NULL; case_unref (c))
996 for (t = 0; t < cmd->n_tables; ++t)
998 bool something_missing = false;
1000 struct mtable *table = &cmd->table[t];
1002 for (v = 0; v < table->n_dep_vars; ++v)
1005 for (i = 0; i < table->n_layers; ++i)
1007 const bool missing =
1008 is_missing (cmd, table->dep_vars[v],
1009 table->interactions[i], c);
1012 something_missing = true;
1013 table->summary[v * table->n_layers + i].missing++;
1016 table->summary[v * table->n_layers + i].non_missing++;
1019 if ( something_missing && cmd->listwise_exclude)
1022 categoricals_update (table->cats, c);
1025 casereader_destroy (reader);
1027 for (t = 0; t < cmd->n_tables; ++t)
1029 struct mtable *table = &cmd->table[t];
1031 categoricals_done (table->cats);
1035 for (t = 0; t < cmd->n_tables; ++t)
1038 const struct mtable *table = &cmd->table[t];
1040 output_case_processing_summary (table);
1042 for (i = 0; i < table->n_layers; ++i)
1044 output_report (cmd, i, table);
1046 categoricals_destroy (table->cats);
1054 output_case_processing_summary (const struct mtable *table)
1057 const int heading_columns = 1;
1058 const int heading_rows = 3;
1059 struct tab_table *t;
1061 const int nr = heading_rows + table->n_layers * table->n_dep_vars;
1064 t = tab_create (nc, nr);
1065 tab_title (t, _("Case Processing Summary"));
1067 tab_headers (t, heading_columns, 0, heading_rows, 0);
1069 tab_box (t, TAL_2, TAL_2, -1, TAL_1, 0, 0, nc - 1, nr - 1);
1071 tab_hline (t, TAL_2, 0, nc - 1, heading_rows);
1072 tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
1075 tab_joint_text (t, heading_columns, 0,
1076 nc - 1, 0, TAB_CENTER | TAT_TITLE, _("Cases"));
1078 tab_joint_text (t, 1, 1, 2, 1, TAB_CENTER | TAT_TITLE, _("Included"));
1079 tab_joint_text (t, 3, 1, 4, 1, TAB_CENTER | TAT_TITLE, _("Excluded"));
1080 tab_joint_text (t, 5, 1, 6, 1, TAB_CENTER | TAT_TITLE, _("Total"));
1082 tab_hline (t, TAL_1, heading_columns, nc - 1, 1);
1083 tab_hline (t, TAL_1, heading_columns, nc - 1, 2);
1086 for (i = 0; i < 3; ++i)
1088 tab_text (t, heading_columns + i * 2, 2, TAB_CENTER | TAT_TITLE,
1090 tab_text (t, heading_columns + i * 2 + 1, 2, TAB_CENTER | TAT_TITLE,
1094 for (v = 0; v < table->n_dep_vars; ++v)
1096 const struct variable *var = table->dep_vars[v];
1097 const char *dv_name = var_to_string (var);
1098 for (i = 0; i < table->n_layers; ++i)
1100 const int row = v * table->n_layers + i;
1101 const struct interaction *iact = table->interactions[i];
1105 ds_init_cstr (&str, dv_name);
1106 ds_put_cstr (&str, ": ");
1108 interaction_to_string (iact, &str);
1110 tab_text (t, 0, row + heading_rows,
1111 TAB_LEFT | TAT_TITLE, ds_cstr (&str));
1114 n_total = table->summary[row].missing +
1115 table->summary[row].non_missing;
1117 tab_double (t, 1, row + heading_rows,
1118 0, table->summary[row].non_missing, NULL, RC_INTEGER);
1120 tab_text_format (t, 2, row + heading_rows,
1122 table->summary[row].non_missing / (double) n_total * 100.0);
1125 tab_double (t, 3, row + heading_rows,
1126 0, table->summary[row].missing, NULL, RC_INTEGER);
1129 tab_text_format (t, 4, row + heading_rows,
1131 table->summary[row].missing / (double) n_total * 100.0);
1134 tab_double (t, 5, row + heading_rows,
1135 0, table->summary[row].missing +
1136 table->summary[row].non_missing, NULL, RC_INTEGER);
1138 tab_text_format (t, 6, row + heading_rows,
1140 n_total / (double) n_total * 100.0);
1152 output_report (const struct means *cmd, int iact_idx,
1153 const struct mtable *table)
1158 const struct interaction *iact = table->interactions[iact_idx];
1160 const int heading_columns = 1 + iact->n_vars;
1161 const int heading_rows = 1;
1162 struct tab_table *t;
1164 const int n_cats = categoricals_n_count (table->cats, iact_idx);
1166 const int nr = n_cats * table->n_dep_vars + heading_rows;
1168 const int nc = heading_columns + cmd->n_cells;
1170 t = tab_create (nc, nr);
1171 tab_title (t, _("Report"));
1173 tab_headers (t, heading_columns, 0, heading_rows, 0);
1175 tab_box (t, TAL_2, TAL_2, -1, TAL_1, 0, 0, nc - 1, nr - 1);
1177 tab_hline (t, TAL_2, 0, nc - 1, heading_rows);
1178 tab_vline (t, TAL_2, heading_columns, 0, nr - 1);
1180 for (i = 0; i < iact->n_vars; ++i)
1182 tab_text (t, 1 + i, 0, TAB_CENTER | TAT_TITLE,
1183 var_to_string (iact->vars[i]));
1186 for (i = 0; i < cmd->n_cells; ++i)
1188 tab_text (t, heading_columns + i, 0,
1189 TAB_CENTER | TAT_TITLE,
1190 gettext (cell_spec[cmd->cells[i]].title));
1194 for (i = 0; i < n_cats; ++i)
1197 const struct ccase *c =
1198 categoricals_get_case_by_category_real (table->cats, iact_idx, i);
1200 for (dv = 0; dv < table->n_dep_vars; ++dv)
1203 heading_rows + dv * n_cats,
1204 TAB_RIGHT | TAT_TITLE,
1205 var_to_string (table->dep_vars[dv])
1209 tab_hline (t, TAL_1, 0, nc - 1, heading_rows + dv * n_cats);
1211 for (v = 0; v < iact->n_vars; ++v)
1213 const struct variable *var = iact->vars[v];
1214 const union value *val = case_data (c, var);
1216 ds_init_empty (&str);
1217 var_append_value_name (var, val, &str);
1219 tab_text (t, 1 + v, heading_rows + dv * n_cats + i,
1220 TAB_RIGHT | TAT_TITLE, ds_cstr (&str));
1227 for (grp = 0; grp < n_cats; ++grp)
1230 struct per_cat_data *per_cat_data =
1231 categoricals_get_user_data_by_category_real (table->cats, iact_idx, grp);
1233 for (dv = 0; dv < table->n_dep_vars; ++dv)
1235 const struct per_var_data *pvd = &per_cat_data->pvd[dv];
1236 for (i = 0; i < cmd->n_cells; ++i)
1238 const int csi = cmd->cells[i];
1239 const struct cell_spec *cs = &cell_spec[csi];
1241 double result = cs->sd (pvd, pvd->cell_stats[i]);
1243 tab_double (t, heading_columns + i,
1244 heading_rows + grp + dv * n_cats,
1245 0, result, NULL, RC_OTHER);