jax.scipy.stats.pareto.pdf#
- jax.scipy.stats.pareto.pdf(x, b, loc=0, scale=1)[原始碼]#
帕雷托機率分佈函數。
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 值陣列。
- 回傳類型: