public static interface Hypothesis.chisq
| Modifier and Type | Method and Description |
|---|---|
static ChiSqTest |
test(int[][] table)
Given a two-dimensional contingency table in the form of an array of
integers, returns Chi-square test for independence.
|
static ChiSqTest |
test(int[] bins,
double[] prob)
One-sample chisq test.
|
static ChiSqTest |
test(int[] bins,
double[] prob,
int constraints)
One-sample chisq test.
|
static ChiSqTest |
test(int[] bins1,
int[] bins2)
Two-sample chisq test.
|
static ChiSqTest |
test(int[] bins1,
int[] bins2,
int constraints)
Two-sample chisq test.
|
static ChiSqTest test(int[] bins, double[] prob)
static ChiSqTest test(int[] bins, double[] prob, int constraints)
static ChiSqTest test(int[] bins1, int[] bins2)
static ChiSqTest test(int[] bins1, int[] bins2, int constraints)
static ChiSqTest test(int[][] table)