I would like to compute some descriptive statistics about the following table of information. The main thing that I like to describe is the Price component.
Price Qty 493 5 4500 8 2107 14 269 1
The weighted average is straight forward with =sumproduct(Price,Qty)/sum(Qty)
. However it gets more challenging when I want to calculate the =skew()
and =kurt()
. In an ideal situation I would have data that isn't aggregated, but unfortunately I only have aggregated data.
Does anybody have a smart idea about how to get the skewness and kurtosis in Excel using the above data?