Baselight

T20 World Cup 2024 Dataset

Dataset for the recently concluded T20 World Cup

@kaggle.sarkarsoham_t20_world_cup_2024_dataset

Loading...
Loading...

About this Dataset

T20 World Cup 2024 Dataset

The dataset consists of two separate CSV files: Batsman and Bowlers.
Batsman.csv includes the player name, team, matches played, innings batted, not out, runs scored, batting average, balls faced, strike rate, century, half-century, duck, 4s and 6s
Bowler.csv includes the player name, team, matches played, runs conceded, wickets taken and economy.

Source: espncricinfo

Tables

T20wc24 Batsman

@kaggle.sarkarsoham_t20_world_cup_2024_dataset.t20wc24_batsman
  • 14.45 KB
  • 150 rows
  • 14 columns
Loading...

CREATE TABLE t20wc24_batsman (
  "player" VARCHAR,
  "team" VARCHAR,
  "mat" BIGINT,
  "inns" BIGINT,
  "no" BIGINT,
  "runs" BIGINT,
  "ave" DOUBLE,
  "bf" BIGINT,
  "sr" DOUBLE,
  "n_100" BIGINT,
  "n_50" BIGINT,
  "n_0" BIGINT,
  "n_4s" BIGINT,
  "n_6s" BIGINT
);

T20wc24 Bowlers

@kaggle.sarkarsoham_t20_world_cup_2024_dataset.t20wc24_bowlers
  • 6.96 KB
  • 100 rows
  • 6 columns
Loading...

CREATE TABLE t20wc24_bowlers (
  "player" VARCHAR,
  "team" VARCHAR,
  "mat" BIGINT,
  "runs" BIGINT,
  "wkts" BIGINT,
  "econ" DOUBLE
);

Share link

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