ColdBox, a meal-kit subscription company, needs a short-term forecast of weekly order volume to plan packaging and delivery capacity. The operations team wants a simple time-series forecast using recent demand data.
You are given 8 weeks of historical orders. Build a simple linear time-series trend model using week number as the predictor, then forecast demand for week 9. Also quantify forecast uncertainty.
| Week | Orders |
|---|---|
| 1 | 120 |
| 2 | 128 |
| 3 | 133 |
| 4 | 141 |
| 5 | 149 |
| 6 | 152 |
| 7 | 160 |
| 8 | 168 |
Assume the model:
where is weekly orders, is week number, and errors are independent with mean 0 and constant variance.
Use a 95% confidence level. For this question, use the residual standard error from the fitted model to estimate forecast uncertainty.