IPL Complete Dataset (2008-2024)
The latest and complete IPL dataset (Updated till 2024 Season)
@kaggle.patrickb1912_ipl_complete_dataset_20082020
The latest and complete IPL dataset (Updated till 2024 Season)
@kaggle.patrickb1912_ipl_complete_dataset_20082020
Now that this year's IPL is over, let's not curb our cricket love and start analyzing the whole of IPL with this latest and complete Indian Premier League dataset. It contains the match descriptions, results, winners, player of the matches, ball by ball dataset and much more. So, stop thinking and start analyzing .
This dataset consists of two seperate CSV files : matches and deliveries. These files contain the information of each match summary and ball by ball details, respectively.
Data Source : Cricsheet
CREATE TABLE deliveries (
"match_id" BIGINT,
"inning" BIGINT,
"batting_team" VARCHAR,
"bowling_team" VARCHAR,
"over" BIGINT,
"ball" BIGINT,
"batter" VARCHAR,
"bowler" VARCHAR,
"non_striker" VARCHAR,
"batsman_runs" BIGINT,
"extra_runs" BIGINT,
"total_runs" BIGINT,
"extras_type" VARCHAR,
"is_wicket" BIGINT,
"player_dismissed" VARCHAR,
"dismissal_kind" VARCHAR,
"fielder" VARCHAR
);
CREATE TABLE matches (
"id" BIGINT,
"season" VARCHAR,
"city" VARCHAR,
"date" TIMESTAMP,
"match_type" VARCHAR,
"player_of_match" VARCHAR,
"venue" VARCHAR,
"team1" VARCHAR,
"team2" VARCHAR,
"toss_winner" VARCHAR,
"toss_decision" VARCHAR,
"winner" VARCHAR,
"result" VARCHAR,
"result_margin" DOUBLE,
"target_runs" DOUBLE,
"target_overs" DOUBLE,
"super_over" VARCHAR,
"method" VARCHAR,
"umpire1" VARCHAR,
"umpire2" VARCHAR
);
Anyone who has the link will be able to view this.