本文简要介绍 python 语言中 scipy.special.stdtrit
的用法。
用法:
scipy.special.stdtrit(df, p, out=None) = <ufunc 'stdtrit'>#
学生 t 分布的 p-th 分位数。
该函数是学生 t 分布累积分布函数 (CDF) 的反函数,返回 t 使得 stdtr(df, t) = p。
返回参数t这样 stdtr(df, t) 等于p.
- df: array_like
自由度
- p: array_like
可能性
- out: ndarray,可选
函数结果的可选输出数组
- t: 标量或 ndarray
的值t这样
stdtr(df, t) == p
参数 ::
返回 ::
注意:
学生 t 分布也可作为
scipy.stats.t
获得。与scipy.stats.t
的ppf
方法相比,直接调用stdtrit
可以提高性能(请参见下面的最后一个示例)。例子:
stdtrit
表示学生 t 分布 CDF 的倒数,可表示为scipy.special.stdtr。在这里,我们计算 CDFdf
在x=1
.stdtrit
然后返回1
给定相同值时最多可达浮点错误df和计算的 CDF 值。>>> import numpy as np >>> from scipy.special import stdtr, stdtrit >>> import matplotlib.pyplot as plt >>> df = 3 >>> x = 1 >>> cdf_value = stdtr(df, x) >>> stdtrit(df, cdf_value) 0.9999999994418539
绘制三个不同自由度的函数。
>>> x = np.linspace(0, 1, 1000) >>> parameters = [(1, "solid"), (2, "dashed"), (5, "dotted")] >>> fig, ax = plt.subplots() >>> for (df, linestyle) in parameters: ... ax.plot(x, stdtrit(df, x), ls=linestyle, label=f"$df={df}$") >>> ax.legend() >>> ax.set_ylim(-10, 10) >>> ax.set_title("Student t distribution quantile function") >>> plt.show()
通过为 df 提供 NumPy 数组或列表,可以同时计算多个自由度的函数:
>>> stdtrit([1, 2, 3], 0.7) array([0.72654253, 0.6172134 , 0.58438973])
通过提供数组,可以同时计算多个不同自由度的多个点的函数df和p具有与广播兼容的形状。计算
stdtrit
3 个自由度的 4 个点,形成 3x4 形状的数组。>>> dfs = np.array([[1], [2], [3]]) >>> p = np.array([0.2, 0.4, 0.7, 0.8]) >>> dfs.shape, p.shape ((3, 1), (4,))
>>> stdtrit(dfs, p) array([[-1.37638192, -0.3249197 , 0.72654253, 1.37638192], [-1.06066017, -0.28867513, 0.6172134 , 1.06066017], [-0.97847231, -0.27667066, 0.58438973, 0.97847231]])
t 分布也可用作
scipy.stats.t
。直接调用stdtrit
比调用scipy.stats.t
的ppf
方法要快得多。为了获得相同的结果,必须使用以下参数化:scipy.stats.t(df).ppf(x) = stdtrit(df, x)
。>>> from scipy.stats import t >>> df, x = 3, 0.5 >>> stdtrit_result = stdtrit(df, x) # this can be faster than below >>> stats_result = t(df).ppf(x) >>> stats_result == stdtrit_result # test that results are equal True
相关用法
- Python SciPy special.stdtridf用法及代码示例
- Python SciPy special.stdtr用法及代码示例
- Python SciPy special.struve用法及代码示例
- Python SciPy special.stirling2用法及代码示例
- Python SciPy special.smirnovi用法及代码示例
- Python SciPy special.seterr用法及代码示例
- Python SciPy special.shichi用法及代码示例
- Python SciPy special.smirnov用法及代码示例
- Python SciPy special.softmax用法及代码示例
- Python SciPy special.sinc用法及代码示例
- Python SciPy special.sindg用法及代码示例
- Python SciPy special.spherical_kn用法及代码示例
- Python SciPy special.spherical_yn用法及代码示例
- Python SciPy special.sici用法及代码示例
- Python SciPy special.spherical_in用法及代码示例
- Python SciPy special.spherical_jn用法及代码示例
- Python SciPy special.spence用法及代码示例
- Python SciPy special.exp1用法及代码示例
- Python SciPy special.expn用法及代码示例
- Python SciPy special.ncfdtri用法及代码示例
- Python SciPy special.gamma用法及代码示例
- Python SciPy special.y1用法及代码示例
- Python SciPy special.y0用法及代码示例
- Python SciPy special.ellip_harm_2用法及代码示例
- Python SciPy special.i1e用法及代码示例
注:本文由纯净天空筛选整理自scipy.org大神的英文原创作品 scipy.special.stdtrit。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。