X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fchisquare.c;h=1f2df8d29a2417395836e4f9b81a9f84e722a959;hb=dfd1972f7bcb550a4fc3b05dbe7e71d12334b0a7;hp=bc1b6474ff16c167d06ea94ca55de828475d7a9e;hpb=c9a3c45e44c1c03d13d4eb186e3817bc836f75f8;p=pspp-builds.git diff --git a/src/language/stats/chisquare.c b/src/language/stats/chisquare.c index bc1b6474..1f2df8d2 100644 --- a/src/language/stats/chisquare.c +++ b/src/language/stats/chisquare.c @@ -36,7 +36,7 @@ #include #include #include -#include +#include #include @@ -181,7 +181,6 @@ create_variable_frequency_table (const struct dictionary *dict, } table = tab_create(4, n_cells + 2); - tab_dim (table, tab_natural_dimensions, NULL, NULL); tab_title (table, var_to_string(var)); tab_text (table, 1, 0, TAB_LEFT, _("Observed N")); @@ -217,7 +216,6 @@ 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); - tab_dim (table, tab_natural_dimensions, NULL, NULL); tab_title (table, _("Frequencies")); for ( i = 0 ; i < ost->n_vars ; ++i ) @@ -273,7 +271,6 @@ create_stats_table (const struct chisquare_test *test) struct tab_table *table; 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);