T20 World Cup 2024: SA Vs SL Dataset
Detailed Ball-by-Ball Data from SA vs SL T20 World Cup Clash 2024
@kaggle.kanchana1990_t20_world_cup_2024_sa_vs_sl_dataset
Detailed Ball-by-Ball Data from SA vs SL T20 World Cup Clash 2024
@kaggle.kanchana1990_t20_world_cup_2024_sa_vs_sl_dataset
This dataset provides a comprehensive overview of the 4th match in Group D of the ICC Men's T20 World Cup 2024 between Sri Lanka (SL) and South Africa (RSA). The dataset includes detailed ball-by-ball data, team line-ups, and player performance metrics, all meticulously recorded during the match. This dataset is designed to be a valuable resource for data science applications, sports analysis, and machine learning projects, offering rich insights into cricket match dynamics. Main data in sl_innings and sa_innings csv files with ball by ball breakdown.
Despite the relatively small size of the datasets, they offer significant potential for various data science applications, such as:
The data presented in this dataset was ethically collected and recorded by the author while watching the live match. Verification and validation of the data were carried out using trusted sources such as ESPNcricinfo, ICC, and Cricbuzz. The accompanying image was generated using DALL-E 3 to provide a visually appealing and professional representation of the dataset.
This dataset is ideal for researchers, data scientists, and cricket enthusiasts interested in analyzing T20 cricket matches. The data is presented in a structured format, making it easy to import into data analysis tools and machine learning frameworks.
By providing this dataset, I aim to contribute to the growing field of sports analytics and facilitate the development of innovative solutions and insights in cricket analysis.
CREATE TABLE playing_xi (
  "team" VARCHAR,
  "player" VARCHAR,
  "role" VARCHAR
);CREATE TABLE sa_bowling (
  "bowler" VARCHAR,
  "o" DOUBLE,
  "m" BIGINT,
  "r" BIGINT,
  "w" BIGINT,
  "nb" BIGINT,
  "wd" BIGINT,
  "eco" DOUBLE
);CREATE TABLE sa_innings (
  "over" BIGINT,
  "ball" BIGINT,
  "batter" VARCHAR,
  "bowler" VARCHAR,
  "outcome" VARCHAR,
  "wickets" VARCHAR
);CREATE TABLE sl_bowling (
  "bowler" VARCHAR,
  "o" DOUBLE,
  "m" BIGINT,
  "r" BIGINT,
  "w" BIGINT,
  "nb" BIGINT,
  "wd" BIGINT,
  "eco" DOUBLE
);CREATE TABLE sl_innings (
  "over" BIGINT,
  "ball" BIGINT,
  "batter" VARCHAR,
  "bowler" VARCHAR,
  "outcome" VARCHAR,
  "wickets" VARCHAR
);Anyone who has the link will be able to view this.