Agri-food CO2 Emission Dataset - Forecasting ML
Leveraging Machine Learning for Forecasting Agricultural CO2 Emissions, IPCC/FAO
@kaggle.alessandrolobello_agri_food_co2_emission_dataset_forecasting_ml
Leveraging Machine Learning for Forecasting Agricultural CO2 Emissions, IPCC/FAO
@kaggle.alessandrolobello_agri_food_co2_emission_dataset_forecasting_ml
The agricultural CO2 emission dataset has been constructed by merging and reprocessing approximately a dozen individual datasets from the Food and Agriculture Organization (FAO) and data from IPCC. These datasets were, cleaned, preprocessed and merged together to create a comprehensive and cohesive dataset for analysis and forecasting purposes.
The dataset, as demonstrated in the notebook, describes CO2 emissions related to agri-food, which amount to approximately 62% of the global annual emissions.
Indeed, the emissions from the agri-food sector are significant when studying climate change. As the dataset shows, these emissions contribute to a substantial portion of the global annual emissions. Understanding and addressing the environmental impact of the agri-food industry is crucial for mitigating climate change and developing sustainable practices within this sector.
For a better understanding of the dataset, I have written a notebook where I perform an analysis of the relationship between emissions, climate change and geografic Area. Additionally, I provide an example of regression to predict the percentage variations in temperatures.
The agricultural sector contributes to approximately, how i'll demostrate in my notebook, 62% of the total global CO2 emissions, making it a significant contributor to climate change. This dataset plays a crucial role in understanding and monitoring the impact of agricultural activities on CO2 emissions. By leveraging machine learning techniques, it enables the forecasting of future emissions, allowing policymakers and researchers to develop targeted strategies and interventions for sustainable agricultural practices. This dataset serves as a valuable resource for climate scientists, environmental researchers, and policymakers striving to mitigate the environmental impact of the agricultural sector.
If you appreciate my work, please consider giving it a like to support me in publishing more accurate and scientifically-backed datasets along with notebook demonstrations. Your support is highly valued :)
CREATE TABLE agrofood_co2_emission (
"area" VARCHAR,
"year" BIGINT,
"savanna_fires" DOUBLE,
"forest_fires" DOUBLE,
"crop_residues" DOUBLE,
"rice_cultivation" DOUBLE,
"drained_organic_soils_co2" DOUBLE -- Drained Organic Soils (CO2),
"pesticides_manufacturing" DOUBLE,
"food_transport" DOUBLE,
"forestland" DOUBLE,
"net_forest_conversion" DOUBLE,
"food_household_consumption" DOUBLE,
"food_retail" DOUBLE,
"on_farm_electricity_use" DOUBLE,
"food_packaging" DOUBLE,
"agrifood_systems_waste_disposal" DOUBLE,
"food_processing" DOUBLE,
"fertilizers_manufacturing" DOUBLE,
"ippu" DOUBLE,
"manure_applied_to_soils" DOUBLE,
"manure_left_on_pasture" DOUBLE,
"manure_management" DOUBLE,
"fires_in_organic_soils" DOUBLE,
"fires_in_humid_tropical_forests" DOUBLE,
"on_farm_energy_use" DOUBLE,
"rural_population" DOUBLE,
"urban_population" DOUBLE,
"total_population_male" DOUBLE -- Total Population - Male,
"total_population_female" DOUBLE -- Total Population - Female,
"total_emission" DOUBLE,
"average_temperature_c" DOUBLE -- Average Temperature °C
);Anyone who has the link will be able to view this.