Here are the steps to calculate a 4-point moving average for an even number of data points:
1) List the salary data:
Jan: 8
Feb: 4
Mar: 6
Apr: 10
May: 8
2) Calculate the average of the first 4 data points:
(8 + 4 + 6 + 10) / 4 = 7
3) Calculate subsequent averages by removing the earliest data point and adding the next data point:
(4 + 6 + 10 + 8) / 4 = 7
(6 + 10 + 8 + 8) / 4 = 8
4) Plot the original data and the moving averages on a chart.
So the 4-point