Indian Premier League (IPL) 2023 Dataset
ball by ball updates of every game
@kaggle.sankha1998_ipl2023
ball by ball updates of every game
@kaggle.sankha1998_ipl2023
Plot
Cricket is like a festival in India. People sometimes forget their political fight, corporate dateline when it comes to cheering up their favorite cricket team. So, here is ball by ball updates of every game happened in ipl 2023.
CREATE TABLE each_ball_records (
"match_no" BIGINT,
"ballnumber" BIGINT,
"inningno" BIGINT,
"over" DOUBLE,
"outcome" VARCHAR,
"batter" VARCHAR,
"bowler" VARCHAR,
"comment" VARCHAR,
"score" BIGINT
);CREATE TABLE each_match_records (
"season" BIGINT,
"date" VARCHAR,
"match_number" BIGINT,
"match_type" VARCHAR,
"venue" VARCHAR,
"location" VARCHAR,
"team1" VARCHAR,
"team2" VARCHAR,
"toss_won" VARCHAR,
"toss_decision" VARCHAR,
"umpire1" VARCHAR,
"umpire2" VARCHAR,
"reserve_umpire" VARCHAR,
"match_referee" VARCHAR,
"winner" VARCHAR,
"winner_runs" DOUBLE,
"winner_wickets" DOUBLE,
"man_of_match" VARCHAR
);Anyone who has the link will be able to view this.