描述
T.INV.2T函数返回学生t分布的两尾逆。
语法
T.INV.2T (probability,deg_freedom)
争论
Argument | 描述 | Required/Optional |
---|---|---|
Probability | The probability associated with the Student's tdistribution. | Required |
Deg_freedom | An integer indicating the number of degrees of freedom. | Required |
Notes
如果任何一个参数都是非数值的,则T.INV.2T返回#VALUE!。错误值。
If probability <= 0 or if probability > 1, T.INV.2T returns the #NUM! error value.
如果deg_freedom不是整数,则将其截断。
If deg_freedom < 1, T.INV.2T returns the #NUM! error value.
T.INV.2T returns that value t, such that P(|X| > t) = probability where X is a random variable that follows the t-distribution and P(|X| > t) = P(X < -t or X > t)
通过将概率替换为2 *概率,可以返回单尾t值。对于0.05的概率和10的自由度,使用T.INV.2T(0.05,10)计算两尾值,该值返回2.28139。可以使用T.INV.2T(2 * 0.05,10)计算具有相同概率和自由度的单尾值,该值将返回1.812462
给定一个概率值,T.INV.2T求该值x,以使T.DIST.2T(x,deg_freedom)=概率。因此,T.INV.2T的精度取决于T.DIST.2T的精度
适用性
Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-statistical-tdist2t-function.html
标签:概率,probability,INV.2,freedom,JavaScript,Excel,无涯,DIST.2,deg From: https://blog.51cto.com/u_14033984/7614703