Objective: Apply the mathematical and coding techniques developed in the EPPS Math & Coding Camp - Fall 2025 to a real use case
Method: Data collection from official websites, visual and regression analyses
Problem: Are logging rates in the Brazilian Amazon correlated with the GDP of the Brazilian states that it covers?
Results:
The state of Amazonas has the highest nominal logging rates as compared to other northern Brazilian states
The state yearly GDP is highly correlated to the logging rates
The logging rates can be reasonably estimated using a simple linear regression model
GDP data - IPEA (Brazil’s Applied Economics Research Institute)
Logging historical data - Kaggle.com
https://www.kaggle.com/datasets/fidelissauro/desmatamento-brasil
State: Brazilian states covered by Amazon
Year: Years under measurement
GDP: State Gross Domestic Product in BRL millions (Braziilan Reais)
Area: Logged area in square kilometers
Call:
lm(formula = area ~ gdp, data = amazonas)
Coefficients:
(Intercept) gdp
-2083.2 32.4
abc…