Analysis of Sequential Data
MSE Module TSM_AnSeqDa
MSE Module TSM_AnSeqDa
96
0.0 (0)
M. L.
M. L.
Diese Lernkarten behandeln fortgeschrittene Konzepte der Zeitreihenanalyse auf Universitätsniveau. Sie konzentrieren sich auf Themen wie Stationarität, Differenzierung, Autokorrelationsfunktion (ACF), Vorhersageintervalle und Modelle wie ARIMA, ETS und Holt-Winters. Die Karteikarten sind besonders nützlich für Studierende und Forscher, die Zeitreihendaten analysieren und vorhersagen möchten, da sie sowohl theoretische Grundlagen als auch praktische Anwendungen abdecken.
Cartes-fiches
96
Utilisateurs
3
Langue
Allemand
Catégorie
Mathématiques
Niveau
Université
Créé / Mis à jour
17.01.2021 / 08.09.2023
-
- 1 / 96
-
Cartes-fiches
Which nise properties need to be checked?
- We estimate the properties of the noise from the residual of the models
- We need to check the residuals to be unbiased, in order to assume the mean of the noise to be 0
- We need to check that the residuals are uncorrelated in order to use the summation of the variance of the noise at vasious time steps
- We estimate the variance of the noise to be equal to the variance of the residuals
- Once checked the assumptions about the residuals, we can conpute the prediction intervals
How do you choose between competing model?
- Selecting the model with lowest sum of squared residuals (sse) would lead to overfitting
- Statistical model selection: Select the model which maximizes a score composed by the log likelihood ( proportional to the sum of squared residuals) and a penalty related to the number of parameters in the model --> AIC
- More complex models have in general lower residuals but higher number of parameters (higher penalization)
What is the letter k in AIC for and how do you set it for ses, ses with trend, ses with damped trend?
- k is the total number of parameters and initial states that have been estimated, including the variance of the residuals
- ses: k=3 (l0, alpha, sigma)
- ses with trend: k=5 (l0, alpha, sigma, b, beta)
- ses with damped trend: k=6 (l0, alpha, sigma, b, beta, fi)
How are the two seasonal forecasting method called?
- Holt-Winters additive method
- to capture seasonality
- Holt-Winters multiplicative method
- for when seasonal variations are changing proportional to the level of the series
How many parameters need to be estimated for the seasonal methods?
- Estimation of m+5 paramters
- 3 smoothing coefficients (alpha, beta, gamma)
- m+2 initial states (s1, ...., sm, l0, b0)
Look at the prediction interval exercises for the ses model!
LOOK AT IT! ;)
What are the innovations state space models, what is their abbreviation and what is the difference to the exponential smoothing methods?
- Innovations state space models (Error, Trend, Seasonal: ETS)
- Generate same point forecasts as ses but can also generate forecast intervals
- A stochastic (or random) data generating process that can generate an entire forecast distribution
- Allow for "proper" model selection
- Exponential smoothing methods
- Algorithms that return point forecasts
How work the ETS models?
- Each model has an observation equation and transition equations, one for each state (level, trend, seasonal), i.e. state space models
- Two models for each method: one with additive and one with multiplicative errors, i.e., in total 18 models
- ETS(Error, Trend, Seasonal)
- Error = {A,M}
- Trend = {N,A,Ad}
- Seasonal = {N,A,M}