X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fchisquare.c;h=bc1b6474ff16c167d06ea94ca55de828475d7a9e;hb=41009f9ff6541a025357fd8e06fcdaf5220e48fa;hp=71857cfbf05ac0194f78fc320cee82f0ea676977;hpb=12895f38b01137ae0b14f07d26e6f0928b735bdf;p=pspp-builds.git diff --git a/src/language/stats/chisquare.c b/src/language/stats/chisquare.c index 71857cfb..bc1b6474 100644 --- a/src/language/stats/chisquare.c +++ b/src/language/stats/chisquare.c @@ -180,7 +180,7 @@ create_variable_frequency_table (const struct dictionary *dict, return NULL; } - table = tab_create(4, n_cells + 2, 0); + table = tab_create(4, n_cells + 2); tab_dim (table, tab_natural_dimensions, NULL, NULL); tab_title (table, var_to_string(var)); @@ -216,7 +216,7 @@ create_combo_frequency_table (const struct chisquare_test *test) int n_cells = test->hi - test->lo + 1; - table = tab_create(1 + ost->n_vars * 4, n_cells + 3, 0); + table = tab_create(1 + ost->n_vars * 4, n_cells + 3); tab_dim (table, tab_natural_dimensions, NULL, NULL); tab_title (table, _("Frequencies")); @@ -272,7 +272,7 @@ create_stats_table (const struct chisquare_test *test) const struct one_sample_test *ost = (const struct one_sample_test*) test; struct tab_table *table; - table = tab_create (1 + ost->n_vars, 4, 0); + table = tab_create (1 + ost->n_vars, 4); tab_dim (table, tab_natural_dimensions, NULL, NULL); tab_title (table, _("Test Statistics")); tab_headers (table, 1, 0, 1, 0);