Baselight

PSL Bowling Records (2016-2021)

All Important Bowling Records Cracked in PSL

@kaggle.affanamin_psl_bowling_records_20162021

Loading...
Loading...

About this Dataset

PSL Bowling Records (2016-2021)

Context

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.

Content

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:

  1. All Bowlers bowling averages in PSL (2016-2021)
  2. All Bowlers economy rates in PSL (2016-2021)
  3. Most 4plus wickets getters in PSL (2016-2021)
  4. Most 5plus wickets getters in PSL (2016-2021)
  5. Most runs conceded by bowlers in PSL (2016-2021)
  6. Most wickets taken by bowlers in PSL (2016-2021)
  7. Most wickets taken in one season of PSL (2016-2021)
  8. Strike Rate of different bowlers in PSL (2016-2021)

Size: 21.83 KB

File Type: CSVs

Acknowledgements

The data was pulled from @ESPNcricinfo

Inspiration

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 ?

Tables

Bowlingavg

@kaggle.affanamin_psl_bowling_records_20162021.bowlingavg
  • 11.17 KB
  • 48 rows
  • 13 columns
Loading...

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,
  "n_5s" BIGINT
);

Economyrareinbowling

@kaggle.affanamin_psl_bowling_records_20162021.economyrareinbowling
  • 11.17 KB
  • 48 rows
  • 13 columns
Loading...

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,
  "n_5s" BIGINT
);

Most4pluswicketsinpsl

@kaggle.affanamin_psl_bowling_records_20162021.most4pluswicketsinpsl
  • 10.99 KB
  • 29 rows
  • 14 columns
Loading...

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,
  "n_5s" BIGINT,
  "n_4" BIGINT
);

Most5pluswicketsinpsl

@kaggle.affanamin_psl_bowling_records_20162021.most5pluswicketsinpsl
  • 10.38 KB
  • 29 rows
  • 13 columns
Loading...

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,
  "n_5s" BIGINT
);

Mostrunsconceededinpsl

@kaggle.affanamin_psl_bowling_records_20162021.mostrunsconceededinpsl
  • 8 KB
  • 46 rows
  • 10 columns
Loading...

CREATE TABLE mostrunsconceededinpsl (
  "playername" VARCHAR,
  "overs" DOUBLE,
  "mdns" BIGINT,
  "runs" BIGINT,
  "wkts" BIGINT,
  "econ" DOUBLE,
  "team" VARCHAR,
  "opposition" VARCHAR,
  "venue" VARCHAR,
  "matchdate" VARCHAR
);

Mostwicketsinoneseason

@kaggle.affanamin_psl_bowling_records_20162021.mostwicketsinoneseason
  • 9.77 KB
  • 29 rows
  • 12 columns
Loading...

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,
  "n_5s" BIGINT
);

Mostwicketsinpsl

@kaggle.affanamin_psl_bowling_records_20162021.mostwicketsinpsl
  • 12.15 KB
  • 50 rows
  • 14 columns
Loading...

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,
  "n_5s" BIGINT
);

Strikerateinbowling

@kaggle.affanamin_psl_bowling_records_20162021.strikerateinbowling
  • 11.17 KB
  • 48 rows
  • 13 columns
Loading...

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,
  "n_5s" BIGINT
);

Share link

Anyone who has the link will be able to view this.