πŸ“… Time Series

Grade 8 Β· Statistics Β· FractionRush

Time Series

A time series is a sequence of data recorded at regular time intervals. We plot time on the x-axis and the measured quantity on the y-axis, then identify trends, cycles, and use moving averages to smooth fluctuations.

πŸ“– Learn

Reading a Time Series Graph

Time series graphs show how a variable changes over time. Points are plotted and joined with straight lines.

πŸ’‘ Don't confuse the trend (long-term direction) with individual fluctuations.

Moving Averages

A moving average smooths out short-term fluctuations and reveals the underlying trend.

n-point moving average: average of each group of n consecutive values
Plot the average at the MIDDLE time point of the group.

Example: data = 4, 7, 5, 8, 6, 9. 3-point moving averages:

πŸ’‘ A 4-point moving average is often used with quarterly data (4 seasons). The midpoint between two 4-point averages is centred on a time point.

Trend Lines and Prediction

A trend line is drawn through the moving averages. It shows the overall direction and can be used to predict future values.

πŸ’‘ Extrapolation (predicting beyond the data) becomes less reliable the further you go.

✏️ Worked Examples

Example 1: 3-point moving average

Data: 5, 8, 4, 10, 6, 12, 8. Calculate all 3-point moving averages.

(5+8+4)/3 = 17/3 = 5.67
(8+4+10)/3 = 22/3 = 7.33
(4+10+6)/3 = 20/3 = 6.67
(10+6+12)/3 = 28/3 = 9.33
(6+12+8)/3 = 26/3 = 8.67

Example 2: 4-point moving average (quarterly data)

Quarterly sales: Q1=10, Q2=14, Q3=8, Q4=12, Q1=11, Q2=15. Find the 4-point moving averages.

(10+14+8+12)/4 = 44/4 = 11.0 (centred between Q2 and Q3)
(14+8+12+11)/4 = 45/4 = 11.25
(8+12+11+15)/4 = 46/4 = 11.5

Example 3: Reading a trend

Monthly temperatures (Β°C): 12, 14, 18, 22, 25, 24, 20, 16, 12, 10, 8, 9. Describe the trend.

Values rise from Jan to May, peak in summer, then fall through autumn and winter.
This shows a clear seasonal pattern β€” not a long-term upward or downward trend.

🎨 Visualizer

Time Series Graph Builder

Enter comma-separated values to plot a time series and moving average:

Moving Average Calculator

Ex 1 β€” Reading Time Series

Ex 2 β€” 3-Point Moving Average

Ex 3 β€” 4-Point Moving Average

Ex 4 β€” Trends and Patterns

Ex 5 β€” Predictions

⭐ Practice β€” 20 Questions

πŸ”₯ Challenge β€” 8 Questions