This project is a simple AI system to predict daily sales of products based on historical data. It is designed to help small businesses or schools track and forecast inventory more efficiently.
- A small dataset is created with columns:
day— day numberproduct— name of the producttotal_sold— number of items soldweather— sunny, hot, cold, etc.day_type— weekday or weekendspecial_event— promotions, holidays, etc.
- The dataset is converted into a DataFrame using pandas for easy analysis.
- The AI can learn patterns from the data and predict total sales for future days.
- Understand sales trends and patterns.
- Experiment with AI and data analysis using Python.
- Learn the basics of working with datasets, pandas, and machine learning workflows.
- Make sure Python and pandas are installed.
- Clone this repository.
- Run
main.pyto load the dataset and start exploring. - Future steps include plotting trends and building predictive models.
- This project is currently a mini-experiment with a small, manually created dataset.
- More features and real data can be added later to improve predictions.