Skip to content

Jarque-Bera test

Regular test

# HypothesisTests.JarqueBeraTestType.

1
JarqueBeraTest(d::AbstractUncertainValue, n::Int = 1000) -> JarqueBeraTest

Compute the Jarque-Bera statistic to test the null hypothesis that an uncertain value is normally distributed.

source

Pooled test

# UncertainData.UncertainStatistics.JarqueBeraTestPooledFunction.

1
JarqueBeraTestPooled(ud::UncertainDataset, n::Int = 1000) -> JarqueBeraTest

First, draw n realisations of each uncertain value in ud and pool them together. Then, compute the Jarque-Bera statistic to test the null hypothesis that the values of the pool are normally distributed.

source

Element-wise test

# UncertainData.UncertainStatistics.JarqueBeraTestElementWiseFunction.

1
2
OneSampleADTestElementWise(ud::UncertainDataset,
    n::Int = 1000) -> Vector{JarqueBeraTest}

First, draw n realisations of each uncertain value in ud, keeping one pool of values for each uncertain value.

Then, compute the Jarque-Bera statistic to test the null hypothesis that each value pool is normally distributed.

source