Baselight

Ipl 2022

Batting and bowling scorecards for ipl 2022

@kaggle.vikramrn_ipl_2022

Loading...
Loading...

About this Dataset

Ipl 2022

cs files containing scorecards of all matches from ipl 2022. Batting.csv holds the scorecard from each match with data that would help calculate a batsman’s performance. While the bowling scorecard has the bowling figures from the game.

Tables

Batting

@kaggle.vikramrn_ipl_2022.batting
  • 44.85 KB
  • 1628 rows
  • 19 columns
Loading...

CREATE TABLE batting (
  "matchid" BIGINT,
  "inningsno" BIGINT,
  "team" VARCHAR,
  "playername" VARCHAR,
  "matchplayingorder" BIGINT,
  "bowlername" VARCHAR,
  "outdesc" VARCHAR,
  "runs" BIGINT,
  "balls" BIGINT,
  "dotballs" BIGINT,
  "ones" BIGINT,
  "twos" BIGINT,
  "threes" BIGINT,
  "fours" BIGINT,
  "sixes" BIGINT,
  "strikerate" VARCHAR,
  "wicketno" DOUBLE,
  "againstfast" BIGINT,
  "againstspin" BIGINT
);

Bowling

@kaggle.vikramrn_ipl_2022.bowling
  • 24.75 KB
  • 857 rows
  • 20 columns
Loading...

CREATE TABLE bowling (
  "matchid" BIGINT,
  "inningsno" BIGINT,
  "team" VARCHAR,
  "playername" VARCHAR,
  "overs" DOUBLE,
  "maidens" BIGINT,
  "runs" BIGINT,
  "wickets" BIGINT,
  "wides" BIGINT,
  "noballs" BIGINT,
  "economy" DOUBLE,
  "bowlingorder" BIGINT,
  "totallegalballsbowled" BIGINT,
  "dotballs" BIGINT,
  "ones" BIGINT,
  "twos" BIGINT,
  "threes" BIGINT,
  "fours" BIGINT,
  "sixes" BIGINT,
  "strikerate" DOUBLE
);

Share link

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