SUMMARY-Stationary
Eaxample code in Python for test for stationary data
Summary statistics
- split the data in more partitions
- compare the mean and the variance of each group
- if the the difference is statistically not significant, then the serie is likely non-stationary
Also use ANOVA test
These calculations can be done from scipy and statistical module stats (function: f_onway).