Analysis of Sequential Data
MSE Module TSM_AnSeqDa
MSE Module TSM_AnSeqDa
96
0.0 (0)
Set of flashcards Details
Flashcards | 96 |
---|---|
Language | Deutsch |
Category | Maths |
Level | University |
Created / Updated | 17.01.2021 / 08.09.2023 |
Weblink |
https://card2brain.ch/box/20210117_tsmanseqda
|
Embed |
<iframe src="https://card2brain.ch/box/20210117_tsmanseqda/embed" width="780" height="150" scrolling="no" frameborder="0"></iframe>
|
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.