STDEV函数替代Excel 2010中的STDEV.S函数。
描述
该函数根据样本估算标准偏差。标准偏差是对值与平均值(平均值)的分散程度的度量。
语法
STDEV (number1,[number2],...)
争论
Argument | 描述 | Required/Optional |
---|---|---|
Number1 | The first number argument corresponding to a sample of a population. | Required |
Number2, ... |
编号参数2到255对应于总体样本。 您也可以使用单个数组或对数组的引用,而不要使用以逗号分隔的参数。 |
Optional |
Notes
-
STDEV使用以下公式-
$$\sqrt {\frac {\sum(x-\bar {x})^ 2} {(n-1)}} $$
其中x是样本均值AVERAGE(数字1,数字2,…),n是样本大小。
STDEV假定其论点只是总体样本。如果您的数据代表全部人口,则使用STDEVP计算标准差
使用" n-1"方法计算标准偏差。
争论 can be either numbers or names, arrays, or references that contain numbers.
您直接在参数列表中键入的逻辑值和数字的文本表示形式将被计算在内。
如果参数是数组或引用,则仅计算该数组或引用中的数字。数组或引用中的空单元格,逻辑值,文本或错误值将被忽略。
争论 that are error values or text that cannot be translated into numbers cause errors.
如果要在引用中包括逻辑值和数字的文本表示作为计算的一部分,请使用STDEVA函数。
Example
参考链接
https://www.learnfk.com/javascript/advanced-excel-compatibility-stdev-function.html
标签:标准偏差,引用,JavaScript,无涯,numbers,数组,STDEV,逻辑值 From: https://blog.51cto.com/u_14033984/7341372