X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fstats%2Fsign.c;h=754b0d7dfcd6b47c08d62f6f4db05ab8a6e90812;hb=3025fc73778a733bfd2aeefd57da1b1c1955a675;hp=07a2499e9f70ab2b850a8d7a7db1727d1b5a4bf5;hpb=1fc57714adfb36009ad22e2a164263b90548bf11;p=pspp diff --git a/src/language/stats/sign.c b/src/language/stats/sign.c index 07a2499e9f..754b0d7dfc 100644 --- a/src/language/stats/sign.c +++ b/src/language/stats/sign.c @@ -19,7 +19,7 @@ #include #include -#include +#include #include #include #include "npar.h" @@ -52,13 +52,11 @@ output_frequency_table (const struct two_sample_test *t2s, const struct dictionary *dict) { int i; - struct tab_table *table = tab_create (3, 1 + 4 * t2s->n_pairs, 0); + struct tab_table *table = tab_create (3, 1 + 4 * t2s->n_pairs); const struct variable *wv = dict_get_weight (dict); const struct fmt_spec *wfmt = wv ? var_get_print_format (wv) : & F_8_0; - tab_dim (table, tab_natural_dimensions, NULL, NULL); - tab_title (table, _("Frequencies")); tab_headers (table, 2, 0, 1, 0); @@ -108,9 +106,7 @@ output_statistics_table (const struct two_sample_test *t2s, const struct sign_test_params *param) { int i; - struct tab_table *table = tab_create (1 + t2s->n_pairs, 4, 0); - - tab_dim (table, tab_natural_dimensions, NULL, NULL); + struct tab_table *table = tab_create (1 + t2s->n_pairs, 4); tab_title (table, _("Test Statistics"));