PSL Match Score Predictions Dataset (2015 - 2023)
Detailed Inning-by-Inning Data for PSL Matches
@kaggle.arhumhussain_psl_match_outcomes_and_score_predictions_dataset
Detailed Inning-by-Inning Data for PSL Matches
@kaggle.arhumhussain_psl_match_outcomes_and_score_predictions_dataset
Data folder contains two CSV files with comprehensive data on Pakistan Super League (PSL) matches, specifically focused on first and second innings.
This file includes detailed statistics and metrics from the first innings of PSL matches. It features data such as scores, wickets, overs played, and key performance indicators relevant to the first innings.
This file provides insights into the second innings of PSL matches. It contains information on scores, wickets, overs played, and other performance metrics relevant to the second innings.
These datasets are valuable for analyzing match performance, predicting outcomes, and gaining insights into team and player performance during different phases of the game.
CREATE TABLE psl_1st_inning_clean (
"unnamed_0" BIGINT -- Unnamed: 0,
"venue" VARCHAR,
"team" VARCHAR,
"opposition" VARCHAR,
"over_number" BIGINT,
"ball_number" BIGINT,
"current_run" DOUBLE,
"run_rate" DOUBLE,
"wickets_left" DOUBLE,
"runs_till_5_over" DOUBLE,
"score" DOUBLE
);
CREATE TABLE psl_2nd_inning_clean (
"unnamed_0" BIGINT -- Unnamed: 0,
"venue" VARCHAR,
"team" VARCHAR,
"opposition" VARCHAR,
"toss_winner" VARCHAR,
"over_number" BIGINT,
"current_run" DOUBLE,
"wickets" DOUBLE,
"run_5_overs" DOUBLE,
"required_run" DOUBLE,
"required_run_rate" DOUBLE,
"target_runs" DOUBLE,
"winner" VARCHAR
);
Anyone who has the link will be able to view this.