Time series data often contain patterns that we can break down into different components.
Decomposition allows us to separate these components to better understand underlying trends and improve forecasting.
Recall that a time series is often composed of:
Consider monthly egg prices over several years. Prices fluctuate due to multiple factors:
By decomposing the time series, we can isolate these effects and make better predictions.
This plot helps us:
We assume that a time series can be expressed as either an additive or multiplicative model.
The outcome we are modeling is the observed value of a time series at a specific point in time.
\(Y_t = T_t + S_t + R_t\)
Where:
Decomposition helps us break down the value of \(Y_t\) into meaningful components.
Suppose we analyze monthly sales of a product:
Question: If the baseline sales in January 2023 were $10,000, what would the expected sales be in December 2023?
Using the given trend and seasonal components, we can write our time series decomposition as:
\(Y_{Dec} = 10,000 + (1,000 \times 11) + 500 + R\)
Answer: \(Y_{Dec} = \$21,500\)
\(Y_t = T_t \times S_t \times R_t\)
Where:
The multiplicative model is often used when seasonality effects increase proportionally with the trend.
Suppose a company’s revenue…
Question: If the baseline revenue in January 2023 was $10,000, what would the expected revenue be in December 2023?
Using the given trend and seasonal components, we can write our time series decomposition as:
\(Y_{Dec} = (10,000 \times 1.05^{11}) \times 1.2 \times R\)
Answer: \(Y_{Dec} = \$20,524.07\)
Additive versus Multiplicative?
If egg prices increase over time due to inflation or demand shifts, seasonal peaks and troughs will likely grow proportionally rather than stay constant. A multiplicative model would be more appropriate.
If the seasonal effect remained constant over time, an additive model would be more appropriate.
decompose()
in RNow that we understand the components of a time series, how do we extract them from real-world data?
In this week’s lab, we will use R’s decompose()
function to break down a time series into its trend, seasonal, and residual components.
In pairs, think about what question you want to answer with time series decomposition and forecasting.
When choosing your time series data for the project, consider the type of decision-makers who would benefit from your analysis.
Context: Suppose you are advising a grain processing company that wants to maintain a stable supply of raw materials for the next five years.
Decision To-Be-Made: They need to decide which grain (corn, wheat, or soybeans) to invest in based on future price trends.
Next: Implement decomposition in this week’s lab!
Groups of 2 (Sign up for your Project 1 group on Canvas)
Choose an ag biz or enre management question to answer with time series data
Collect time series data
Analyze trends
Generate a forecast
Present results in a recorded video