jax.scipy.stats.pareto.pdf

Contents

jax.scipy.stats.pareto.pdf#

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

Pareto probability distribution function.

JAX implementation of scipy.stats.pareto pdf.

The Pareto probability density function is given by

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

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

Parameters:
Returns:

array of pdf values.

Return type:

Array