+2007-07-28 John Darrington <john@darrington.wattle.id.au>
+
+ * statistics.texi: Made the documentation for T-TEST match
+ the behaviour.
+
2007-07-17 Ben Pfaff <blp@gnu.org>
* get-commands.pl: Use strict and all warnings. Simplify
If the independent variable is numeric,
it is acceptable to specify only one value inside the parentheses.
If you do this, cases where the independent variable is
-less than or equal to this value belong to the first group, and cases
-greater than this value belong to the second group.
+greater than or equal to this value belong to the first group, and cases
+less than this value belong to the second group.
When using this form of the @cmd{GROUPS} subcommand, missing values in
the independent variable are excluded on a listwise basis, regardless
of whether @cmd{/MISSING=LISTWISE} was specified.
+2007-07-28 John Darrington <john@darrington.wattle.id.au>
+
+ * t-test.q: Moved the order in which groups are displayed in the
+ independent samples case, where a cut point is given.
+
2007-07-27 Ben Pfaff <blp@gnu.org>
* regression.q (run_regression): Move casereader_destroy call so
if (gp.criterion == CMP_LE )
{
- strcpy(prefix[0],"< ");
- strcpy(prefix[1],">=");
+ strcpy(prefix[0],">=");
+ strcpy(prefix[1],"<");
indep_value[0] = gp.v.critical_value;
indep_value[1] = gp.v.critical_value;
}
{
if ( count == 0 )
{
- /* less than ( < ) case */
- search_val.f = gp.v.critical_value - 1.0;
+ /* >= case */
+ search_val.f = gp.v.critical_value + 1.0;
}
else
{
- /* >= case */
- search_val.f = gp.v.critical_value + 1.0;
+ /* less than ( < ) case */
+ search_val.f = gp.v.critical_value - 1.0;
}
}
else
}
hsh_insert ( ttpr->group_hash, (void *) gs );
-
}
}
if ( p->criterion == CMP_LE )
{
- /* less-than-or-equal comparision is not meaningfull for
+ /* less-than comparision is not meaningfull for
alpha variables, so we shouldn't ever arrive here */
assert(p->indep_width == 0 ) ;
+2007-07-28 John Darrington <john@darrington.wattle.id.au>
+
+ * command/t-test-1-indep-val.sh: Changed the order of groups in the
+ summary box to match new behaviour. (Fixes bug #19604).
+
2007-07-25 Ben Pfaff <blp@gnu.org>
Fix bug #17100.
#===========#==#====#==============#========#
# INDEP | N|Mean|Std. Deviation|SE. Mean#
#===========#==#====#==============#========#
-#DEP < 1.514|11|8.00| 2.864| .863#
-# >=1.514|11|9.00| 3.821| 1.152#
+#DEP >=1.514|11|9.00| 3.821| 1.152#
+# <1.514 |11|8.00| 2.864| .863#
#===========#==#====#==============#========#
2.2 T-TEST. Independent Samples Test
#==============================#=========#===============================================================================#