2. Time Series Flashcards

1
Q

What is the AR(1) equation?

A

U(t) = ε(t) = Φε(t-1) + η(t)

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

What is Φ?

A

Φ is the autoregressive parameter

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

What is η(t)?

A

the error term

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

What are the boundaries of Φ?

A

-1 < Φ < 1

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

What does it mean when Φ is near 1?

A

There is strong positive autocorrelation

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

What does it mean when Φ is near -1?

A

There is strong negative autocorrelation

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

What does it mean when Φ is near 0?

A

There is weak autocorrelation

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

When there is strong negative autocorrelation, what do we observe in the time series graph?

A

a yo-yo effect

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

When there is positive autocorrelation, what do we observe in the time series graph?

A

more smooth fluctuations

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

What is the equation for an AR(2)?

A

U(t) = ε(t) = Φ1ε(t-1) + Φ2ε(t-2) + η(t)

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

What does SSAC stand for?

A

sample simple autocorrelation coefficient

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

What does SPAC stand for?

A

sample partial autocorrelation coefficients

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

How can you identify an AR(1) process from the SPAC?

A

Only the lag at time = 1 will be outside of the envelope

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

How can you identify an AR(2) process from the SPAC?

A

Lags at time 1 and 2 will be outside of the envelope

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

What does the SSAC of a positive AR(1) process look like?

A

They decrease exponentially with time

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

What does the SSAC of a negative AR(1) process look like?

A

They decrease exponentially but in absolute value only: they alternate in sign, being negative at odd lags and positive at even lags.

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

Looking at Aikake’s or Schwarz’s criteria, how do we know if the model is fitted?

A

The smaller the criterion the better

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

When looking at parameter estimates, how do we know if the model is well fitted?

A

The more significant, i.e. the smaller the probability of significance, the better

19
Q

Looking at the sample simple autocorrelation coefficients calculated on the residuals, how do we know if the model is well fitted?

A

The lesser autocorrelation left in the residuals, i.e. the greater the probability of significance, the better

20
Q

When looking at a periodogram of negative autocorrelation, what do we see?

A

The highest values of the spectral density function [ f(ω) ] are in the highest frequencies (high ωs)

21
Q

When looking at a periodogram of positive autocorrelation, what do we see?

A

The highest values of the spectral density function [ f(ω) ] are in the lowest frequencies (low ωs)

22
Q

What is OLS?

A

Ordinary Least Squares

23
Q

What does OLS assume?

A

It assumes the absence of autocorrelation of the errors (since it assumes iid → iid = Corr = 0 because independent)

24
Q

What is EGLS?

A

Estimated generalized least squares

25
Q

Does EGLS assume iid?

A

no

26
Q

What does ARIMA mean

A

AutoRegressive Integrated Moving Average

27
Q

What does the RANNOR function do?

A

It is a SAS function that generates pseudo random numbers

28
Q

When using the RANNOR function, what is the seed?

A

The seed is the integer number that you put in parentheses

29
Q

Using the RANNOR function, what happens when the seed is positive?

A

When you run the code, it will always generate the same set of random numbers

30
Q

Using the RANNOR function, what happens when the seed is negative?

A

When you run the code, it will always generate a new set of random numbers

31
Q

Why would you run a code from -100 to 100 and then reject the first 100 results?

A

To develop a memory in the data to create better simulated data

32
Q

What is NLAG?

A

The number of time lags

33
Q

What is the recommended number of time lags?

A

1/4 of the number of time series (if you have 100, you will have 25 time lags)

34
Q

What is the first bar in the SSAC plot?

A

The lag of 0

35
Q

In the SSAC plot, what is the value of the lag of 0 (Bar #1)?

A

1

36
Q

Which lags (bars) are equal between the SSAC and the SPAC plots?

A

The lags at time 1.
Bar #2 for SSAC and Bar #1 for SPAC

37
Q

Characteristic of an AR(p) process shown in the SPAC

A

The SPAC bars drop under the envelope after lag p

38
Q

What is SAS PROC AUTOREG

A

REGression analysis with temporally AUTOcorrelated errors
PROC = procedure

39
Q

NLAG = 5 BACKSTEP SLSTAY = 0.05

A
  • Assessing the presence of temporal autocorrelation of errors up to time lag of 5.
  • Backstep: starting with time lag 5 and removing what is unnecessary.
  • SLSTAY = 0.05 → with a significance level of 5%
40
Q

MSE (mean square error) is it better for it to be small or big?

A

small

41
Q

AIC (Aikake information criterion) is it better for it to be small or big?

A

small

42
Q

Total R-Square is it better for it to be small or big?

A

big

43
Q

In SAS Output, the Backward elimination of autoregressive terms table shows you what?

A

It shows you which lags are not statistically significant (can be eliminated)

44
Q

Model SS is directly proportional to the Amplitude (A) squared

A

true