2

I could not find a reference that has mentioned the skewness and kurtosis of a circular data that has Von Mises distribution. What are the values? and it is great if someone can introduce some references in this regard.

Aep
  • 151
  • 4
  • A Google search for "skewness circular data" gave: https://ncss-wpengine.netdna-ssl.com/wp-content/themes/ncss/pdf/Procedures/NCSS/Circular_Data_Analysis.pdf as the top hit. – Gordon Smyth Aug 25 '21 at 04:58

1 Answers1

1

The distribution is symmetric, so its skewness is zero. I'll give you a partial answer for how to get the kurtosis. One reasonable way to obtain the kurtosis is from the cumulant generating function, which is:

$$K(t) = t \mu + \log I_{|t|} (\kappa) - \log I_0 (\kappa),$$

where $I_t$ is the modified Bessel function. Now, if you can find a power series expansion for the logarithm of the modified Bessel function (which should be around in some book on special functions somewhere) then you will be able to write the cumulant generating function as a power series, and get the kurtosis from that. If you can't find a power series, but can find a different type of series expansion, then you might still be able to get the kurtosis via differentiation of the cumulant generating function. Specifically, the kurtosis of the distribution is:

$$\mathbb{Kurt} = \frac{d^4 K}{dt^4}(t) + 3 \Bigg( \frac{d^2 K}{dt^2}(t) \Bigg)^2 = \frac{d^4}{dt^4} \log I_{|t|} (\kappa) + 3 \Bigg( \frac{d^2}{dt^2} \log I_{|t|} (\kappa) \Bigg)^2.$$

Now, since the Von Mises distribution converges to the normal distribution for $\kappa \rightarrow \infty$ the distribution is asymptotically mesokurtotic. Thus, as a check on your answer you should ensure that the kurtosis formula converges to three in this limit.

Ben
  • 91,027
  • 3
  • 150
  • 376
  • Thanks for your response @Ben. I am working on your suggestion, however, the calculation seems to be complicated. Do you have any references that have explicitly mentioned the kurtosis of von misses distribution, or do you have any references that can explain the method you mentioned in more details and with some examples? – Aep Oct 12 '21 at 23:40