module probextreme.stat_test
Collection of statistical test usefull to caracterise the data S. Filhol, December 2024
function visualize_signal_stationarity
Function to quickly visualize stationarity of the data using rolling mean, median and standard deviation
function adfuller_test
Perform an Augmented Dicker-Fuller test for testing the stationarity of a signal
Args:
data(array or timeseries): data to testsignificance_level(float): significance level to compare P-value. Default is 0.05
External resource: https://en.wikipedia.org/wiki/Augmented_Dickey%E2%80%93Fuller_test
function levene_test
It tests the null hypothesis that the population variances are equal
Args:
data(array or timeseries): data to testsplit_index(int): index to split the data in two distinct groupssignificance_level(float): significance level to compare P-value. Default is 0.05
External resource: https://en.wikipedia.org/wiki/Levene%27s_test
This file was automatically generated via lazydocs.