jarque_bera¶
In [ ]:
jarque_bera(vdf,
column: str,
alpha: float = 0.05)
Jarque-Bera test (distribution normality).
Parameters¶
| Name | Type | Optional | Description |
|---|---|---|---|
vdf | vDataFrame | ❌ | input vDataFrame. |
column | str | ❌ | Input vcolumn to test. |
alpha | float | ✓ | Significance Level. Probability to accept H0. |
Returns¶
tablesample : An object containing the result. For more information, see utilities.tablesample.
Example¶
In [20]:
from verticapy.datasets import load_titanic
titanic = load_titanic()
titanic["age"].hist()
Out[20]:
In [21]:
from verticapy.stats import jarque_bera
jarque_bera(titanic,
column = "age",
alpha = 0.01)
Out[21]:
