CHITEST function
From Apache OpenOffice Wiki
< Documentation | How Tos
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
Spreadsheet Lookup functions
Measures of dispersion / spread
Probability and statistics
Correlation and line fitting
See also (in the Arrays Functions category); GROWTH, LINEST, LOGEST, TREND
Ranking
CHITEST
Returns a measure of χ2 'goodness of fit'.
Syntax:
CHITEST(observed; expected)
- observed and expected are ranges or arrays of observed and expected values. They must have the same number of rows and columns and there must be at least 2 values in each.
- CHITEST calculates the χ2 statistic and degrees of freedom, then calls CHIDIST.
Example:
CHITEST({8;9;7;8}; {8;8;8;8})
- returns approximately 0.969.
Issues:
- The international standard ODFF calls this function LEGACY.CHITEST, and points out that it has limited mathematical validity. CHITEST is compatible with the Excel CHITEST function.
See Also