bundles / scipy 1.17.1 / scipy / stats / _stats_py / chisquare
function
scipy.stats._stats_py:chisquare
source: /scipy/stats/_stats_py.py :7220
Signature
def chisquare ( f_obs , f_exp = None , ddof = 0 , axis = 0 , * , sum_check = True , nan_policy = propagate , keepdims = False ) Summary
Perform Pearson's chi-squared test.
Extended Summary
Pearson's chi-squared test [1] is a goodness-of-fit test for a multinomial distribution with given probabilities; that is, it assesses the null hypothesis that the observed frequencies (counts) are obtained by independent sampling of N observations from a categorical distribution with given expected frequencies.
Parameters
f_obs: array_likeObserved frequencies in each category.
f_exp: array_like, optionalExpected frequencies in each category. By default, the categories are assumed to be equally likely.
ddof: int, optional"Delta degrees of freedom": adjustment to the degrees of freedom for the p-value. The p-value is computed using a chi-squared distribution with
k - 1 - ddofdegrees of freedom, wherekis the number of categories. The default value ofddofis 0.axis: int or None, default: 0If an int, the axis of the input along which to compute the statistic. The statistic of each axis-slice (e.g. row) of the input will appear in a corresponding element of the output. If
None, the input will be raveled before computing the statistic.sum_check: bool, optionalWhether to perform a check that
sum(f_obs) - sum(f_exp) == 0. If True, (default) raise an error when the relative difference exceeds the square root of the precision of the data type. See Notes for rationale and possible exceptions.nan_policy: {'propagate', 'omit', 'raise'}Defines how to handle input NaNs.
propagate: if a NaN is present in the axis slice (e.g. row) along which the statistic is computed, the corresponding entry of the output will be NaN.omit: NaNs will be omitted when performing the calculation. If insufficient data remains in the axis slice along which the statistic is computed, the corresponding entry of the output will be NaN.raise: if a NaN is present, aValueErrorwill be raised.
keepdims: bool, default: FalseIf this is set to True, the axes which are reduced are left in the result as dimensions with size one. With this option, the result will broadcast correctly against the input array.
Returns
: res: Power_divergenceResultAn object containing attributes:
statistic
statistic
pvalue
pvalue
Notes
This test is invalid when the observed or expected frequencies in each category are too small. A typical rule is that all of the observed and expected frequencies should be at least 5. According to [2], the total number of observations is recommended to be greater than 13, otherwise exact tests (such as Barnard's Exact test) should be used because they do not overreject.
The default degrees of freedom, k-1, are for the case when no parameters of the distribution are estimated. If p parameters are estimated by efficient maximum likelihood then the correct degrees of freedom are k-1-p. If the parameters are estimated in a different way, then the dof can be between k-1-p and k-1. However, it is also possible that the asymptotic distribution is not chi-square, in which case this test is not appropriate.
For Pearson's chi-squared test, the total observed and expected counts must match for the p-value to accurately reflect the probability of observing such an extreme value of the statistic under the null hypothesis. This function may be used to perform other statistical tests that do not require the total counts to be equal. For instance, to test the null hypothesis that f_obs[i] is Poisson-distributed with expectation f_exp[i], set ddof=-1 and sum_check=False. This test follows from the fact that a Poisson random variable with mean and variance f_exp[i] is approximately normal with the same mean and variance; the chi-squared statistic standardizes, squares, and sums the observations; and the sum of n squared standard normal variables follows the chi-squared distribution with n degrees of freedom.
Beginning in SciPy 1.9, np.matrix inputs (not recommended for new code) are converted to np.ndarray before the calculation is performed. In this case, the output will be a scalar or np.ndarray of appropriate shape rather than a 2D np.matrix. Similarly, while masked elements of masked arrays are ignored, the output will be a scalar or np.ndarray rather than a masked array with mask=False.
Array API Standard Support
chisquare has experimental support for Python Array API Standard compatible backends in addition to NumPy. Please consider testing these features by setting an environment variable SCIPY_ARRAY_API=1 and providing CuPy, PyTorch, JAX, or Dask arrays as array arguments. The following combinations of backend and device (or other capability) are supported.
==================== ==================== ==================== Library CPU GPU ==================== ==================== ==================== NumPy ✅ n/a CuPy n/a ✅ PyTorch ✅ ✅ JAX ⚠️ no JIT ⚠️ no JIT Dask ⚠️ computes graph n/a ==================== ==================== ====================
See
dev-arrayapifor more information.
Examples
When only the mandatory `f_obs` argument is given, it is assumed that the expected frequencies are uniform and given by the mean of the observed frequencies:import numpy as np from scipy.stats import chisquare✓
chisquare([16, 18, 16, 14, 12, 12])
✗chisquare([16, 18, 16, 14, 12, 12], f_exp=[16, 16, 16, 16, 16, 8])
✗obs = np.array([[16, 18, 16, 14, 12, 12], [32, 24, 16, 28, 20, 24]]).T obs.shape✓
chisquare(obs)
✗chisquare(obs, axis=None) chisquare(obs.ravel())✗
chisquare([16, 18, 16, 14, 12, 12], ddof=1)
✗chisquare([16, 18, 16, 14, 12, 12], ddof=[0, 1, 2])
✗chisquare([16, 18, 16, 14, 12, 12], f_exp=[[16, 16, 16, 16, 16, 8], [8, 20, 20, 16, 12, 12]], axis=1)✗
See also
- hypothesis_chisquare
Extended example
- scipy.stats.barnard_exact
An unconditional exact test. An alternative to chi-squared test for small sample sizes.
- scipy.stats.fisher_exact
Fisher exact test on a 2x2 contingency table.
- scipy.stats.power_divergence
Aliases
-
scipy.stats.chisquare