1
00:00:11,130 --> 00:00:16,710
OK, so in this lecture, we will be summarizing everything we learned in this section, the section

2
00:00:16,710 --> 00:00:19,680
was all about exponential smoothing methods, also known as.

3
00:00:21,270 --> 00:00:25,650
We started this section with a very basic concept, the simple moving average.

4
00:00:26,070 --> 00:00:31,380
While it is indeed simple, we saw that it actually has many applications, including algorithmic trading.

5
00:00:32,760 --> 00:00:36,270
The next step was to consider the exponentially weighted moving average.

6
00:00:36,750 --> 00:00:40,650
This kind of update form the basis for all the models we studied in this section.

7
00:00:41,520 --> 00:00:44,370
The next step was to consider simple exponential smoothing.

8
00:00:45,480 --> 00:00:51,120
Mathematically, you saw that this was pretty much exactly the same as the WME, but simply framed in

9
00:00:51,120 --> 00:00:51,960
a different way.

10
00:00:52,530 --> 00:00:57,630
Instead of looking at it as a way to smooth out or average a time series, we saw it as a predictive

11
00:00:57,630 --> 00:00:58,080
model.

12
00:00:58,950 --> 00:01:02,780
From there, we were able to expand on the model by adding more components.

13
00:01:03,360 --> 00:01:06,910
We added a trend component and then it became a linear trend model.

14
00:01:07,530 --> 00:01:09,060
We added a seasonal component.

15
00:01:09,210 --> 00:01:11,150
And then it became the whole winters' model.

16
00:01:11,700 --> 00:01:16,090
After looking at how to implement whole winters' on the famous airline passengers data.

17
00:01:16,320 --> 00:01:20,970
We then applied it to more data sets, including champagne sales and stock prices.

18
00:01:25,770 --> 00:01:30,450
We also discovered that there are many options to choose from when it comes to the whole winters' model.

19
00:01:31,080 --> 00:01:34,770
We can make both Trenorden seasonality additive or multiplicative.

20
00:01:35,070 --> 00:01:36,320
We can damp the trend.

21
00:01:36,510 --> 00:01:38,550
We can use the box, Coggs transform.

22
00:01:39,420 --> 00:01:44,850
So with all these options, we needed a way to systematically test them, but to avoid overfitting while

23
00:01:44,850 --> 00:01:51,270
doing so, we learn that while techniques like cross-validation work for non time series data, we need

24
00:01:51,270 --> 00:01:56,850
to be careful when our observations have a time dependancy to solve this issue.

25
00:01:56,880 --> 00:01:58,920
We learned about walk forward validation.

26
00:01:59,850 --> 00:02:04,980
Now, please keep in mind that walk forward validation isn't unique to Etes methods.

27
00:02:05,400 --> 00:02:10,350
The reason I've introduced it in this section is simply because it's an appropriate and convenient time

28
00:02:10,350 --> 00:02:11,070
to do so.

29
00:02:11,730 --> 00:02:16,050
Walk forward validation can be used for any of the methods we discuss in this course.

30
00:02:16,410 --> 00:02:20,290
At the same time, it would be pretty tedious to do all that work and every script.

31
00:02:20,670 --> 00:02:22,300
So we're basically not going to.

32
00:02:22,980 --> 00:02:27,450
However, this doesn't mean that you shouldn't use this technique in your own time series work.

33
00:02:32,160 --> 00:02:37,020
So if you're an inquisitive student, you're probably wondering why is this collection of methods called

34
00:02:37,020 --> 00:02:40,900
it's X stands for error trend seasonality?

35
00:02:41,310 --> 00:02:45,230
So why is it error trend seasonality and not level trend seasonality?

36
00:02:45,840 --> 00:02:51,180
The answer is because it's possible to transform the update equations you learned about earlier into

37
00:02:51,180 --> 00:02:52,860
what is called stage space form.

38
00:02:53,550 --> 00:02:55,800
Now, the details aren't really important for this course.

39
00:02:55,800 --> 00:02:57,550
But let's look at one example.

40
00:02:58,500 --> 00:03:00,670
This is for simple exponential smoothing.

41
00:03:01,560 --> 00:03:05,910
Basically, you can see that we've rearranged the equations so that we have an error term.

42
00:03:05,910 --> 00:03:13,050
Epsilon t Epsilon T is considered to be, as usual, normally distributed, i.e. Noize, also known

43
00:03:13,050 --> 00:03:14,640
as a Gaussian white noise.

44
00:03:15,300 --> 00:03:20,370
Epsilon C is essentially the residual of our predictions in Time series analysis.

45
00:03:20,370 --> 00:03:22,340
We sometimes call these innovations.

46
00:03:22,980 --> 00:03:25,890
You can think of L.A. as kind of like a hidden state.

47
00:03:26,250 --> 00:03:28,950
We can't observe it, but it's something we want to estimate.

48
00:03:29,610 --> 00:03:32,000
YFC is the thing we actually observe.

49
00:03:32,580 --> 00:03:38,290
Basically, we can see that the error term Epsilon t is the part of this equation, which is unpredictable.

50
00:03:38,790 --> 00:03:43,770
So this tells us how the error term enters the picture and explains why we use the name error trend

51
00:03:43,770 --> 00:03:50,340
seasonality, essentially the kinds of time series we want to model our time series that can be decompose

52
00:03:50,490 --> 00:03:54,390
into these three components, the error of the trend and the seasonality.
