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 usingdf
to denote degrees of freedom.- Parameters:
x (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, value at which to evaluate the CDF
df (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution shape parameter
loc (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution offset parameter
scale (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, distribution scale parameter
- Returns:
array of cdf values.
- Return type: