jax.scipy.stats.pareto.logcdf#

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

Pareto log cumulative distribution function.

JAX implementation of scipy.stats.pareto logcdf.

The Pareto cumulative distribution function is given by

\[\begin{split}F(x, b) = \begin{cases} 1 - x^{-b} & x \ge 1\\ 0 & x < 1 \end{cases}\end{split}\]

and is defined for \(b > 0\).

Parameters:
Returns:

array of logCDF values.

Return type:

Array