1. Forecasting Weekly Retail Sales
Retail AnalystBackground
A retail analyst has daily sales data for the past year and needs to predict the next week's performance.
Problem
The data has strong weekend spikes, making simple averages inaccurate for daily predictions.
How to use
Upload the daily sales CSV, set the timestamp and value columns, choose the ARIMA model, set forecast periods to 7, and season length to 7.
{
"timestampColumn": "date",
"valueColumn": "sales",
"model": "arima",
"forecastPeriods": 7,
"seasonLength": 7,
"confidenceLevel": "0.95"
}Outcome
The tool generates a 7-day forecast that accurately reflects the weekend sales spikes, along with a decomposition chart showing the isolated weekly seasonality.