Param Estimator
JarqueBera
Jarque-Bera test of normality.
Uses statsmodels.stats.stattools.jarque_bera as a test of normality.
Schnellstart
python
from sktime.param_est.residuals import JarqueBera
estimator = JarqueBera(axis=0)Parameter(1)
- axisint, optional
- Axis to use if data has more than 1 dimension. Default is 0.
Beispiele
>>> from sktime.datasets import load_airline
>>> from sktime.param_est.residuals import JarqueBera
>>>
>>> X = load_airline ()
>>> param_est = JarqueBera ()
>>> param_est. fit (X) JarqueBera(
... )