From: John Darrington Date: Sun, 25 Mar 2012 21:30:26 +0000 (+0200) Subject: Examine: Print extreme values using the print format of the variable X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a60b4b9523274de21d1e9e13f5bbac0ea020fa8e;p=pspp Examine: Print extreme values using the print format of the variable --- diff --git a/src/language/stats/examine.c b/src/language/stats/examine.c index 45c64cbb55..88b3b542c8 100644 --- a/src/language/stats/examine.c +++ b/src/language/stats/examine.c @@ -1169,13 +1169,12 @@ extremes_report (const struct examine *cmd, int iact_idx) &F_8_0); tab_double (t, - heading_columns + 1, - heading_rows + v * rows_per_var + i * rows_per_cat + e, - 0, - es->maxima[e].val, - 0); - - + heading_columns + 1, + heading_rows + v * rows_per_var + i * rows_per_cat + e, + 0, + es->maxima[e].val, + var_get_print_format (cmd->dep_vars[v])); + tab_double (t, heading_columns - 1, @@ -1206,7 +1205,7 @@ extremes_report (const struct examine *cmd, int iact_idx) heading_rows + v * rows_per_var + i * rows_per_cat + cmd->disp_extremes + e, 0, es->minima[e].val, - 0); + var_get_print_format (cmd->dep_vars[v])); } } free (prev_val);