Indian Premier League 2021 Dataset
The latest dataset related to the ongoing 2021 season of the IPL
@kaggle.patrickb1912_indian_premier_league_2021_dataset
The latest dataset related to the ongoing 2021 season of the IPL
@kaggle.patrickb1912_indian_premier_league_2021_dataset
The IPL fever is on, so what better way to embrace it than unleashing out true nerd by analyzing this season's latest 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 ipl_ball_by_ball_dataset_2021 (
"id" BIGINT,
"inning" BIGINT,
"over" BIGINT,
"ball" BIGINT,
"batsman" VARCHAR,
"non_striker" VARCHAR,
"bowler" VARCHAR,
"batsman_runs" BIGINT,
"extra_runs" BIGINT,
"total_runs" BIGINT,
"non_boundary" BIGINT,
"is_wicket" BIGINT,
"dismissal_kind" VARCHAR,
"player_dismissed" VARCHAR,
"fielder" VARCHAR,
"extras_type" VARCHAR,
"batting_team" VARCHAR,
"bowling_team" VARCHAR
);
CREATE TABLE ipl_matches_dataset_2021 (
"id" BIGINT,
"city" VARCHAR,
"date" TIMESTAMP,
"player_of_match" VARCHAR,
"venue" VARCHAR,
"neutral_venue" BIGINT,
"team1" VARCHAR,
"team2" VARCHAR,
"toss_winner" VARCHAR,
"toss_decision" VARCHAR,
"winner" VARCHAR,
"result" VARCHAR,
"result_margin" DOUBLE,
"eliminator" VARCHAR,
"method" VARCHAR,
"umpire1" VARCHAR,
"umpire2" VARCHAR
);
Anyone who has the link will be able to view this.