scipy.special.stdtridf#
- scipy.special.stdtridf(p, t, out=None) = <ufunc 'stdtridf'>#
stdtr 相对于 df 的逆
返回 df 的自变量,使 stdtr(df, t) 等于 p。
- 参数:
- parray_like
概率
- tarray_like
积分的上界
- outndarray,可选
函数结果的可选输出数组
- 返回:
- df标量或 ndarray
df 的值,使
stdtr(df, t) == p
另请参见
stdtr
学生 t 分布累积分布函数
stdtrit
stdtr 相对于 t 的逆
scipy.stats.t
学生 t 分布
示例
计算一组参数的 t 分布累积分布函数。
>>> from scipy.special import stdtr, stdtridf >>> df, x = 5, 2 >>> cdf_value = stdtr(df, x) >>> cdf_value 0.9490302605850709
验证
stdtridf
是否将 df 的原始值恢复到 CDF 值和 x 中。>>> stdtridf(cdf_value, x) 5.0