Solved – Are there normalized equivalents to Skewness and Kurtosis

kurtosisskewness

What would be the normalized equivalent to Skewness that would have the same unit as the data? Similarly, what would be the normalized equivalent to Kurtosis? Ideally, these functions should be linear with respect to the data, meaning that if all observations were to be multiplied by a factor n, the resulting normalized skewness and kurtosis would be multiplied by the same factor n. The benefit of having such normalized equivalents would be to be able to overlay them on top of a standard box-and-whisker plot.

Best Answer

Skewness measures are deliberately unitless.

The usual moment-skewness is a standardized third moment, $E[(\frac{X-\mu}{\sigma})^3]$.

If you center but don't standardize, you have $\mu_3=E[(X-\mu)^3]$... which is plainly then in cubed units.

If you wanted something in the same units as $X$, you'd have to take the cube-root, in the same way that we take square root of variance and get something in the same units of the original data. (However - beware, because many packages won't take cube roots of negative numbers, you might have to compute it as: $\quad\text{sign}(X-\mu)\times |E(X-\mu)^3|^{1/3}\:$.)

I'm not sure how useful that will be.

For some other skewness measures, like the two Pearson skewness measures, you just multiply by $\sigma$.

For sample skewness measures where $\sigma$ and $\mu$ are generally not known, as with sample skewness, you'd typically replace them by their own sample estimates.

Kurtosis follows the same pattern - for moment kurtosis, you'd need to take fourth roots of the unstandardized fourth moment to get something that scaled with the data.

For some of the other measures of kurtosis, they would only need to be multiplied by $\sigma$.

Related Question