ChiSquaredTest Command

From GeoGebra Manual
Revision as of 08:04, 1 October 2015 by Markus.winkler (talk | contribs) (added link to Goodness of fit Wikipedia page)
Jump to: navigation, search


ChiSquaredTest[ <Matrix> ]
Performs a chi-squared test that compares the given matrix of observed counts against the matrix of expected counts determined by the hypothesis of independence.
The matrix of expected counts is calculated internally. Each expected count is found from the row and column totals of the given matrix of observed counts using the rule:
\text{expected count} = \frac{\text{row total} × \text{column total}}{\text{total observed counts}}
Results are returned in list form as {Probabilty value, chi-squared test statistic}.
Example:
ChiSquaredTest[{{1, 2, 1}, {3, 2, 3}}] yields {0.69, 0.75}.
ChiSquaredTest[ <List>, <List> ]
Performs a Goodness of Fit test that compares the given list of observed counts against the given list of expected counts.
Results are returned in list form as {Probabilty value, chi-squared test statistic}.
Example:
ChiSquaredTest[{1, 2, 3, 4}, {3, 2, 4, 2}] yields {0.31, 3.58}.
ChiSquaredTest[ <Matrix>, <Matrix> ]
Performs a chi-squared test that compares the given matrix of observed counts against the given matrix of expected counts.
Results are returned in list form as {Probabilty value, chi-squared test statistic}.
Example:
ChiSquaredTest[{{1, 2, 1}, {3, 2, 3}}, {{2, 3, 2}, {4, 2, 3}}] yields {0.45, 1.58}.
© 2024 International GeoGebra Institute