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=bc6974bd5cd7a1ecd397924ce5d8f7296237a532;hp=605609a7d68cc559e42cc605cf2543f49e9a441d;hpb=50ac6802fc247814dc4dd6232f6304b928a2d78b;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);