ChiSquareTest Type
Two-Sample (Goodness-of-fit) Chi-Square Test (Upper Tail)
A chi-square test (also chi-squared or χ2 test) is any statistical hypothesis test in which the sampling distribution of the test statistic is a ChiSquareDistribution when the null hypothesis is true, or any in which this is asymptotically true, meaning that the sampling distribution (if the null hypothesis is true) can be made to approximate a chi-square distribution as closely as desired by making the sample size large enough.
The chi-square test is used whenever one would like to test whether the actual data differs from a random distribution.
References:
Static members
| Static member | Description |
Full Usage:
ChiSquareTest.compute degreesOfFreedom expected observed
Parameters:
int
expected : float seq
observed : float seq
Returns: ChiSquareStatistics<float>
|
|
Full Usage:
ChiSquareTest.pearsonChiSquared table
Parameters:
Contingency2x2<'a, 'b>
Returns: ChiSquareStatistics<float>
|
|
Full Usage:
ChiSquareTest.pearsonChiSquared table
Parameters:
ContingencyTable<'a, 'b>
Returns: float
|
|
Full Usage:
ChiSquareTest.pearsonChiSquaredWithYates table
Parameters:
Contingency2x2<'a, 'b>
Returns: ChiSquareStatistics<float>
|
FSharp.Stats