1
00:00:11,110 --> 00:00:16,240
So in this lecture, we'll be summarizing what we've learned in this section, this section looked at

2
00:00:16,240 --> 00:00:21,590
vector auto, regressive and moving average models, which are useful for a multivariate time series.

3
00:00:22,120 --> 00:00:27,580
These can be used whenever you believe that you have multiple time series which can influence each other.

4
00:00:28,870 --> 00:00:34,910
This is typically assumed to be the case for econometrics applications, which is one aspect of finance.

5
00:00:35,590 --> 00:00:41,590
We saw that the Vamo model itself is a pretty straightforward extension of a simply replacing the Time

6
00:00:41,590 --> 00:00:44,890
series with vectors and the parameters with matrices.

7
00:00:45,490 --> 00:00:48,280
We then looked at several examples of AAMA in code.

8
00:00:48,790 --> 00:00:52,530
We learned that Varma takes a long time to train compared to a rhema.

9
00:00:53,440 --> 00:00:59,290
In addition, there is a possibility of overfitting since Vamo parameters grow quite dramatically with

10
00:00:59,290 --> 00:01:00,660
the number of components.

11
00:01:01,480 --> 00:01:06,970
In the case where we have two time series which are truly independent, Vamo might learn false correlations

12
00:01:06,970 --> 00:01:07,970
due to noise.

13
00:01:08,380 --> 00:01:12,580
So it's always important to test against the baseline and choose what works best.

14
00:01:17,390 --> 00:01:21,630
We also learned that at least in stat's models, we have to do different thing ourselves.

15
00:01:22,130 --> 00:01:27,000
This may be because each component of the TIME series may be integrated to a different order.

16
00:01:27,770 --> 00:01:32,990
However, note that this is not really a scientific observation since other libraries and languages

17
00:01:33,140 --> 00:01:35,220
do have Arima implementations.

18
00:01:35,750 --> 00:01:37,220
So this is only a guess.

19
00:01:37,220 --> 00:01:43,250
But maybe the reason why it's not included in stats models is because the developers believe different

20
00:01:43,250 --> 00:01:44,330
things should be explicit.

21
00:01:45,170 --> 00:01:50,510
Of course, if you find that defensing is necessary, then in order to make a forecast, you'll need

22
00:01:50,510 --> 00:01:52,200
to undo the difference as well.

23
00:01:52,730 --> 00:01:57,110
We didn't discuss how to do that in the section, but we will elsewhere in the course.

24
00:02:01,870 --> 00:02:07,600
The next thing to realize is that it is still possible to get even more advanced when it comes to Arima

25
00:02:07,600 --> 00:02:12,760
and Vector AAMA models, we've covered the basics, but there are still a lot more things you could

26
00:02:12,760 --> 00:02:16,730
do in terms of the math and analyzing the properties of these models.

27
00:02:17,290 --> 00:02:22,600
This happens to require a lot more linear algebra, which I would consider to be beyond the prerequisite

28
00:02:22,600 --> 00:02:23,790
level for this cause.

29
00:02:24,490 --> 00:02:29,230
However, I do want to give you a preview in case these are topics you want to explore on your own.

30
00:02:30,310 --> 00:02:36,040
So one interesting thing that can happen is suppose you have a multivariate time series where each time

31
00:02:36,040 --> 00:02:37,240
series is Iwona.

32
00:02:37,960 --> 00:02:43,010
It's possible that some linear combination of these Time series gives you an I zero.

33
00:02:43,960 --> 00:02:49,690
That is, if you multiply each time series by some set of constants and then add them together, you

34
00:02:49,690 --> 00:02:51,660
will get a time series that is stationary.

35
00:02:52,120 --> 00:02:57,760
In other words, you can get a time series that is stationary without different saying this is called

36
00:02:57,760 --> 00:02:58,900
code integration.

37
00:02:59,710 --> 00:03:04,360
So if you want to extend your knowledge of vector auto regression, then this might be an interesting

38
00:03:04,360 --> 00:03:05,040
topic.

39
00:03:09,790 --> 00:03:13,580
Another possible topic of study is the impulse response.

40
00:03:14,080 --> 00:03:19,090
This tells us how each component of the TIME series would evolve if we were to shock the system with

41
00:03:19,090 --> 00:03:21,500
an input to one or more variables.

42
00:03:22,300 --> 00:03:28,210
In fact, the procedure for how this is done involves converting the model into moving average form.

43
00:03:29,320 --> 00:03:34,320
So now you have some idea about why converting between different model types could be useful.
