Skew-func
Skewness is used to measure the degree of asymmetry of a distribution around its mean. A positive value indicates a distribution with an asymmetric tail extending toward more positive values, and a negative value indicates a negative tail. This function calculates the skewness of a distribution.
double Skew(dataset ds)
ds
Return the skewness of a distribution.
double dSkewness = skew(col(a)); dSkewness = ; range rr = col(a); skew(rr) = ; dataset ds = {1, 2, 3, 2, 3, 4, 5, 6, 4, 8}; skew(ds) = ; // 0.7801057548373
Mean, Kurt