Added another test, fixed reference to target values.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@141135 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f4c6535eca
commit
2adb974fd0
|
@ -23,7 +23,7 @@ import org.apache.commons.math.stat.univariate.UnivariateStatisticAbstractTest;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Test cases for the {@link UnivariateStatistic} class.
|
* Test cases for the {@link UnivariateStatistic} class.
|
||||||
* @version $Revision: 1.11 $ $Date: 2004/03/13 20:03:16 $
|
* @version $Revision: 1.12 $ $Date: 2004/03/21 04:26:54 $
|
||||||
*/
|
*/
|
||||||
public class PercentileTest extends UnivariateStatisticAbstractTest{
|
public class PercentileTest extends UnivariateStatisticAbstractTest{
|
||||||
|
|
||||||
|
@ -49,7 +49,6 @@ public class PercentileTest extends UnivariateStatisticAbstractTest{
|
||||||
|
|
||||||
if(stat == null)
|
if(stat == null)
|
||||||
stat = new Percentile(95.0);
|
stat = new Percentile(95.0);
|
||||||
|
|
||||||
return stat;
|
return stat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -57,8 +56,7 @@ public class PercentileTest extends UnivariateStatisticAbstractTest{
|
||||||
* @see org.apache.commons.math.stat.univariate.UnivariateStatisticAbstractTest#expectedValue()
|
* @see org.apache.commons.math.stat.univariate.UnivariateStatisticAbstractTest#expectedValue()
|
||||||
*/
|
*/
|
||||||
public double expectedValue() {
|
public double expectedValue() {
|
||||||
// TODO: fix this bad calculation in Percentile
|
return this.percentile95;
|
||||||
return 20.82;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testHighPercentile(){
|
public void testHighPercentile(){
|
||||||
|
@ -86,4 +84,9 @@ public class PercentileTest extends UnivariateStatisticAbstractTest{
|
||||||
Percentile p = new Percentile(90);
|
Percentile p = new Percentile(90);
|
||||||
assertEquals(95.1981, p.evaluate(d), 1.0e-4);
|
assertEquals(95.1981, p.evaluate(d), 1.0e-4);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void test5() {
|
||||||
|
Percentile percentile = new Percentile(5);
|
||||||
|
assertEquals(this.percentile5, percentile.evaluate(testArray), getTolerance());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue