1 /* PSPP - a program for statistical analysis.
2 Copyright (C) 1997-9, 2000, 2007 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 <gsl/gsl_cdf.h>
24 #include <data/case.h>
25 #include <data/casegrouper.h>
26 #include <data/casereader.h>
27 #include <data/dictionary.h>
28 #include <data/procedure.h>
29 #include <data/value-labels.h>
30 #include <data/variable.h>
31 #include <language/command.h>
32 #include <language/dictionary/split-file.h>
33 #include <language/lexer/lexer.h>
34 #include <libpspp/compiler.h>
35 #include <libpspp/hash.h>
36 #include <libpspp/message.h>
37 #include <libpspp/misc.h>
38 #include <libpspp/str.h>
39 #include <libpspp/taint.h>
40 #include <math/group-proc.h>
41 #include <math/group.h>
42 #include <math/levene.h>
43 #include <output/manager.h>
44 #include <output/table.h>
45 #include "sort-criteria.h"
50 #define _(msgid) gettext (msgid)
57 missing=miss:!analysis/listwise,
58 incl:include/!exclude;
59 +contrast= double list;
60 +statistics[st_]=descriptives,homogeneity.
65 static struct cmd_oneway cmd;
67 /* The independent variable */
68 static const struct variable *indep_var;
70 /* Number of dependent variables */
73 /* The dependent variables */
74 static const struct variable **vars;
77 /* A hash table containing all the distinct values of the independent
79 static struct hsh_table *global_group_hash ;
81 /* The number of distinct values of the independent variable, when all
82 missing values are disregarded */
83 static int ostensible_number_of_groups = -1;
86 static void run_oneway (struct cmd_oneway *, struct casereader *,
87 const struct dataset *);
90 /* Routines to show the output tables */
91 static void show_anova_table(void);
92 static void show_descriptives(void);
93 static void show_homogeneity(void);
95 static void show_contrast_coeffs(short *);
96 static void show_contrast_tests(short *);
99 enum stat_table_t {STAT_DESC = 1, STAT_HOMO = 2};
101 static enum stat_table_t stat_tables ;
103 void output_oneway(void);
107 cmd_oneway (struct lexer *lexer, struct dataset *ds)
109 struct casegrouper *grouper;
110 struct casereader *group;
114 if ( !parse_oneway (lexer, ds, &cmd, NULL) )
117 /* What statistics were requested */
118 if ( cmd.sbc_statistics )
121 for (i = 0 ; i < ONEWAY_ST_count ; ++i )
123 if ( ! cmd.a_statistics[i] ) continue;
126 case ONEWAY_ST_DESCRIPTIVES:
127 stat_tables |= STAT_DESC;
129 case ONEWAY_ST_HOMOGENEITY:
130 stat_tables |= STAT_HOMO;
136 /* Data pass. FIXME: error handling. */
137 grouper = casegrouper_create_splits (proc_open (ds), dataset_dict (ds));
138 while (casegrouper_get_next_group (grouper, &group))
139 run_oneway (&cmd, group, ds);
140 ok = casegrouper_destroy (grouper);
141 ok = proc_commit (ds) && ok;
146 return ok ? CMD_SUCCESS : CMD_CASCADING_FAILURE;
154 short *bad_contrast ;
156 bad_contrast = xnmalloc (cmd.sbc_contrast, sizeof *bad_contrast);
158 /* Check the sanity of the given contrast values */
159 for (i = 0 ; i < cmd.sbc_contrast ; ++i )
165 if ( subc_list_double_count(&cmd.dl_contrast[i]) !=
166 ostensible_number_of_groups )
169 _("Number of contrast coefficients must equal the number of groups"));
174 for (j=0; j < ostensible_number_of_groups ; ++j )
175 sum += subc_list_double_at(&cmd.dl_contrast[i],j);
178 msg(SW,_("Coefficients for contrast %zu do not total zero"), i + 1);
181 if ( stat_tables & STAT_DESC )
184 if ( stat_tables & STAT_HOMO )
189 if (cmd.sbc_contrast )
191 show_contrast_coeffs(bad_contrast);
192 show_contrast_tests(bad_contrast);
199 for (i = 0 ; i < n_vars ; ++i )
201 struct hsh_table *group_hash = group_proc_get (vars[i])->group_hash;
203 hsh_destroy(group_hash);
206 hsh_destroy(global_group_hash);
213 /* Parser for the variables sub command */
215 oneway_custom_variables (struct lexer *lexer,
216 struct dataset *ds, struct cmd_oneway *cmd UNUSED,
219 struct dictionary *dict = dataset_dict (ds);
221 lex_match (lexer, '=');
223 if ((lex_token (lexer) != T_ID || dict_lookup_var (dict, lex_tokid (lexer)) == NULL)
224 && lex_token (lexer) != T_ALL)
227 if (!parse_variables_const (lexer, dict, &vars, &n_vars,
229 | PV_NUMERIC | PV_NO_SCRATCH) )
237 if ( ! lex_match (lexer, T_BY))
240 indep_var = parse_variable (lexer, dict);
244 msg(SE,_("`%s' is not a variable name"),lex_tokid (lexer));
252 /* Show the ANOVA table */
254 show_anova_table(void)
258 size_t n_rows = n_vars * 3 + 1;
263 t = tab_create (n_cols,n_rows,0);
264 tab_headers (t, 2, 0, 1, 0);
265 tab_dim (t, tab_natural_dimensions);
272 n_cols - 1, n_rows - 1);
274 tab_hline (t, TAL_2, 0, n_cols - 1, 1 );
275 tab_vline (t, TAL_2, 2, 0, n_rows - 1);
276 tab_vline (t, TAL_0, 1, 0, 0);
278 tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Sum of Squares"));
279 tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df"));
280 tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Mean Square"));
281 tab_text (t, 5, 0, TAB_CENTER | TAT_TITLE, _("F"));
282 tab_text (t, 6, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
285 for ( i=0 ; i < n_vars ; ++i )
287 struct group_statistics *totals = &group_proc_get (vars[i])->ugs;
288 struct hsh_table *group_hash = group_proc_get (vars[i])->group_hash;
289 struct hsh_iterator g;
290 struct group_statistics *gs;
292 const char *s = var_to_string(vars[i]);
294 for (gs = hsh_first (group_hash,&g);
296 gs = hsh_next(group_hash,&g))
298 ssa += (gs->sum * gs->sum)/gs->n;
301 ssa -= ( totals->sum * totals->sum ) / totals->n ;
303 tab_text (t, 0, i * 3 + 1, TAB_LEFT | TAT_TITLE, s);
304 tab_text (t, 1, i * 3 + 1, TAB_LEFT | TAT_TITLE, _("Between Groups"));
305 tab_text (t, 1, i * 3 + 2, TAB_LEFT | TAT_TITLE, _("Within Groups"));
306 tab_text (t, 1, i * 3 + 3, TAB_LEFT | TAT_TITLE, _("Total"));
309 tab_hline(t, TAL_1, 0, n_cols - 1 , i * 3 + 1);
312 struct group_proc *gp = group_proc_get (vars[i]);
313 const double sst = totals->ssq - ( totals->sum * totals->sum) / totals->n ;
314 const double df1 = gp->n_groups - 1;
315 const double df2 = totals->n - gp->n_groups ;
316 const double msa = ssa / df1;
318 gp->mse = (sst - ssa) / df2;
321 /* Sums of Squares */
322 tab_float (t, 2, i * 3 + 1, 0, ssa, 10, 2);
323 tab_float (t, 2, i * 3 + 3, 0, sst, 10, 2);
324 tab_float (t, 2, i * 3 + 2, 0, sst - ssa, 10, 2);
327 /* Degrees of freedom */
328 tab_float (t, 3, i * 3 + 1, 0, df1, 4, 0);
329 tab_float (t, 3, i * 3 + 2, 0, df2, 4, 0);
330 tab_float (t, 3, i * 3 + 3, 0, totals->n - 1, 4, 0);
333 tab_float (t, 4, i * 3 + 1, TAB_RIGHT, msa, 8, 3);
334 tab_float (t, 4, i * 3 + 2, TAB_RIGHT, gp->mse, 8, 3);
338 const double F = msa/gp->mse ;
341 tab_float (t, 5, i * 3 + 1, 0, F, 8, 3);
343 /* The significance */
344 tab_float (t, 6, i * 3 + 1, 0, gsl_cdf_fdist_Q(F,df1,df2), 8, 3);
352 tab_title (t, _("ANOVA"));
357 /* Show the descriptives table */
359 show_descriptives(void)
366 const double confidence=0.95;
367 const double q = (1.0 - confidence) / 2.0;
372 for ( v = 0 ; v < n_vars ; ++v )
373 n_rows += group_proc_get (vars[v])->n_groups + 1;
375 t = tab_create (n_cols,n_rows,0);
376 tab_headers (t, 2, 0, 2, 0);
377 tab_dim (t, tab_natural_dimensions);
380 /* Put a frame around the entire box, and vertical lines inside */
385 n_cols - 1, n_rows - 1);
387 /* Underline headers */
388 tab_hline (t, TAL_2, 0, n_cols - 1, 2 );
389 tab_vline (t, TAL_2, 2, 0, n_rows - 1);
391 tab_text (t, 2, 1, TAB_CENTER | TAT_TITLE, _("N"));
392 tab_text (t, 3, 1, TAB_CENTER | TAT_TITLE, _("Mean"));
393 tab_text (t, 4, 1, TAB_CENTER | TAT_TITLE, _("Std. Deviation"));
394 tab_text (t, 5, 1, TAB_CENTER | TAT_TITLE, _("Std. Error"));
397 tab_vline(t, TAL_0, 7, 0, 0);
398 tab_hline(t, TAL_1, 6, 7, 1);
399 tab_joint_text (t, 6, 0, 7, 0, TAB_CENTER | TAT_TITLE | TAT_PRINTF, _("%g%% Confidence Interval for Mean"),confidence*100.0);
401 tab_text (t, 6, 1, TAB_CENTER | TAT_TITLE, _("Lower Bound"));
402 tab_text (t, 7, 1, TAB_CENTER | TAT_TITLE, _("Upper Bound"));
404 tab_text (t, 8, 1, TAB_CENTER | TAT_TITLE, _("Minimum"));
405 tab_text (t, 9, 1, TAB_CENTER | TAT_TITLE, _("Maximum"));
408 tab_title (t, _("Descriptives"));
412 for ( v=0 ; v < n_vars ; ++v )
417 struct group_proc *gp = group_proc_get (vars[v]);
419 struct group_statistics *gs;
420 struct group_statistics *totals = &gp->ugs;
422 const char *s = var_to_string(vars[v]);
424 struct group_statistics *const *gs_array =
425 (struct group_statistics *const *) hsh_sort(gp->group_hash);
428 tab_text (t, 0, row, TAB_LEFT | TAT_TITLE, s);
430 tab_hline(t, TAL_1, 0, n_cols - 1 , row);
432 for (count = 0 ; count < hsh_count(gp->group_hash) ; ++count)
435 ds_init_empty (&vstr);
436 gs = gs_array[count];
438 var_append_value_name (indep_var, &gs->id, &vstr);
440 tab_text (t, 1, row + count,
441 TAB_LEFT | TAT_TITLE,
446 /* Now fill in the numbers ... */
448 tab_float (t, 2, row + count, 0, gs->n, 8,0);
450 tab_float (t, 3, row + count, 0, gs->mean,8,2);
452 tab_float (t, 4, row + count, 0, gs->std_dev,8,2);
454 std_error = gs->std_dev/sqrt(gs->n) ;
455 tab_float (t, 5, row + count, 0,
458 /* Now the confidence interval */
460 T = gsl_cdf_tdist_Qinv(q,gs->n - 1);
462 tab_float(t, 6, row + count, 0,
463 gs->mean - T * std_error, 8, 2);
465 tab_float(t, 7, row + count, 0,
466 gs->mean + T * std_error, 8, 2);
470 tab_float(t, 8, row + count, 0, gs->minimum, 8, 2);
471 tab_float(t, 9, row + count, 0, gs->maximum, 8, 2);
475 tab_text (t, 1, row + count,
476 TAB_LEFT | TAT_TITLE ,_("Total"));
478 tab_float (t, 2, row + count, 0, totals->n, 8,0);
480 tab_float (t, 3, row + count, 0, totals->mean, 8,2);
482 tab_float (t, 4, row + count, 0, totals->std_dev,8,2);
484 std_error = totals->std_dev/sqrt(totals->n) ;
486 tab_float (t, 5, row + count, 0, std_error, 8,2);
488 /* Now the confidence interval */
490 T = gsl_cdf_tdist_Qinv(q,totals->n - 1);
492 tab_float(t, 6, row + count, 0,
493 totals->mean - T * std_error, 8, 2);
495 tab_float(t, 7, row + count, 0,
496 totals->mean + T * std_error, 8, 2);
500 tab_float(t, 8, row + count, 0, totals->minimum, 8, 2);
501 tab_float(t, 9, row + count, 0, totals->maximum, 8, 2);
503 row += gp->n_groups + 1;
512 /* Show the homogeneity table */
514 show_homogeneity(void)
518 size_t n_rows = n_vars + 1;
523 t = tab_create (n_cols,n_rows,0);
524 tab_headers (t, 1, 0, 1, 0);
525 tab_dim (t, tab_natural_dimensions);
527 /* Put a frame around the entire box, and vertical lines inside */
532 n_cols - 1, n_rows - 1);
535 tab_hline(t, TAL_2, 0, n_cols - 1, 1);
536 tab_vline(t, TAL_2, 1, 0, n_rows - 1);
539 tab_text (t, 1, 0, TAB_CENTER | TAT_TITLE, _("Levene Statistic"));
540 tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("df1"));
541 tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("df2"));
542 tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Significance"));
545 tab_title (t, _("Test of Homogeneity of Variances"));
547 for ( v=0 ; v < n_vars ; ++v )
550 const struct variable *var = vars[v];
551 const struct group_proc *gp = group_proc_get (vars[v]);
552 const char *s = var_to_string(var);
553 const struct group_statistics *totals = &gp->ugs;
555 const double df1 = gp->n_groups - 1;
556 const double df2 = totals->n - gp->n_groups ;
558 tab_text (t, 0, v + 1, TAB_LEFT | TAT_TITLE, s);
561 tab_float (t, 1, v + 1, TAB_RIGHT, F, 8,3);
562 tab_float (t, 2, v + 1, TAB_RIGHT, df1 ,8,0);
563 tab_float (t, 3, v + 1, TAB_RIGHT, df2 ,8,0);
565 /* Now the significance */
566 tab_float (t, 4, v + 1, TAB_RIGHT,gsl_cdf_fdist_Q(F,df1,df2), 8, 3);
573 /* Show the contrast coefficients table */
575 show_contrast_coeffs (short *bad_contrast)
577 int n_cols = 2 + ostensible_number_of_groups;
578 int n_rows = 2 + cmd.sbc_contrast;
579 union value *group_value;
581 void *const *group_values ;
585 t = tab_create (n_cols,n_rows,0);
586 tab_headers (t, 2, 0, 2, 0);
587 tab_dim (t, tab_natural_dimensions);
589 /* Put a frame around the entire box, and vertical lines inside */
594 n_cols - 1, n_rows - 1);
608 tab_hline(t, TAL_1, 2, n_cols - 1, 1);
609 tab_hline(t, TAL_2, 0, n_cols - 1, 2);
611 tab_vline(t, TAL_2, 2, 0, n_rows - 1);
613 tab_title (t, _("Contrast Coefficients"));
615 tab_text (t, 0, 2, TAB_LEFT | TAT_TITLE, _("Contrast"));
618 tab_joint_text (t, 2, 0, n_cols - 1, 0, TAB_CENTER | TAT_TITLE,
619 var_to_string(indep_var));
621 group_values = hsh_sort(global_group_hash);
623 count < hsh_count(global_group_hash) ;
628 group_value = group_values[count];
630 ds_init_empty (&vstr);
632 var_append_value_name (indep_var, group_value, &vstr);
634 tab_text (t, count + 2, 1, TAB_CENTER | TAT_TITLE,
640 for (i = 0 ; i < cmd.sbc_contrast ; ++i )
642 tab_text(t, 1, i + 2, TAB_CENTER | TAT_PRINTF, "%d", i + 1);
644 if ( bad_contrast[i] )
645 tab_text(t, count + 2, i + 2, TAB_RIGHT, "?" );
647 tab_text(t, count + 2, i + 2, TAB_RIGHT | TAT_PRINTF, "%g",
648 subc_list_double_at(&cmd.dl_contrast[i], count)
657 /* Show the results of the contrast tests */
659 show_contrast_tests(short *bad_contrast)
663 size_t n_rows = 1 + n_vars * 2 * cmd.sbc_contrast;
667 t = tab_create (n_cols,n_rows,0);
668 tab_headers (t, 3, 0, 1, 0);
669 tab_dim (t, tab_natural_dimensions);
671 /* Put a frame around the entire box, and vertical lines inside */
676 n_cols - 1, n_rows - 1);
684 tab_hline(t, TAL_2, 0, n_cols - 1, 1);
685 tab_vline(t, TAL_2, 3, 0, n_rows - 1);
688 tab_title (t, _("Contrast Tests"));
690 tab_text (t, 2, 0, TAB_CENTER | TAT_TITLE, _("Contrast"));
691 tab_text (t, 3, 0, TAB_CENTER | TAT_TITLE, _("Value of Contrast"));
692 tab_text (t, 4, 0, TAB_CENTER | TAT_TITLE, _("Std. Error"));
693 tab_text (t, 5, 0, TAB_CENTER | TAT_TITLE, _("t"));
694 tab_text (t, 6, 0, TAB_CENTER | TAT_TITLE, _("df"));
695 tab_text (t, 7, 0, TAB_CENTER | TAT_TITLE, _("Sig. (2-tailed)"));
697 for ( v = 0 ; v < n_vars ; ++v )
700 int lines_per_variable = 2 * cmd.sbc_contrast;
703 tab_text (t, 0, (v * lines_per_variable) + 1, TAB_LEFT | TAT_TITLE,
704 var_to_string(vars[v]));
706 for ( i = 0 ; i < cmd.sbc_contrast ; ++i )
709 double contrast_value = 0.0;
710 double coef_msq = 0.0;
711 struct group_proc *grp_data = group_proc_get (vars[v]);
712 struct hsh_table *group_hash = grp_data->group_hash;
714 void *const *group_stat_array;
717 double std_error_contrast ;
722 /* Note: The calculation of the degrees of freedom in the
723 "variances not equal" case is painfull!!
724 The following formula may help to understand it:
725 \frac{\left(\sum_{i=1}^k{c_i^2\frac{s_i^2}{n_i}}\right)^2}
728 \frac{\left(c_i^2\frac{s_i^2}{n_i}\right)^2} {n_i-1}
733 double df_denominator = 0.0;
734 double df_numerator = 0.0;
737 tab_text (t, 1, (v * lines_per_variable) + i + 1,
738 TAB_LEFT | TAT_TITLE,
739 _("Assume equal variances"));
741 tab_text (t, 1, (v * lines_per_variable) + i + 1 + cmd.sbc_contrast,
742 TAB_LEFT | TAT_TITLE,
743 _("Does not assume equal"));
746 tab_text (t, 2, (v * lines_per_variable) + i + 1,
747 TAB_CENTER | TAT_TITLE | TAT_PRINTF, "%d",i+1);
750 tab_text (t, 2, (v * lines_per_variable) + i + 1 + cmd.sbc_contrast,
751 TAB_CENTER | TAT_TITLE | TAT_PRINTF, "%d",i+1);
754 if ( bad_contrast[i])
757 group_stat_array = hsh_sort(group_hash);
759 for (ci = 0 ; ci < hsh_count(group_hash) ; ++ci)
761 const double coef = subc_list_double_at(&cmd.dl_contrast[i], ci);
762 struct group_statistics *gs = group_stat_array[ci];
764 const double winv = (gs->std_dev * gs->std_dev) / gs->n;
766 contrast_value += coef * gs->mean;
768 coef_msq += (coef * coef) / gs->n ;
770 sec_vneq += (coef * coef) * (gs->std_dev * gs->std_dev ) /gs->n ;
772 df_numerator += (coef * coef) * winv;
773 df_denominator += pow2((coef * coef) * winv) / (gs->n - 1);
775 sec_vneq = sqrt(sec_vneq);
777 df_numerator = pow2(df_numerator);
779 tab_float (t, 3, (v * lines_per_variable) + i + 1,
780 TAB_RIGHT, contrast_value, 8,2);
782 tab_float (t, 3, (v * lines_per_variable) + i + 1 +
784 TAB_RIGHT, contrast_value, 8,2);
786 std_error_contrast = sqrt(grp_data->mse * coef_msq);
789 tab_float (t, 4, (v * lines_per_variable) + i + 1,
790 TAB_RIGHT, std_error_contrast,
793 T = fabs(contrast_value / std_error_contrast) ;
797 tab_float (t, 5, (v * lines_per_variable) + i + 1,
801 df = grp_data->ugs.n - grp_data->n_groups;
803 /* Degrees of Freedom */
804 tab_float (t, 6, (v * lines_per_variable) + i + 1,
809 /* Significance TWO TAILED !!*/
810 tab_float (t, 7, (v * lines_per_variable) + i + 1,
811 TAB_RIGHT, 2 * gsl_cdf_tdist_Q(T,df),
815 /* Now for the Variances NOT Equal case */
819 (v * lines_per_variable) + i + 1 + cmd.sbc_contrast,
824 T = contrast_value / sec_vneq;
826 (v * lines_per_variable) + i + 1 + cmd.sbc_contrast,
831 df = df_numerator / df_denominator;
834 (v * lines_per_variable) + i + 1 + cmd.sbc_contrast,
838 /* The Significance */
840 tab_float (t, 7, (v * lines_per_variable) + i + 1 + cmd.sbc_contrast,
841 TAB_RIGHT, 2 * gsl_cdf_tdist_Q(T,df),
848 tab_hline(t, TAL_1, 0, n_cols - 1, (v * lines_per_variable) + 1);
856 /* ONEWAY ANOVA Calculations */
858 static void postcalc ( struct cmd_oneway *cmd UNUSED );
860 static void precalc ( struct cmd_oneway *cmd UNUSED );
864 /* Pre calculations */
866 precalc ( struct cmd_oneway *cmd UNUSED )
870 for(i=0; i< n_vars ; ++i)
872 struct group_proc *gp = group_proc_get (vars[i]);
873 struct group_statistics *totals = &gp->ugs;
875 /* Create a hash for each of the dependent variables.
876 The hash contains a group_statistics structure,
877 and is keyed by value of the independent variable */
881 (hsh_compare_func *) compare_group,
882 (hsh_hash_func *) hash_group,
883 (hsh_free_func *) free_group,
884 (void *) var_get_width (indep_var) );
891 totals->maximum = - DBL_MAX;
892 totals->minimum = DBL_MAX;
897 free_value (void *value_, const void *aux UNUSED)
899 union value *value = value_;
904 run_oneway (struct cmd_oneway *cmd,
905 struct casereader *input,
906 const struct dataset *ds)
909 struct dictionary *dict = dataset_dict (ds);
910 enum mv_class exclude;
911 struct casereader *reader;
914 if (!casereader_peek (input, 0, &c))
916 casereader_destroy (input);
919 output_split_file_values (ds, &c);
922 taint = taint_clone (casereader_get_taint (input));
924 global_group_hash = hsh_create(4,
925 (hsh_compare_func *) compare_values,
926 (hsh_hash_func *) hash_value,
928 (void *) var_get_width (indep_var) );
932 exclude = cmd->incl != ONEWAY_INCLUDE ? MV_ANY : MV_SYSTEM;
933 input = casereader_create_filter_missing (input, &indep_var, 1,
935 if (cmd->miss == ONEWAY_LISTWISE)
936 input = casereader_create_filter_missing (input, vars, n_vars,
938 input = casereader_create_filter_weight (input, dict, NULL, NULL);
940 reader = casereader_clone (input);
941 for (; casereader_read (reader, &c); case_destroy (&c))
945 const double weight = dict_get_case_weight (dict, &c, NULL);
947 const union value *indep_val = case_data (&c, indep_var);
948 void **p = hsh_probe (global_group_hash, indep_val);
950 *p = value_dup (indep_val, var_get_width (indep_var));
952 for ( i = 0 ; i < n_vars ; ++i )
954 const struct variable *v = vars[i];
956 const union value *val = case_data (&c, v);
958 struct group_proc *gp = group_proc_get (vars[i]);
959 struct hsh_table *group_hash = gp->group_hash;
961 struct group_statistics *gs;
963 gs = hsh_find(group_hash, (void *) indep_val );
967 gs = xmalloc (sizeof *gs);
973 gs->minimum = DBL_MAX;
974 gs->maximum = -DBL_MAX;
976 hsh_insert ( group_hash, (void *) gs );
979 if (!var_is_value_missing (v, val, exclude))
981 struct group_statistics *totals = &gp->ugs;
984 totals->sum+=weight * val->f;
985 totals->ssq+=weight * val->f * val->f;
987 if ( val->f * weight < totals->minimum )
988 totals->minimum = val->f * weight;
990 if ( val->f * weight > totals->maximum )
991 totals->maximum = val->f * weight;
994 gs->sum+=weight * val->f;
995 gs->ssq+=weight * val->f * val->f;
997 if ( val->f * weight < gs->minimum )
998 gs->minimum = val->f * weight;
1000 if ( val->f * weight > gs->maximum )
1001 gs->maximum = val->f * weight;
1004 gp->n_groups = hsh_count ( group_hash );
1008 casereader_destroy (reader);
1013 if ( stat_tables & STAT_HOMO )
1014 levene (dict, casereader_clone (input), indep_var, n_vars, vars, exclude);
1016 casereader_destroy (input);
1018 ostensible_number_of_groups = hsh_count (global_group_hash);
1020 if (!taint_has_tainted_successor (taint))
1022 taint_destroy (taint);
1026 /* Post calculations for the ONEWAY command */
1028 postcalc ( struct cmd_oneway *cmd UNUSED )
1033 for(i = 0; i < n_vars ; ++i)
1035 struct group_proc *gp = group_proc_get (vars[i]);
1036 struct hsh_table *group_hash = gp->group_hash;
1037 struct group_statistics *totals = &gp->ugs;
1039 struct hsh_iterator g;
1040 struct group_statistics *gs;
1042 for (gs = hsh_first (group_hash,&g);
1044 gs = hsh_next(group_hash,&g))
1046 gs->mean=gs->sum / gs->n;
1047 gs->s_std_dev= sqrt(
1048 ( (gs->ssq / gs->n ) - gs->mean * gs->mean )
1053 ( (gs->ssq / gs->n ) - gs->mean * gs->mean )
1056 gs->se_mean = gs->std_dev / sqrt(gs->n);
1057 gs->mean_diff= gs->sum_diff / gs->n;
1063 totals->mean = totals->sum / totals->n;
1064 totals->std_dev= sqrt(
1065 totals->n/(totals->n-1) *
1066 ( (totals->ssq / totals->n ) - totals->mean * totals->mean )
1069 totals->se_mean = totals->std_dev / sqrt(totals->n);