描述
T.DIST.2T函数返回两尾学生的t分布。学生的分布用于小样本数据集的假设检验。使用此函数代替t分布的临界值表。
语法
T.DIST(x,deg_freedom, cumulative)
争论
Argument | 描述 | Required/Optional |
---|---|---|
X | The numeric value at which to evaluate the distribution. | Required |
Deg_freedom | An integer indicating the number of degrees of freedom. | Required |
Cumulative |
确定函数形式的逻辑值。 如果累计值为TRUE,则T.DIST返回累计分布函数。 如果累积值为FALSE,则T.DIST返回概率密度函数。 |
Required |
Notes
If cumulative is TRUE and degrees_freedom < 1, T.DIST returns #NUM! value.
If cumulative is FALSE and degrees_freedom < 0, T.DIST returns #NUM! value.
如果累计值为FALSE,而degree_freedom = 0,则T.DIST返回#DIV/0!值。
如果有任何非数字参数,则T.DIST返回#VALUE!。错误值。
适用性
Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-statistical-tdist-function.html
标签:JavaScript,DIST,freedom,Required,值为,无涯,degrees,cumulative From: https://blog.51cto.com/u_14033984/7614101