jax.scipy.stats.chi2.cdf

Contents

jax.scipy.stats.chi2.cdf#

jax.scipy.stats.chi2.cdf(x, df, loc=0, scale=1)[source]#

Chi-square cumulative distribution function.

JAX implementation of scipy.stats.chi2 cdf.

The cdf is defined as

\[f_{cdf}(x, k) = \int_{-\infty}^x f_{pdf}(y, k)\mathrm{d}y\]

where \(f_{pdf}\) is the probability density function, jax.scipy.stats.chi2.pdf(). JAX follows the scipy convention of using df to denote degrees of freedom.

Parameters:
Returns:

array of cdf values.

Return type:

Array