From f00116ec886367a8ad9eec72563cc2bdac7fe67c Mon Sep 17 00:00:00 2001 From: John Darrington Date: Wed, 8 Jan 2014 14:52:43 +0100 Subject: [PATCH] T-Test indendendent variable test: Add vertical line to seperate variable name from group values. Reported-By: Douglas Bonett --- src/language/stats/t-test-indep.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/language/stats/t-test-indep.c b/src/language/stats/t-test-indep.c index c805054939..115885d4b9 100644 --- a/src/language/stats/t-test-indep.c +++ b/src/language/stats/t-test-indep.c @@ -227,6 +227,8 @@ indep_summary (const struct tt *tt, struct indep_samples *is, const struct pair_ var_append_value_name (is->gvar, is->gval1, &vallab1); } + tab_vline (t, TAL_1, 1, heading_rows, rows - 1); + for (v = 0; v < tt->n_vars; ++v) { int i; @@ -299,6 +301,8 @@ indep_test (const struct tt *tt, const struct pair_stats *ps) _("%g%% Confidence Interval of the Difference"), tt->confidence * 100.0); + tab_vline (t, TAL_1, 1, heading_rows, rows - 1); + for (v = 0; v < tt->n_vars; ++v) { double df, pooled_variance, mean_diff, tval; -- 2.30.2