Demo on sales forecasting.
- Python (version 3.8)
- Jupyter Notebook
- [Optional] Virtualenv or Conda for managing dependencies
Download the Jupyter notebook file (sales_forecasting_demo.ipynb) from the repository.
Download the data archive (data.zip) from the repository.
Extract the contents of the data archive to a folder in the project directory.
# Using virtualenv
python -m venv venv
source venv/bin/activate # On Windows, use `venv\Scripts\activate`
# Using conda
conda create --name myenv
conda activate myenvpip install -r requirements.txtjupyter notebookNavigate to the notebook file (sales_forecasting_demo.ipynb) in your browser and open it using Jupyter Notebook.
You can simply run the cells in the notebook and see the procedure for sales forecasting.