jax.scipy.stats.pareto.sf#

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

Pareto survival function.

JAX implementation of scipy.stats.pareto sf.

The Pareto survival function is given by

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

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

Parameters:
Returns:

array of survival function values.

Return type:

Array