Cricket Team Records 2021
Dataset contains the cricket team records for T20 matches played in 2021
@kaggle.ggsri123_cricket_team_records_2021
Dataset contains the cricket team records for T20 matches played in 2021
@kaggle.ggsri123_cricket_team_records_2021
The dataset encapsulates Cricket Team Records/Stats for the year 2021
The dataset contains the following features gathered from ESPN stats for T20s played by each team in the year 2021-
Data gathered from ESPN site - link here
The year 2020 and partly 2021 was a bad year for the sport. This dataset throws an insight into how teams are performing and possibly helps provide a predictive model to the upcoming matches this year.
CREATE TABLE cricket_teamstats_21 (
"team" VARCHAR,
"mat" BIGINT,
"won" BIGINT,
"lost" BIGINT,
"tied" BIGINT,
"nr" BIGINT,
"w_l" VARCHAR,
"ave" DOUBLE,
"rpo" DOUBLE,
"inns" BIGINT,
"hs" BIGINT,
"ls" VARCHAR
);
CREATE TABLE fossil_fuel_co2_emissions_by_nation (
"year" BIGINT,
"country" VARCHAR,
"total" BIGINT,
"solid_fuel" BIGINT,
"liquid_fuel" BIGINT,
"gas_fuel" BIGINT,
"cement" BIGINT,
"gas_flaring" BIGINT,
"per_capita" DOUBLE,
"bunker_fuels_not_in_total" BIGINT -- Bunker Fuels (Not In Total)
);
CREATE TABLE real_time_traffic_incident_reports (
"traffic_report_id" VARCHAR,
"published_date" VARCHAR,
"issue_reported" VARCHAR,
"location" VARCHAR,
"latitude" DOUBLE,
"longitude" DOUBLE,
"address" VARCHAR,
"status" VARCHAR,
"status_date" VARCHAR
);
Anyone who has the link will be able to view this.