本文簡要介紹 python 語言中 scipy.special.gdtrc
的用法。
用法:
scipy.special.gdtrc(a, b, x, out=None) = <ufunc 'gdtrc'>#
伽馬分布生存函數。
伽馬概率密度函數從 x 到無窮大的積分,
其中 是伽馬函數。
- a: array_like
伽馬分布的速率參數,有時表示為 (浮點)。它也是比例參數 的倒數。
- b: array_like
伽馬分布的形狀參數,有時表示為 (浮點)。
- x: array_like
分位數(積分下限;浮點數)。
- out: ndarray,可選
函數值的可選輸出數組
- F: 標量或 ndarray
參數 a 和 b 的伽馬分布的生存函數在 x 處評估。
參數 ::
返回 ::
注意:
使用與不完全伽瑪積分(正則化伽瑪函數)的關係來進行評估。
Cephes [1] 例程的包裝器
gdtrc
。與scipy.stats.gamma
的sf
方法相比,直接調用gdtrc
可以提高性能(請參見下麵的最後一個示例)。參考:
[1]Cephes 數學函數庫,http://www.netlib.org/cephes/
例子:
計算
x=5
處a=1
和b=2
的函數。>>> import numpy as np >>> from scipy.special import gdtrc >>> import matplotlib.pyplot as plt >>> gdtrc(1., 2., 5.) 0.04042768199451279
計算函數為
a=1
,b=2
通過提供 NumPy 數組來在幾個點上x.>>> xvalues = np.array([1., 2., 3., 4]) >>> gdtrc(1., 1., xvalues) array([0.36787944, 0.13533528, 0.04978707, 0.01831564])
gdtrc
可以通過提供具有廣播兼容形狀的數組來評估不同的參數集a,b和x。這裏我們計算三個不同的函數a在四個位置x和b=3
,產生一個 3x4 數組。>>> a = np.array([[0.5], [1.5], [2.5]]) >>> x = np.array([1., 2., 3., 4]) >>> a.shape, x.shape ((3, 1), (4,))
>>> gdtrc(a, 3., x) array([[0.98561232, 0.9196986 , 0.80884683, 0.67667642], [0.80884683, 0.42319008, 0.17357807, 0.0619688 ], [0.54381312, 0.12465202, 0.02025672, 0.0027694 ]])
繪製四個不同參數集的函數。
>>> a_parameters = [0.3, 1, 2, 6] >>> b_parameters = [2, 10, 15, 20] >>> linestyles = ['solid', 'dashed', 'dotted', 'dashdot'] >>> parameters_list = list(zip(a_parameters, b_parameters, linestyles)) >>> x = np.linspace(0, 30, 1000) >>> fig, ax = plt.subplots() >>> for parameter_set in parameters_list: ... a, b, style = parameter_set ... gdtrc_vals = gdtrc(a, b, x) ... ax.plot(x, gdtrc_vals, label=f"$a= {a},\, b={b}$", ls=style) >>> ax.legend() >>> ax.set_xlabel("$x$") >>> ax.set_title("Gamma distribution survival function") >>> plt.show()
伽馬分布也可用作
scipy.stats.gamma
。直接使用gdtrc
比調用scipy.stats.gamma
的sf
方法要快得多,特別是對於小型數組或單個值。為了獲得相同的結果,必須使用以下參數化:stats.gamma(b, scale=1/a).sf(x)=gdtrc(a, b, x)
。>>> from scipy.stats import gamma >>> a = 2 >>> b = 3 >>> x = 1. >>> gdtrc_result = gdtrc(a, b, x) # this will often be faster than below >>> gamma_dist_result = gamma(b, scale=1/a).sf(x) >>> gdtrc_result == gamma_dist_result # test that results are equal True
相關用法
- Python SciPy special.gdtr用法及代碼示例
- Python SciPy special.gdtria用法及代碼示例
- Python SciPy special.gdtrix用法及代碼示例
- Python SciPy special.gdtrib用法及代碼示例
- Python SciPy special.gamma用法及代碼示例
- Python SciPy special.genlaguerre用法及代碼示例
- Python SciPy special.gammaincinv用法及代碼示例
- Python SciPy special.geterr用法及代碼示例
- Python SciPy special.gammasgn用法及代碼示例
- Python SciPy special.gammainc用法及代碼示例
- Python SciPy special.gammaln用法及代碼示例
- Python SciPy special.gammainccinv用法及代碼示例
- Python SciPy special.gegenbauer用法及代碼示例
- Python SciPy special.gammaincc用法及代碼示例
- Python SciPy special.exp1用法及代碼示例
- Python SciPy special.expn用法及代碼示例
- Python SciPy special.ncfdtri用法及代碼示例
- Python SciPy special.y1用法及代碼示例
- Python SciPy special.y0用法及代碼示例
- Python SciPy special.ellip_harm_2用法及代碼示例
- Python SciPy special.i1e用法及代碼示例
- Python SciPy special.smirnovi用法及代碼示例
- Python SciPy special.ker用法及代碼示例
- Python SciPy special.ynp_zeros用法及代碼示例
- Python SciPy special.k0e用法及代碼示例
注:本文由純淨天空篩選整理自scipy.org大神的英文原創作品 scipy.special.gdtrc。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。