w5 Flashcards

1
Q

Forecasting

A

prediction with time.

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

Cross-sectional

A

time is not the independent variable.

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

Time-series

A

past data is used to predict trends.
- usually done with a line chart to show trend
- regular intervals of time (quarters, months, years)

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

Horizontal Pattern

A

Mean is not changing.

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

Non-stationary time series

A

There is a jump up or down in the pattern.

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

Trend Pattern

A

increasing or decreasing over time.

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

Seasonal Pattern

A

Pattern repeats in regular intervals; repeats across season, quarters, or years.

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

Trend Seasonal Pattern

A

Has a repeating pattern but also is increasing or decreasing over time.

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

Forecast error

A

difference between actual value and predict value; like checking after the fact how well your prediction predicted the actual value.

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

Four measures of time series

A
  • Mean forecast error
  • Mean absolute error
  • Mean square error
  • Mean absolute percentage error
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

MFE pros and cons

A

pros: can be used to determine whether the model is overestimating (negative result) or underestimating (positive result).
cons: negative and positive numbers cancel each other out. Not a good overall measure.

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

MAE pros and cons

A

pros: solves MFE’s flaw. Better than MSE when you include outliers.
cons: not comparable across different models.

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

MSE pros and cons

A

pros: most popular overall model measure. Solves MFE’s flaw.
cons: not comparable across different models. Easily biased by outliers.

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

MAPE pros and cons

A

pros: comparable across models.
cons: most difficult measure to calculate.

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

Non-moving Methods

A

Naive bar casting method & Average past values casting

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

Naive bar casting method

A

simply takes the last actual value and uses that value to predict the next value. Adapts to changes quickly making it a good method for non-stationary patterns.

17
Q

Average past values method

A

average all past actual values to predict the next value. Good for horizontal pattern.

18
Q

Moving methods

A

Use most recent actual values to predict the next value. They include Moving average forecasting & Exponential Smoothing.

19
Q

Moving Average Method

A

Uses k number of recent actual values, averages them, and uses that average to predict the next value. Lower K works best with frequent fluctuations while higher K works best with fewer fluctuations.

20
Q

Exponential Smoothing Method

A

y_t+1 = y(a) * y_hat(1-a); uses the weighted most recent prediction and value to predict then next value. When there is higher variation, a should be higher. When there is less variation, a should be lower. 0 < a < 1.

21
Q

Causal Forecasting

A

time and a non-time independent variable used to predict dependent variable.

22
Q

Linear Regression for Seasonal Trend Pattern

A

y = B0 + B1Q1 + B2Q2 + B3Q3 + B4X + e; the time intervals are categorical dummy variables in this instance.

23
Q

How are K and alpha determined?

A

computers try different values to maximize MSE. Where MSE is maximized, k or alpha is best.