Predictive Analytics · Regression · EDA · Feature Engineering · Model Selection
This project built a predictive model for daily quick-service restaurant (QSR) outlet revenue using structured temporal, location-based, promotional, and competitive features. The business goal was to support operational decisions such as staffing, inventory planning, and promotion scheduling by forecasting outlet-day revenue more accurately. I treated the task as a supervised regression problem and compared multiple models using 5-fold cross-validation with mean squared error (MSE) as the evaluation metric. The final selected model was Elastic Net, which achieved the lowest cross-validated MSE among the candidate models. The results suggested that the data structure was largely linear, while mild regularisation helped improve stability in the presence of outlet-level effects, engineered date features, and potentially correlated predictors.
This project strengthened my understanding of how predictive analytics connects statistical modelling with real operational decision-making. A key lesson was that model accuracy alone is not enough: the modelling process must be reproducible, well-justified, and clearly communicated. The strongest insight was that a carefully engineered linear model can perform competitively on structured business data. Although Elastic Net only slightly outperformed standard linear regression and Ridge, its regularisation made it a robust final choice given the one-hot encoded OutletID features and potential multicollinearity. The project also showed the importance of honest model interpretation. The final model fitted the central revenue range reasonably well but underpredicted unusually high-revenue days. In a real QSR setting, this limitation matters because those peak days are exactly when staffing shortages and stock-outs are most costly. If iterating further, I would test interaction effects, lagged revenue features, and alternative transformations to better capture high-demand events while keeping the model interpretable.