jax.scipy.stats.pareto.pdf#
- jax.scipy.stats.pareto.pdf(x, b, loc=0, scale=1)[源代码][源代码]#
帕累托概率分布函数。
JAX implementation of
scipy.stats.pareto
pdf
.帕累托概率密度函数由以下公式给出
\[\begin{split}f(x, b) = \begin{cases} bx^{-(b+1)} & x \ge 1\\ 0 & x < 1 \end{cases}\end{split}\]并且定义为 \(b > 0\)。
- 参数:
x (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, 用于评估PDF的值
b (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, 分布形状参数
loc (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, 分布偏移参数
scale (Array | ndarray | bool | number | bool | int | float | complex) – arraylike, 分布尺度参数
- 返回:
pdf 值的数组。
- 返回类型: