IPL 2024 Dataset
IPL 2024 Data Ball by Ball , Match wise, Schedule everything
@kaggle.lokeshmadiga_ipl_2024_dataset_ball_by_ball_match_wise
IPL 2024 Data Ball by Ball , Match wise, Schedule everything
@kaggle.lokeshmadiga_ipl_2024_dataset_ball_by_ball_match_wise
IPL 2024 Dataset from cricbuzz using webscraping with the help of python Pandas and Beautifulsoup.
This dataset contains Schedule, Match by Match and Ball by Ball Data.
For Code you can checkout my github
CREATE TABLE ball_by_ball_data (
"match_no" BIGINT,
"innings" BIGINT,
"over" DOUBLE,
"batter" VARCHAR,
"bowler" VARCHAR,
"action" VARCHAR,
"runs" BIGINT
);CREATE TABLE batting_df (
"match_id" BIGINT,
"team" VARCHAR,
"opposite_team" VARCHAR,
"innings" BIGINT,
"batsman" VARCHAR,
"dismissal_type" VARCHAR,
"fielder" VARCHAR,
"bowler" VARCHAR,
"runs" BIGINT,
"balls" BIGINT,
"boundaries" BIGINT,
"sixes" BIGINT,
"strikerate" DOUBLE
);CREATE TABLE bowling_df (
"match_id" BIGINT,
"team" VARCHAR,
"opposite_team" VARCHAR,
"innings" BIGINT,
"bowler" VARCHAR,
"overs" DOUBLE,
"maindens" BIGINT,
"runs" BIGINT,
"wickets" BIGINT,
"no_balls" BIGINT,
"wides" BIGINT,
"economy" DOUBLE
);CREATE TABLE schedule_df (
"match" VARCHAR,
"team_1" VARCHAR,
"team_2" VARCHAR,
"player_of_the_match" VARCHAR,
"venue" VARCHAR,
"city" VARCHAR,
"match_info" VARCHAR,
"score_card" VARCHAR
);Anyone who has the link will be able to view this.