jax.scipy.stats.chi2.logcdf

Contents

jax.scipy.stats.chi2.logcdf#

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

Chi-square log cumulative distribution function.

JAX implementation of scipy.stats.chi2 logcdf.

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 logcdf values

Return type:

Array