ZeitreihenKreuzvalidierung
ZeitreihenKreuzvalidierung, also known as time series cross-validation, is a statistical method used to evaluate the performance of predictive models on time series data. Unlike traditional cross-validation techniques, which randomly shuffle the data, time series cross-validation respects the temporal order of the data. This is crucial because time series data often exhibit trends, seasonality, and autocorrelation, which can be violated if the data is shuffled.
In time series cross-validation, the data is divided into multiple segments, typically called folds. Each fold
There are several common approaches to time series cross-validation:
1. Rolling Forecast: In this method, the model is trained on an initial segment of the data
2. Expanding Window Forecast: Similar to the rolling forecast, but instead of using a fixed-size training window,
3. Fixed Window Forecast: This approach uses a fixed-size training window and a fixed-size test window, sliding
The choice of cross-validation method depends on the specific characteristics of the time series and the goals