MATH-1644: Prevent computed probability from exceeding 1.
This commit is contained in:
parent
cfb9bda8f8
commit
f067b2b4ba
|
@ -138,7 +138,7 @@ public class BinomialTest {
|
|||
if (criticalValueLow == criticalValueHigh) {
|
||||
pTotal += pLow;
|
||||
} else {
|
||||
pTotal += 2 * pLow;
|
||||
pTotal += 2 * Math.nextDown(pLow);
|
||||
}
|
||||
criticalValueLow++;
|
||||
criticalValueHigh--;
|
||||
|
|
|
@ -126,4 +126,11 @@ public class BinomialTestTest {
|
|||
Assert.assertFalse(testStatistic.binomialTest(trials, successes, probability, AlternativeHypothesis.GREATER_THAN, alpha01));
|
||||
Assert.assertFalse(testStatistic.binomialTest(trials, successes, probability, AlternativeHypothesis.LESS_THAN, alpha05));
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testMath1644() {
|
||||
final BinomialTest bt = new BinomialTest();
|
||||
final double pval = bt.binomialTest(10, 5, 0.5, AlternativeHypothesis.TWO_SIDED);
|
||||
Assert.assertTrue("pval=" + pval, pval <= 1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue