Using the final 24 months as the test period, the Holt-Winters multiplicative model produced the lowest RMSE, MAE, and MAPE. This indicates that the livestock series contains both trend and seasonal patterns, and that the size of the seasonal fluctuations changes with the overall level of the series. The multiplicative Holt-Winters model outperformed the additive Holt-Winters model, suggesting that seasonality is better represented proportionally rather than as a constant absolute amount. Holt’s model performed worse because it captured the trend but ignored monthly seasonality, while SES produced the largest errors because it modeled neither trend nor seasonality.
Warning in report.mdl_df(livestock_models): Model reporting is only supported
for individual models, so a glance will be shown. To see the report for a
specific model, use `select()` and `filter()` to identify a single model.
The smoothing parameters show how quickly each exponential smoothing model reacts to new data. Alpha controls the level of the series. When alpha is high, the model gives more weight to recent observations, so the forecast adjusts quickly to new changes. When alpha is low, the forecast becomes smoother and changes more slowly.
Beta controls the trend. A high beta allows the model to update the trend quickly when the series starts increasing or decreasing at a different rate. A low beta keeps the trend more stable and assumes that it changes gradually over time.
Gamma controls the seasonal pattern. A high gamma allows the model to adjust the seasonal component quickly when recent seasonal behavior changes. A low gamma assumes that the seasonal pattern is relatively stable and continues in a similar way.
Overall, larger smoothing parameters make the model more responsive to recent changes, but they can also make the forecast more sensitive to temporary noise. Smaller values create smoother forecasts, although they may react too slowly when the pattern of the series changes suddenly.
Part 3. Scenario Analysis
Exponential smoothing can adjust to sudden changes because it gives more weight to recent observations. Higher values of alpha, beta, and gamma help the model respond more quickly, but they can also make forecasts too sensitive to temporary noise. After a major disruption, the model may still react too slowly because it continues to rely on past patterns. Forecasts can be improved by updating the model frequently, using a rolling training window, treating outliers carefully, and adding external variables such as weather, prices, or processing capacity.