Pakistan Super League(PSL) Ball By Ball 2016-2022
Ball by Ball Data for matches of Pakistan Super league from Year 2016 to 2022
@kaggle.hassanj576_pakistan_super_leaguepsl_ball_by_ball_20162020
Ball by Ball Data for matches of Pakistan Super league from Year 2016 to 2022
@kaggle.hassanj576_pakistan_super_leaguepsl_ball_by_ball_20162020
Being a huge cricket fan and a Machine Learning Engineer, I wanted data from Pakistan super league to run visualizations on and potentially train a predictor. So I decided to generate this dataset
The data Contains ball by ball coverage for each match of every PSL season from 2016 to 20202
The data has been scrapped from espn cricinfo website
CREATE TABLE psl_2016_2022 (
"psl_year" BIGINT,
"match_number" BIGINT,
"team_1" VARCHAR,
"team_2" VARCHAR,
"inning" BIGINT,
"over" BIGINT,
"ball" BIGINT,
"runs" BIGINT,
"wicket" DOUBLE,
"total_runs" BIGINT,
"wickets" BIGINT,
"is_four" BOOLEAN,
"is_six" BOOLEAN,
"is_wicket" BOOLEAN,
"wicket_text" VARCHAR,
"result" VARCHAR
);
CREATE TABLE psl_formated (
"psl_year" BIGINT,
"match_number" BIGINT,
"team_1" VARCHAR,
"team_2" VARCHAR,
"inning" BIGINT,
"over" BIGINT,
"ball" BIGINT,
"runs" BIGINT,
"total_runs" BIGINT,
"wickets" BIGINT,
"is_four" BOOLEAN,
"is_six" BOOLEAN,
"is_wicket" BOOLEAN,
"wicket" DOUBLE,
"wicket_text" VARCHAR,
"result" VARCHAR
);
Anyone who has the link will be able to view this.