TRY NEW VERSION

SKEW_P

SKEW_P(args) → { number }

Returns the skewness of a distribution based on a population: a characterization of the degree of asymmetry of a distribution around its mean.

Parameters:

Name Type Description
args number | string | Array.<number> | ApiRange

Up to 255 numeric values for which the skewness of a distribution will be returned. The first argument is required, subsequent arguments are optional.

Returns:

Type
number

Example

Copy code
builder.CreateFile("xlsx");

const oWorksheet = Api.GetActiveSheet();

var valueArr = [1, 0, 0, 0, 0, 1, 0, 0, 2, 3, 4, 5, 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.SKEW_P(1, 0, 0, 0, 0, 1, 0, 0, 2, 3, 4, 5, 6, 8, 10, 12);

oWorksheet.GetRange("C1").SetValue(ans);

builder.SaveFile("xlsx", "SKEW_P.xlsx");
builder.CloseFile();

Resulting document