SKEW

function SKEW(args: number | string | number[] | ApiRange = null): number

Description

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

Parameters

argsnumber | string | number[] | ApiRangedefault: null

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

number

Try It


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(1, 0, 0, 0, 0, 1, 0, 0, 2, 3, 4, 5, 6, 8, 10, 12);

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

Get Help

  • If you have any questions about ONLYOFFICE Docs, try the FAQ section first.
  • You can request a feature or report a bug by posting an issue on GitHub.
  • You can also ask our developers on ONLYOFFICE forum (registration required).