CO2 Emissions
Study of how Co2 emissions can be predicted using the provided variables.
@kaggle.bhuviranga_co2_emissions
Study of how Co2 emissions can be predicted using the provided variables.
@kaggle.bhuviranga_co2_emissions
CO2 emissions have significant environmental impacts. The accumulation of CO2 in the atmosphere contributes to the greenhouse effect, trapping heat and causing global warming. This leads to various adverse effects, including rising global temperatures, sea-level rise, changes in weather patterns, and ecosystem disruptions. The long-term consequences of climate change can negatively impact human health, agriculture, biodiversity, and socio-economic systems.
Therefore, reducing CO2 emissions is crucial for mitigating climate change and minimizing its harmful effects on the environment and human well-being. This involves transitioning to cleaner and renewable energy sources, improving energy efficiency, adopting sustainable practices, and promoting conservation efforts.
CREATE TABLE co2_emissions (
"make" VARCHAR,
"model" VARCHAR,
"vehicle_class" VARCHAR,
"engine_size_l" DOUBLE -- Engine Size(L),
"cylinders" BIGINT,
"transmission" VARCHAR,
"fuel_type" VARCHAR,
"fuel_consumption_city_l_100_km" DOUBLE -- Fuel Consumption City (L/100 Km),
"fuel_consumption_hwy_l_100_km" DOUBLE -- Fuel Consumption Hwy (L/100 Km),
"fuel_consumption_comb_l_100_km" DOUBLE -- Fuel Consumption Comb (L/100 Km),
"fuel_consumption_comb_mpg" BIGINT -- Fuel Consumption Comb (mpg),
"co2_emissions_g_km" BIGINT -- CO2 Emissions(g/km)
);
Anyone who has the link will be able to view this.