Contents
Dataset Overview
The project uses the IPL Complete Dataset (2008–2025) available on Kaggle. This dataset contains detailed information about IPL matches played across multiple seasons, making it suitable for exploratory data analysis and visualization.
Dataset Download
Download the dataset from:
IPL Complete Dataset (2008–2025) – Kaggle
The dataset contains two CSV files:
- matches.csv – Match-level information such as teams, venue, toss, winner, player of the match, and result.
- deliveries.csv – Ball-by-ball information for every IPL match. (This project primarily uses matches.csv.)
Dataset Features
Feature | Description |
| season | IPL season |
| date | Match date |
| team1 | First competing team |
| team2 | Second competing team |
| toss_winner | Team winning the toss |
| toss_decision | Bat or Field |
| winner | Match winner |
| player_of_match | Best performing player |
| venue | Match venue |
| result | Method of victory |
| result_margin | Winning margin |
| match_type | League or Playoff match |
Each row represents a single IPL match, allowing us to analyze player performances, team statistics, toss decisions, venue trends, and match outcomes.
Cricket Data Analysis Using Python
VA










