scipy.special.fdtr#

scipy.special.fdtr(dfn, dfd, x, out=None) = <ufunc 'fdtr'>#

F 累积分布函数。

返回 F 分布的累积分布函数的值,也称为 Snedecor 的 F 分布或 Fisher-Snedecor 分布。

参数为 \(d_n\)\(d_d\) 的 F 分布是随机变量的分布,

\[X = \frac{U_n/d_n}{U_d/d_d},\]

其中 \(U_n\)\(U_d\) 是服从 \(\chi^2\) 分布的随机变量,自由度分别为 \(d_n\)\(d_d\)

参数:
dfnarray_like

第一个参数(正浮点数)。

dfdarray_like

第二个参数(正浮点数)。

xarray_like

参数(非负浮点数)。

outndarray,可选

用于函数值的可选输出数组

返回:
y标量或 ndarray

x 处,参数为 dfndfd 的 F 分布的 CDF。

另请参阅

fdtrc

F 分布生存函数

fdtri

F 分布逆累积分布

scipy.stats.f

F 分布

说明

根据以下公式使用正则化不完全 beta 函数,

\[F(d_n, d_d; x) = I_{xd_n/(d_d + xd_n)}(d_n/2, d_d/2).\]

Cephes [1] 例程 fdtr 的包装器。F 分布也可用作 scipy.stats.f。与 scipy.stats.fcdf 方法相比,直接调用 fdtr 可以提高性能(请参阅下面的最后一个示例)。

参考文献

[1]

Cephes 数学函数库,http://www.netlib.org/cephes/

示例

计算 dfn=1dfd=2x=1 处的函数值。

>>> import numpy as np
>>> from scipy.special import fdtr
>>> fdtr(1, 2, 1)
0.5773502691896258

通过为 x 提供 NumPy 数组来计算几个点的函数值。

>>> x = np.array([0.5, 2., 3.])
>>> fdtr(1, 2, x)
array([0.4472136 , 0.70710678, 0.77459667])

绘制几个参数集的函数。

>>> import matplotlib.pyplot as plt
>>> dfn_parameters = [1, 5, 10, 50]
>>> dfd_parameters = [1, 1, 2, 3]
>>> linestyles = ['solid', 'dashed', 'dotted', 'dashdot']
>>> parameters_list = list(zip(dfn_parameters, dfd_parameters,
...                            linestyles))
>>> x = np.linspace(0, 30, 1000)
>>> fig, ax = plt.subplots()
>>> for parameter_set in parameters_list:
...     dfn, dfd, style = parameter_set
...     fdtr_vals = fdtr(dfn, dfd, x)
...     ax.plot(x, fdtr_vals, label=rf"$d_n={dfn},\, d_d={dfd}$",
...             ls=style)
>>> ax.legend()
>>> ax.set_xlabel("$x$")
>>> ax.set_title("F distribution cumulative distribution function")
>>> plt.show()
../../_images/scipy-special-fdtr-1_00_00.png

F 分布也可用作 scipy.stats.f。直接使用 fdtr 比调用 scipy.stats.fcdf 方法要快得多,尤其是对于小数组或单个值。要获得相同的结果,必须使用以下参数化:stats.f(dfn, dfd).cdf(x)=fdtr(dfn, dfd, x)

>>> from scipy.stats import f
>>> dfn, dfd = 1, 2
>>> x = 1
>>> fdtr_res = fdtr(dfn, dfd, x)  # this will often be faster than below
>>> f_dist_res = f(dfn, dfd).cdf(x)
>>> fdtr_res == f_dist_res  # test that results are equal
True