X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=sidebyside;f=src%2Flanguage%2Fstats%2Fcorrelations.c;h=7fcca77cc7a883acbd05c8cdac604eb7bcc66544;hb=0c40cc9355d2ce0d88d3937b1bfe0cb9927510a3;hp=605609a7d68cc559e42cc605cf2543f49e9a441d;hpb=3bbb4370239deb29ebbf813d258aef6249e2a431;p=pspp diff --git a/src/language/stats/correlations.c b/src/language/stats/correlations.c index 605609a7d6..7fcca77cc7 100644 --- a/src/language/stats/correlations.c +++ b/src/language/stats/correlations.c @@ -30,8 +30,7 @@ #include #include #include -#include -#include +#include #include #include #include @@ -94,9 +93,8 @@ output_descriptives (const struct corr *corr, const gsl_matrix *means, const int heading_columns = 1; const int heading_rows = 1; - struct tab_table *t = tab_create (nc, nr, 0); + struct tab_table *t = tab_create (nc, nr); tab_title (t, _("Descriptive Statistics")); - tab_dim (t, tab_natural_dimensions, NULL); tab_headers (t, heading_columns, 0, heading_rows, 0); @@ -189,9 +187,8 @@ output_correlation (const struct corr *corr, const struct corr_opts *opts, /* One header row */ nr += heading_rows; - t = tab_create (nc, nr, 0); + t = tab_create (nc, nr); tab_title (t, _("Correlations")); - tab_dim (t, tab_natural_dimensions, NULL); tab_headers (t, heading_columns, 0, heading_rows, 0);