Uncovering Global Deforestation and Soy Bean Consumption \ This project was developed by The Plotting Pandas for INFO 526 - Data Analysis and Visualization at the University of Arizona, taught by Dr. Greg Chism. \ Authors: Megan, Shakir, Maria, Eshaan, Bharath \ Affiliation: School of Information, University of Arizona
This project delves into two crucial aspects of global environmental dynamics using the Global Deforestation dataset, a comprehensive resource published by Hannah Ritchie and Max Roser in the Our World in Data journal in 2021. The dataset encompasses a wide array of attributes related to global forest cover, deforestation rates, and associated factors. Two distinct questions guide our exploration.
To address this question, we implemented a choropleth map visualization highlighting the forest conversion for specific decades and spotlighting few countries with extensive forest conversion. We began to scout the data for getting relevant information and noteworthy details. The whole approach can be categorized into Data Preparation and Pre-processing, Visualizing the data and Animating the plots.
Soybean consumption in Brazil:
Forest coverage in Brazil:
left_join
we merge the two tables based on the year column.forest_area.x
* forest_area.y
.forest.csv
Change every 5 years for forest area in conversion.
variable | class | description |
---|---|---|
entity | character | Country |
code | character | Country code |
year | double | Year |
net_forest_conversion | double | Net forest conversion in hectares |
forest_area.csv
Change in global forest area as a percent of global forest area.
variable | class | description |
---|---|---|
entity | character | Country |
code | character | Country Code |
year | integer | Year |
forest_area | double | Percent of global forest area |
soybean_use.csv
Soybean production and use by year and country.
variable | class | description |
---|---|---|
entity | character | Country |
code | character | Country Code |
year | double | Year |
human_food | double | Use for human food (tempeh, tofu, etc) |
animal_feed | double | Used for animal food |
processed | double | Processed into vegetable oil, biofuel, processed animal feed |
TidyTuesday Data - Global Deforestation 2021 Data
Total forest coverage data- Hannah Ritchie (2021) - "Forest area". Published online at OurWorldInData.org. Retrieved from: 'https://ourworldindata.org/forest-area' [Online Resource]
Template derived from the original course by Mine Çetinkaya-Rundel @ Duke University