X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Ffactor.c;h=29e30c16b4b022b3eb26858507562dedc90f6d0e;hb=dfd1972f7bcb550a4fc3b05dbe7e71d12334b0a7;hp=2dbf3b69143f88ad53a1515670000f42f09e0dc3;hpb=c9a3c45e44c1c03d13d4eb186e3817bc836f75f8;p=pspp-builds.git diff --git a/src/language/stats/factor.c b/src/language/stats/factor.c index 2dbf3b69..29e30c16 100644 --- a/src/language/stats/factor.c +++ b/src/language/stats/factor.c @@ -44,10 +44,10 @@ #include #include -#include +#include #include -#include +#include #include "gettext.h" #define _(msgid) gettext (msgid) @@ -935,7 +935,7 @@ show_scree (const struct cmd_factor *f, struct idata *idata) s = scree_create (idata->eval, label); - chart_submit (scree_get_chart (s)); + scree_submit (s); } static void @@ -964,8 +964,6 @@ show_communalities (const struct cmd_factor * factor, tab_title (t, _("Communalities")); - tab_dim (t, tab_natural_dimensions, NULL, NULL); - tab_headers (t, heading_columns, 0, heading_rows, 0); c = 1; @@ -1027,8 +1025,6 @@ show_factor_matrix (const struct cmd_factor *factor, struct idata *idata, const else tab_title (t, _("Factor Matrix")); - tab_dim (t, tab_natural_dimensions, NULL, NULL); - tab_headers (t, heading_columns, 0, heading_rows, 0); if ( factor->extraction == EXTRACTION_PC ) @@ -1136,8 +1132,6 @@ show_explained_variance (const struct cmd_factor * factor, struct idata *idata, tab_title (t, _("Total Variance Explained")); - tab_dim (t, tab_natural_dimensions, NULL, NULL); - tab_headers (t, heading_columns, 0, heading_rows, 0); /* Outline the box */ @@ -1288,8 +1282,6 @@ show_correlation_matrix (const struct cmd_factor *factor, const struct idata *id tab_title (t, _("Correlation Matrix")); - tab_dim (t, tab_natural_dimensions, NULL, NULL); - tab_hline (t, TAL_1, 0, nc - 1, heading_rows); if (nr > heading_rows) @@ -1431,7 +1423,6 @@ do_factor (const struct cmd_factor *factor, struct casereader *r) struct tab_table *t = tab_create (nc, nr); tab_title (t, _("Descriptive Statistics")); - tab_dim (t, tab_natural_dimensions, NULL, NULL); tab_headers (t, heading_columns, 0, heading_rows, 0);