trivial javadoc fix
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@553603 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
78c5894849
commit
d01b99cd4a
|
@ -259,7 +259,7 @@ public interface ChiSquareTest {
|
||||||
* can reject the null hypothesis that the observed counts conform to the
|
* can reject the null hypothesis that the observed counts conform to the
|
||||||
* same distribution.
|
* same distribution.
|
||||||
* </p>
|
* </p>
|
||||||
* <p>See {@link #chiSquareDataSetsComparison(long[], long[]) for details
|
* <p>See {@link #chiSquareDataSetsComparison(long[], long[])} for details
|
||||||
* on the formula used to compute the test statistic. The degrees of
|
* on the formula used to compute the test statistic. The degrees of
|
||||||
* of freedom used to perform the test is one less than the common length
|
* of freedom used to perform the test is one less than the common length
|
||||||
* of the input observed count arrays.
|
* of the input observed count arrays.
|
||||||
|
@ -294,8 +294,8 @@ public interface ChiSquareTest {
|
||||||
* significance level <code>alpha</code>. Returns true iff the null
|
* significance level <code>alpha</code>. Returns true iff the null
|
||||||
* hypothesis can be rejected with 100 * (1 - alpha) percent confidence.
|
* hypothesis can be rejected with 100 * (1 - alpha) percent confidence.
|
||||||
* </p>
|
* </p>
|
||||||
* <p>See {@link #chiSquareDataSetsComparison(double[], double[])} for
|
* <p>See {@link #chiSquareDataSetsComparison(long[], long[])} for
|
||||||
* details on the forumla used to compute the Chisquare statistic used
|
* details on the formula used to compute the Chisquare statistic used
|
||||||
* in the test. The degrees of of freedom used to perform the test is
|
* in the test. The degrees of of freedom used to perform the test is
|
||||||
* one less than the common length of the input observed count arrays.
|
* one less than the common length of the input observed count arrays.
|
||||||
* </p>
|
* </p>
|
||||||
|
|
|
@ -277,7 +277,7 @@ public class TestUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareDataSetsComparison(double[], double[])
|
* @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareDataSetsComparison(long[], long[])
|
||||||
*/
|
*/
|
||||||
public static double chiSquareDataSetsComparison(long[] observed1, long[] observed2)
|
public static double chiSquareDataSetsComparison(long[] observed1, long[] observed2)
|
||||||
throws IllegalArgumentException {
|
throws IllegalArgumentException {
|
||||||
|
@ -285,7 +285,7 @@ public class TestUtils {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(double[], double[])
|
* @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(long[], long[])
|
||||||
*/
|
*/
|
||||||
public static double chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)
|
public static double chiSquareTestDataSetsComparison(long[] observed1, long[] observed2)
|
||||||
throws IllegalArgumentException, MathException {
|
throws IllegalArgumentException, MathException {
|
||||||
|
@ -294,7 +294,7 @@ public class TestUtils {
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(double[], double[], double)
|
* @see org.apache.commons.math.stat.inference.ChiSquareTest#chiSquareTestDataSetsComparison(long[], long[], double)
|
||||||
*/
|
*/
|
||||||
public static boolean chiSquareTestDataSetsComparison(long[] observed1, long[] observed2,
|
public static boolean chiSquareTestDataSetsComparison(long[] observed1, long[] observed2,
|
||||||
double alpha)
|
double alpha)
|
||||||
|
|
Loading…
Reference in New Issue