Countries CO2 Emission And More...
Yearly CO2 Emission by each Countrys Energy Con/Prod, GDP, Population and more
@kaggle.lobosi_c02_emission_by_countrys_grouth_and_population
Yearly CO2 Emission by each Countrys Energy Con/Prod, GDP, Population and more
@kaggle.lobosi_c02_emission_by_countrys_grouth_and_population
The world is becoming more modernized by the year, and with this becoming all the more polluted.
This data was pulled from the US Energy Administration and joined together for an easier analysis. Its a collection of some big factors that play into C02 Emissions, with everything from the Production and Consumption of each type of major energy source for each country and its pollution rating each year. It also includes each countries GDP, Population, Energy intensity per capita (person), and Energy intensity per GDP (per person GDP). All the data spans all the way from the 1980's to 2020.
CREATE TABLE energy (
"unnamed_0" BIGINT -- Unnamed: 0,
"country" VARCHAR,
"energy_type" VARCHAR,
"year" BIGINT,
"energy_consumption" DOUBLE,
"energy_production" DOUBLE,
"gdp" DOUBLE,
"population" DOUBLE,
"energy_intensity_per_capita" DOUBLE,
"energy_intensity_by_gdp" DOUBLE,
"co2_emission" DOUBLE
);
Anyone who has the link will be able to view this.