STDEVPA
Calculates standard deviation based on the entire population, including logical values and text. Text and the false logical value have the value 0; the true logical value has the value 1.
Syntax
expression.STDEVPA(args);
expression
- A variable that represents a ApiWorksheetFunction class.
Parameters
Name | Required/Optional | Data type | Default | Description |
---|---|---|---|---|
args | Required | number[] | number | string |
Returns
number
Example
const oWorksheet = Api.GetActiveSheet();
var valueArr = [1, 0, 0, false, 5, 1, 0, 0, 2, true, 6, 7, 6, 8, 10, 12];
// Place the numbers in cells
for (var i = 0; i < valueArr.length; i++) {
oWorksheet.GetRange("A" + (i + 1)).SetValue(valueArr[i]);
}
var oFunction = Api.GetWorksheetFunction();
var ans = oFunction.STDEVPA(1, 0, 0, false, 5, 1, 0, 0, 2, true, 6, 7, 6, 8, 10, 12); //includes logical values
oWorksheet.GetRange("C1").SetValue(ans);