PSL Bowling Records (2016-2021)
All Important Bowling Records Cracked in PSL
@kaggle.affanamin_psl_bowling_records_20162021
All Important Bowling Records Cracked in PSL
@kaggle.affanamin_psl_bowling_records_20162021
PSL 2021 resuming from today, Lets showcase what old records were made during the recent seasons of IPL and predict (through the data) more records to crack in this second leg of PSL 2021.
Geography: Pakistan
Time period: 2016 – 2021
Unit of analysis: Performance of Bowlers in PSL
This dataset consists of eight separate CSV files (having data from 2016-2021), which are as follows:
Size: 21.83 KB
File Type: CSVs
The data was pulled from @ESPNcricinfo
I’d like to call the attention of my fellow Kagglers to use Machine Learning and Data Sciences to help me explore these ideas:
• Who is the best-avg bowler in whole PSL?
• Visualize wickets getting frequency
• Find a correlation between venue and wickets with toss winners
• Find a correlation between bowling averages, strike rate and consistency
• Find any hidden patterns that are counter-intuitive for a layman
• Can we predict after what no. of innings Wahab Riaz or Muhammad Amir can get 3+ wickets in PSL ?
CREATE TABLE bowlingavg (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"overs" DOUBLE,
"maiden" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" VARCHAR,
"ave" DOUBLE,
"economy" DOUBLE,
"sr" DOUBLE,
"n_4s" BIGINT -- 4s,
"n_5s" BIGINT -- 5S
);CREATE TABLE economyrareinbowling (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"overs" DOUBLE,
"maiden" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" VARCHAR,
"ave" DOUBLE,
"economy" DOUBLE,
"sr" DOUBLE,
"n_4s" BIGINT -- 4s,
"n_5s" BIGINT -- 5S
);CREATE TABLE most4pluswicketsinpsl (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"overs" DOUBLE,
"maiden" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" VARCHAR,
"ave" DOUBLE,
"economy" DOUBLE,
"sr" DOUBLE,
"n_4s" BIGINT -- 4s,
"n_5s" BIGINT -- 5S,
"n_4" BIGINT -- 4+
);CREATE TABLE most5pluswicketsinpsl (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"overs" DOUBLE,
"maiden" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" VARCHAR,
"ave" DOUBLE,
"economy" DOUBLE,
"sr" DOUBLE,
"n_4s" BIGINT -- 4s,
"n_5s" BIGINT -- 5S
);CREATE TABLE mostrunsconceededinpsl (
"playername" VARCHAR,
"overs" DOUBLE,
"mdns" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"econ" DOUBLE,
"team" VARCHAR,
"opposition" VARCHAR,
"venue" VARCHAR,
"matchdate" VARCHAR
);CREATE TABLE mostwicketsinoneseason (
"playername" VARCHAR,
"mat" VARCHAR,
"overs" BIGINT,
"maiden" DOUBLE,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" BIGINT,
"ave" VARCHAR,
"economy" DOUBLE,
"sr" DOUBLE,
"n_4s" DOUBLE -- 4s,
"n_5s" BIGINT -- 5S
);CREATE TABLE mostwicketsinpsl (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"inns" BIGINT,
"oversbowled" DOUBLE,
"maidens" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" VARCHAR,
"avg" DOUBLE,
"econ" DOUBLE,
"sr" DOUBLE,
"n_4s" BIGINT -- 4s,
"n_5s" BIGINT -- 5s
);CREATE TABLE strikerateinbowling (
"playername" VARCHAR,
"span" VARCHAR,
"mat" BIGINT,
"overs" DOUBLE,
"maiden" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"bbi" VARCHAR,
"ave" DOUBLE,
"economy" DOUBLE,
"sr" DOUBLE,
"n_4s" BIGINT -- 4s,
"n_5s" BIGINT -- 5S
);Anyone who has the link will be able to view this.