Time Series Pt. 2 Flashcards

1
Q

How to check for stationarity?

A
  1. Create a line plot and visually check for stationarity
  2. Check the statistics – does the mean move through time?
  3. Do a Dickey-Fuller Test
    • P > 0: Not Stationary
    • P < 0: Stationary
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How to check for seasonality?

A
  1. Create a line plot
  2. Understanding the nature of the data and what would be expected
  3. Look at an autocorrelation plot
    • There should be a sinusoidal shape to the correlations if there is seasonality
    • Can look at the length of each season by looking at the plots (lag length of each season)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

How to adjust for seasonality?

A
  • Add a seasonal component to linear trend in time model with a categorical variable
  • Use differencing to transform our data, which helps our data become stationary but removes seasonal component
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How to check for serial correlation?

A
  1. Create a line plot – visually check for points in time reliant on each other, including seasonality
  2. Understand nature of the data and what would be expected
  3. Look at an autocorrelation plot also known as a correlogram or an autocorrelation function (ACF) plot
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Correlogram

A

Plots the autocorrelation for sequential lags allowing us to see the structure of the correlation in each lag

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

What its the autocorrelation in the plots if the correlation in the lags are random?

A

Near zero

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

What its the autocorrelation in the plots if the correlation in the lags are not random?

A

Significantly non-zero

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

Trend component – linear models

A

Important for long-term forecasts and we fit trend models to time series, particularly when we have deterministic trends.

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

Trend component – MA models

A

MA maps the average of the prior data points, given a certain specified lag. The longer the lag the smoother our MA line. The shorter the lag the wigglier our MA line, making it closer to the original data.

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

What do MA models identify?

A

MA models are simple but a good starting place in trying to explain the signal underlying our time series data. They are also helpful in identifying “shocks” and/or seasonality in the historical data.

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

What do MA models help inform?

A

Helps inform trend selection and identify abnormal behaviors

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

Trend Component - Exponential Smoothing

A

Calculates weighted average of past data points, while assuming the weights on those past observations are exponentially decreasing. Longer the lag from your current point, the less weight is given, assuming exponential behavior.

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

Simple Exponential Smoothing

A

Use on time series data with no underlying trend or seasonality. It has one parameter, which controls how long we want to trust the historical points further and further away from the current point.

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

In simple exponential smoothing, what does an alpha near 1 mean?

A

The most recent data influence our forecast

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

In simple exponential smoothing, what does an alpha near 0 mean?

A

Older and older data influence our forecast

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

Double Exponential Smoothing

A

Takes the simple exponential smoothing and adds an overall trend component. Can be used on data without seasonality but with an underlying trend. And can assume a linear underlying trend or exponential underlying trend.

17
Q

Triple Exponential Smoothing

A

Takes the double exponential smoothing and adds an element to adjust for seasonality. Can assume a linear or exponential seasonality.