Baselight

IPL Ball By Ball Data

This is ipl data from 2008 to 2022 of each ball played in the ipl season

@kaggle.adityaakuskar_ipl_ball_by_ball_data

Loading...
Loading...

About this Dataset

IPL Ball By Ball Data

This dataset contains ball-by-ball details of Indian Premier League (IPL) matches from 2008 to 2022. Each row represents a single delivery in an IPL match, including details about the batsman, bowler, runs scored, extras, wickets, and fielding events.
Column Descriptions:

  1. ID - Unique identifier for the match.
  2. innings - The inning number (1 or 2).
  3. overs - The over number in the match.
  4. ballnumber - The ball number within the over (1 to 6).
  5. batter - The name of the batsman facing the delivery.
  6. bowler - The name of the bowler delivering the ball.
  7. non-striker - The name of the non-striking batsman.
  8. extra_type - Type of extra run conceded (e.g., wide, no-ball, leg-bye); NaN if no extras.
  9. batsman_run - Runs scored by the batsman on this delivery.
  10. extras_run - Runs awarded as extras on this delivery.
  11. total_run - Total runs scored on the ball (batsman runs + extras).
  12. non_boundary - Indicates if the run was not from a boundary (0 for boundary, 1 for non-boundary).
  13. isWicketDelivery - 1 if the batsman was dismissed on this ball, otherwise 0.
  14. player_out - Name of the player dismissed (NaN if no wicket fell).
  15. kind - Type of dismissal (e.g., bowled, caught, run-out, LBW).
  16. fielders_involved - Name of the fielder(s) involved in the dismissal (if applicable).
  17. BattingTeam - The team currently batting.

Tables

Ipl Ball By Ball 2008–2022

@kaggle.adityaakuskar_ipl_ball_by_ball_data.ipl_ball_by_ball_2008_2022
  • 972.48 KB
  • 225954 rows
  • 17 columns
Loading...

CREATE TABLE ipl_ball_by_ball_2008_2022 (
  "id" BIGINT,
  "innings" BIGINT,
  "overs" BIGINT,
  "ballnumber" BIGINT,
  "batter" VARCHAR,
  "bowler" VARCHAR,
  "non_striker" VARCHAR,
  "extra_type" VARCHAR,
  "batsman_run" BIGINT,
  "extras_run" BIGINT,
  "total_run" BIGINT,
  "non_boundary" BIGINT,
  "iswicketdelivery" BIGINT,
  "player_out" VARCHAR,
  "kind" VARCHAR,
  "fielders_involved" VARCHAR,
  "battingteam" VARCHAR
);

Share link

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