Forecasting Flashcards

1
Q

What does ARIMA stand for

A

Autoregressive Integrated Moving Average

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

When is an ARIMA Process stationary

A

When d=0

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How can we transform an ARIMA process where d=k k not zero to be stationary

A

Apply k differences

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the three/four key steps in the box jenkins methodology

A
  1. preliminary analysis
  2. identification and estimation
  3. model diagnostics
    (4 forecasting)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are the steps in the box jenkins method under preliminary analysis?

A

Plotting the time series
If the variance isnt constant using log or box cox transform to stabilise
Plot ACF - take differences until reaching stationarity (avoid unnecessary differencing)
Study ACF and PACF to determine max lags for ARMA model

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are the steps in the box jenkins method under identification and estimation?

A

Identify p and q with criterion like AIC, AICc or BIC
Once a model is selected estimate the parameters using ex: maximum likelihood
Examine fitted coefficients and their SErrors and see if some of them can be set to zero

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are the steps in the box jenkins method under model diagnostics?

A

Check is residuals are behaving like white noise
Plot ACF and qq norm graph and histogram of residuals and test for normality using shapiro wilks
Perform ljung box pierce test

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is our aim when forecasting?

A

Find a linear combination of observed Xn….X1 that forecasts X n+h with minimum mean squared error where Xt is a stationary time series

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do we find the parameters/ weights a in the best linear predictor formula

A

Minimising the mean squared error

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

How do we minimise the mean squared error

A

Find the derivative of it wrt each aj and set these derivatives equal to zero - will have n+1 equations to solve for n+1 parameters

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is function for forecasting in R

A

sarima.for

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What is the layout of function sarima.for in R

A

Sarima.for(x, n.ahead=-,p=-,d=-,q=-,plot.all=TRUE)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly