Remove the condition that one of the cell counts must be < 5
before calculating the fisher exact test. This condition seems
to be an anachronism, but still (erroneously) documented in Algorithms.
- VARIABLE ROLE.
+ * Changes to existing commands:
+
+ - CROSSTABS: The requirement that one expected count must be less than five
+ before Fishers Exact Test will be reported has been removed.
+
* PSPPIRE graphical user interface improvements:
- A new set of icons has been contributed.
}
/* Fisher. */
- if (f11 < 5. || f12 < 5. || f21 < 5. || f22 < 5.)
- calc_fisher (f11 + .5, f12 + .5, f21 + .5, f22 + .5, fisher1, fisher2);
+ calc_fisher (f11 + .5, f12 + .5, f21 + .5, f22 + .5, fisher1, fisher2);
}
/* Calculate Mantel-Haenszel. */