jax.scipy.stats.pareto.pdf#
- jax.scipy.stats.pareto.pdf(x, b, loc=0, scale=1)[source]#
帕累托概率分布函数。
JAX 实现
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) – 类数组,要评估 PDF 的值
b (Array | ndarray | bool | number | bool | int | float | complex) – 数组类型,分布形状参数
loc (Array | ndarray | bool | number | bool | int | float | complex) – 数组类型,分布偏移参数
scale (Array | ndarray | bool | number | bool | int | float | complex) – 数组类型,分布尺度参数
- 返回:
pdf 值数组。
- 返回类型: