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
What is the ets() function in R about?
- Automatically chooses a model by default using the AIC, AICc or BIC
- Can handle any combination of trend, seasonality and damping
- Ensures the parameters are admissible ( equivalent to invertible)
- Produces an object of class "ets"
Exercise shown in lecture 5:
An exponential smoothing model with trend has parameters alpha = 0.0001, beta = 0.0001, with initial states l0 = 1; b0 = 1. Let us assume that the first observation of the time series has time index 1.
- Which is approximately the fitted value for time t=8? Discuss how you reach your conclusion, showing the relevant formulae.
- Compute exactly the fitted values for the first two time instants of the time instants of the time series, assuming the first two observations of the time series to be y=[1.5;2.2].
- How could you change the parameters of the model, in order to obtain a nive predictor?
How can you identify non-stationary time series (arima models need stationarity)?
- Time plot
- The ACF of stationary data drops to zero relatively quickly
- The ACF of non-stationary data decreases slowly
- For non-stationary data, the value of r1 is often large and positive
What is differencing about?
- Used when arima models are applied to forecast the time series
- Differencing helps to stailize the mean
- the differenced series is the change between each observation in the original series
- y't = yt - yt-1
- The differenced series will have only T-1 values since it is not possible to calculate a difference y'1 for the first observation
What is the difference between first- and second-order differencing?
Occasionally the first-order differenced data will not appear stationary and it may be necessary to difference the data a second time.