Have a Question?
Phone: +1 (888) 427-9486
+1 (312) 324-0367
Fax: +1 (312) 238-9092
Contact Us
TEST_XKURT
Calculates the p-value of the statistical test for the population excess kurtosis (4th moment).
Syntax
TEST_XKURT(X)
X
is the data sample (a one dimensional array of cells (e.g. rows or columns)).
Remarks
- The data sample may include missing values (e.g. #N/A).
-
The test hypothesis for the population excess kurtosis:


Where:
-
is the null hypothesisi.
-
is the alternate hypothesis.
-
-
For the case in which the underlying population distribution is normal, the sample excess kurtosis also has a normal sampling distribution:
![\[ \hat K \sim N(0,\frac{24}{T}) \]](/sites/all/files/tex/e798499b01a63571aba468e4f62bd3fc24eeb7e3.png)
Where:
-
is the sample excess kurtosis (i.e. 4th moment).
-
is the number of non-missing values in the data sample.
-
is the normal (i.e. Gaussian) probability distribution function.
-
-
Using a given data sample, the sample excess kurtosis is calculated as:
![\[ \hat K (x)= \frac{\sum_{t=1}^T(x_t-\bar x)^4}{(T-1)\hat \sigma^4}-3 \]](/sites/all/files/tex/185dc012a1f44e0c52c733352e8c32a4a3c9f171.png)
Where:
-
is the sample excess kurtosis.
-
is the i-th non-missing value in the data sample.
-
is the number of non-missing values in the data sample.
-
is the sample standard deviation.
-
- The underlying population distribution is assumed normal (Gaussian).
-
This is a two-sides (i.e. two-tails) test, so the computed p-value should be compared with half of the significance level (
).
Examples
Example 1:
| A | B | |
|---|---|---|
| 1 | Date | Data |
| 2 | 1/1/2008 | #N/A |
| 3 | 1/2/2008 | -2.83 |
| 4 | 1/3/2008 | -0.95 |
| 5 | 1/4/2008 | -0.88 |
| 6 | 1/5/2008 | 1.21 |
| 7 | 1/6/2008 | -1.67 |
| 8 | 1/7/2008 | 0.83 |
| 9 | 1/8/2008 | -0.27 |
| 10 | 1/9/2008 | 1.36 |
| 11 | 1/10/2008 | -0.34 |
| 12 | 1/11/2008 | 0.48 |
| 13 | 1/12/2008 | -2.83 |
| 14 | 1/13/2008 | -0.95 |
| 15 | 1/14/2008 | -0.88 |
| 16 | 1/15/2008 | 1.21 |
| 17 | 1/16/2008 | -1.67 |
| 18 | 1/17/2008 | -2.99 |
| 19 | 1/18/2008 | 1.24 |
| 20 | 1/19/2008 | 0.64 |
| Formula | Description (Result) | |
|---|---|---|
| =KURT($B$2:$B$20) | Sample excess kurtosis (-1.0517) | |
| =TEST_XKURT($B$2:$B$20) | p-value of the test when excess kurtosis = 0 (0.171) |

