topic: Skewness and Kurtosis

Please read through the following:

Skewness and Kurtosis in Python

In order to make use of these concepts in Python, we need to make use of scipy:

Here they are in action:

from scipy.stats import skew, kurtosis

data = [15, 20, 25, 30, 35, 40, 45, 50, 55, 60]

skewness = skew(data)
print("Skewness:", skewness)

kurtosis_value = kurtosis(data)
print("Kurtosis:", kurtosis_value)

RAW CONTENT URL