Kurt-func
Kurtosis is used for measuring the relative peakedness or flatness of a distribution by comparing with a normal distribution. A positive kurtosis indicates a relatively peaked distribution, and a negative one indicates a relatively flat distribution. This function is used for calculating the kurtosis of a dataset.
double Kurt(dataset ds)
ds
Return the kurtosis of the specified dataset.
double dKurtosis = kurt(col(a)); dKurtosis = ; range rr = col(a); kurt(rr) = ; dataset ds = {1, 2, 3, 2, 3, 4, 5, 6, 4, 8}; kurt(ds) = ; // 0.39502164502164