描述
F.INV函数返回F概率分布的倒数。
如果p = F.DIST(x ...),则F.INV(p ...)= x。
F分布可用于比较两个数据集变异程度的F检验。
语法
F.INV (probability,deg_freedom1,deg_freedom2)
争论
Argument | 描述 | Required/Optional |
---|---|---|
Probability | A probability associated with the F cumulative distribution. | Required |
Deg_freedom1 | The numerator degrees of freedom. | Required |
Deg_freedom2 | The denominator degrees of freedom. | Required |
Notes
如果deg_freedom1或deg_freedom2不是整数,则将其截断。
如果有任何非数字参数,则F.INV返回#VALUE!。错误值。
If probability < 0 or probability > 1, F.INV returns the #NUM! error value.
If deg_freedom1 < 1, or deg_freedom2 < 1, F.INV returns the #NUM! error value.
适用性
Excel 2010,Excel 2013,Excel 2016
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-statistical-finv-function.html
标签:JavaScript,probability,INV,Required,无涯,freedom2,freedom1,deg From: https://blog.51cto.com/u_14033984/7555813