CO2 Emissions Complete Dataset 1750-2020
Complete Data set of CO2 emissions per country and related variables ( RAW )
@kaggle.kvnxls_co2_emissions_dataset_1750_2020
Complete Data set of CO2 emissions per country and related variables ( RAW )
@kaggle.kvnxls_co2_emissions_dataset_1750_2020
This is the raw data set of CO2 emissions(kT) by every country from 1750 to 2020.
There are 25990 rows of data and 60 columns including every factor that affects the emission along with emission rates of methane and nitrous oxide.
CREATE TABLE owid_co2_data (
"iso_code" VARCHAR,
"country" VARCHAR,
"year" BIGINT,
"co2" DOUBLE,
"co2_per_capita" DOUBLE,
"trade_co2" DOUBLE,
"cement_co2" DOUBLE,
"cement_co2_per_capita" DOUBLE,
"coal_co2" DOUBLE,
"coal_co2_per_capita" DOUBLE,
"flaring_co2" DOUBLE,
"flaring_co2_per_capita" DOUBLE,
"gas_co2" DOUBLE,
"gas_co2_per_capita" DOUBLE,
"oil_co2" DOUBLE,
"oil_co2_per_capita" DOUBLE,
"other_industry_co2" DOUBLE,
"other_co2_per_capita" DOUBLE,
"co2_growth_prct" DOUBLE,
"co2_growth_abs" DOUBLE,
"co2_per_gdp" DOUBLE,
"co2_per_unit_energy" DOUBLE,
"consumption_co2" DOUBLE,
"consumption_co2_per_capita" DOUBLE,
"consumption_co2_per_gdp" DOUBLE,
"cumulative_co2" DOUBLE,
"cumulative_cement_co2" DOUBLE,
"cumulative_coal_co2" DOUBLE,
"cumulative_flaring_co2" DOUBLE,
"cumulative_gas_co2" DOUBLE,
"cumulative_oil_co2" DOUBLE,
"cumulative_other_co2" DOUBLE,
"trade_co2_share" DOUBLE,
"share_global_co2" DOUBLE,
"share_global_cement_co2" DOUBLE,
"share_global_coal_co2" DOUBLE,
"share_global_flaring_co2" DOUBLE,
"share_global_gas_co2" DOUBLE,
"share_global_oil_co2" DOUBLE,
"share_global_other_co2" DOUBLE,
"share_global_cumulative_co2" DOUBLE,
"share_global_cumulative_cement_co2" DOUBLE,
"share_global_cumulative_coal_co2" DOUBLE,
"share_global_cumulative_flaring_co2" DOUBLE,
"share_global_cumulative_gas_co2" DOUBLE,
"share_global_cumulative_oil_co2" DOUBLE,
"share_global_cumulative_other_co2" DOUBLE,
"total_ghg" DOUBLE,
"ghg_per_capita" DOUBLE,
"total_ghg_excluding_lucf" DOUBLE,
"ghg_excluding_lucf_per_capita" DOUBLE,
"methane" DOUBLE,
"methane_per_capita" DOUBLE,
"nitrous_oxide" DOUBLE,
"nitrous_oxide_per_capita" DOUBLE,
"population" DOUBLE,
"gdp" DOUBLE,
"primary_energy_consumption" DOUBLE,
"energy_per_capita" DOUBLE,
"energy_per_gdp" DOUBLE
);
Anyone who has the link will be able to view this.