jax.scipy.stats.pareto.ppf#

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

Pareto percent point function (inverse CDF).

JAX implementation of scipy.stats.pareto ppf.

The Pareto percent point function is the inverse of the Pareto CDF, and is given by

\[\begin{split}F^{-1}(q, b) = \begin{cases} (1 - q)^{-1/b} & 0 \le q < 1\\ \text{NaN} & \text{otherwise} \end{cases}\end{split}\]

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

Parameters:
Returns:

array of percent point function values.

Return type:

Array