atoti.experimental.stats.chi2 module#

Chi-square distribution.

For more information read:

atoti.experimental.stats.chi2.cdf(point, /, *, degrees_of_freedom)#

Cumulative distribution function for a chi-square distribution.

The cdf of the chi-square distribution with k degrees of freedom is

cdf(x)=γ(k2,x2)Γ(k2)

where Γ is the gamma function and γ the lower incomplete gamma function.

Parameters
Return type

MeasureDescription

atoti.experimental.stats.chi2.pdf(point, /, *, degrees_of_freedom)#

Probability density function for a chi-square distribution.

The pdf of the chi-square distribution with k degrees of freedom is

pdf(x)=xk21ex22k2Γ(k2)

where Γ is the gamma function.

Parameters
Return type

MeasureDescription

atoti.experimental.stats.chi2.ppf(point, /, *, degrees_of_freedom)#

Percent point function for a chi-square distribution.

Also called inverse cumulative distribution function.

Parameters
Return type

MeasureDescription