Home | History | Annotate | Download | only in inference

Lines Matching refs:alpha

130      * @param alpha significance level of the test
132 * 1 - alpha
137 double alpha) throws IllegalArgumentException, MathException {
138 if ((alpha <= 0) || (alpha > 0.5)) {
141 alpha, 0, 0.5);
143 return chiSquareTest(expected, observed) < alpha;
198 * @param alpha significance level of the test
200 * 1 - alpha
204 public boolean chiSquareTest(long[][] counts, double alpha)
206 if ((alpha <= 0) || (alpha > 0.5)) {
209 alpha, 0.0, 0.5);
211 return chiSquareTest(counts) < alpha;
303 * @param alpha significance level of the test
305 * 1 - alpha
311 double alpha) throws IllegalArgumentException, MathException {
312 if ((alpha <= 0) || (alpha > 0.5)) {
315 alpha, 0.0, 0.5);
317 return chiSquareTestDataSetsComparison(observed1, observed2) < alpha;