T20 World Cup 2024 Dataset
Dataset for the recently concluded T20 World Cup
@kaggle.sarkarsoham_t20_world_cup_2024_dataset
Dataset for the recently concluded T20 World Cup
@kaggle.sarkarsoham_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
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 -- 100,
"n_50" BIGINT -- 50,
"n_0" BIGINT -- 0,
"n_4s" BIGINT -- 4s,
"n_6s" BIGINT -- 6s
);
CREATE TABLE t20wc24_bowlers (
"player" VARCHAR,
"team" VARCHAR,
"mat" BIGINT,
"runs" BIGINT,
"wkts" BIGINT,
"econ" DOUBLE
);
Anyone who has the link will be able to view this.