X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Fstats%2Fdescriptives.c;h=b72371488d226fa14ed31ea17c3bda8e08e4ac9e;hb=b0bf9b1b0f727fafac4296a048e3f45db5936f81;hp=b305deea0f1aa022add52c4b0199daeb5a33c0c6;hpb=a19b858e0ac3c69e4a28c0ca6d8674427268a863;p=pspp-builds.git diff --git a/src/language/stats/descriptives.c b/src/language/stats/descriptives.c index b305deea..b7237148 100644 --- a/src/language/stats/descriptives.c +++ b/src/language/stats/descriptives.c @@ -20,24 +20,26 @@ /* FIXME: Many possible optimizations. */ #include -#include + #include #include #include -#include -#include + #include #include -#include -#include #include +#include +#include +#include #include -#include +#include +#include +#include #include +#include #include #include #include -#include #include #include "gettext.h" @@ -540,7 +542,7 @@ dump_z_table (struct dsc_proc *dsc) } t = tab_create (2, cnt + 1, 0); - tab_title (t, 0, _("Mapping of variables to corresponding Z-scores.")); + tab_title (t, _("Mapping of variables to corresponding Z-scores.")); tab_columns (t, SOM_COL_DOWN, 1); tab_headers (t, 0, 0, 1, 0); tab_box (t, TAL_1, TAL_1, TAL_0, TAL_1, 0, 0, 1, cnt); @@ -661,7 +663,6 @@ setup_z_trns (struct dsc_proc *dsc) struct variable *dst_var; dst_var = dict_create_var_assert (default_dict, dv->z_name, 0); - dst_var->init = 0; if (dv->v->label) { dst_var->label = xmalloc (strlen (dv->v->label) + 12); @@ -915,7 +916,7 @@ display (struct dsc_proc *dsc) tab_float (t, nc++, i + 1, TAB_NONE, dv->stats[j], 10, 3); } - tab_title (t, 1, _("Valid cases = %g; cases with missing value(s) = %g."), + tab_title (t, _("Valid cases = %g; cases with missing value(s) = %g."), dsc->valid, dsc->missing_listwise); tab_submit (t);