InterviewSolution
| 1. |
Describe the method of moving average to find trend. |
|
Answer» The method of moving average is very useful to find trend by eliminating the effect of short-term variations. The period of moving average : The short-term variation are usually regular and have repetition. The period of repetition of these variations can be found by observing the given time series. The average is found from the number of observations corresponding to this period which is known as the period of moving average. Since the average value lie in the centre, the values obtained by this method show the trend. Suppose the values of variable are y1, y2, …. yn corresponding to time t = 1, 2, …, n and the period of moving average is 3 years. Then the mean of first three observations y1, y2, y3 is found as \(\frac{y_1+y_2+y_3}{3}\) and it is written against the centre of these three observations which is y2. Further, the mean of successive three observation y2, y3, y4 is obtained and it written against y3. Similarly, finding successive moving total of three observations, averages are calculated. These average are called three yearly moving averages which indicate trend. The period of moving average not necessarily every time is year. It may be 5 days, 4 weeks, 7 months, etc. If time period of moving average is an even number say. 4, 6, … etc., then the process of finding moving average is to be done twice. Suppose, the period of moving average is 4 years. The four yearly successive averages \(\frac{y_1+y_2+y_3+y_4}{4} , \frac{y_2+y_3+y_4+y_5}{4}, \frac{y_3+y_4+y_5+y_6}{4} ……,\) are written between y2 and y3, y3 and y4, y4 and y5 …. respectively since, these averages are in between two years, the average of each pair of averages is found and written between two moving average. Thus, the average of the first two averages will be written against y3. The averages thus obtained are called as four yearly moving average. |
|