About me

I'm a scientist with training in economics, and an ongoing PhD in geography at University of Texas Austin.

Since the 2010s, I conduct research in the Amazon and Cerrado biomes about agriculture, forest restoration, and ecological feedback on land use change. I combine economics and Geographic Information System (GIS) tools to understand the impacts of land use change. I'm author and co-author of policy briefs and scientific papers focusing on environmental policies in the Brazilian Amazon and Cerrado biomes.
I have worked with environmental policy-oriented institutions in Brazil, such as IUCN and IPAM. Also, in the private sector I have supported investment decisions based on scientific information. More recently, I have been Teaching Assistant in the University of Texas, Austin.

Publications

See below a selection of publications.

  • Silva, D. S., Arima, E. Y., dos Reis, T. N., & Rattis, L. (2023). Temperature effect on Brazilian soybean yields, and farmers’ responses . International Journal of Agricultural Sustainability, 21(1), 2173370.

  • Silva, D. S., & Arima, E. Y. (2023). Sustainability Consequences of Making Land Change Decisions Based on Current Climatology in the Brazilian Cerrados. Land, 12(4), 914.

  • Nunes, S., Gastauer, M., Cavalcante, R. B., Ramos, S. J., Caldeira Jr, C. F., Silva, D., ... & Siqueira, J. O. (2020). Challenges and opportunities for large-scale reforestation in the Eastern Amazon using native species. Forest Ecology and management, 466, 118120.

  • Niemeyer, J., Barros, F. S., Silva, D.S., Crouzeilles, R., & Vale, M. M. (2020). Planning forest restoration within private land holdings with conservation co-benefits at the landscape scale. Science of the Total Environment, 717, 135262.

  • Stabile, M. C., Guimarães, A. L., Silva, D.S., Ribeiro, V., Macedo, M. N., Coe, M. T., ... & Alencar, A. (2020). Solving Brazil's land use puzzle: Increasing production and slowing Amazon deforestation. Land use policy, 91, 104362.

  • Latawiec, A. E., Strassburg, B. B., Silva, D.S., Alves-Pinto, H. N., Feltran-Barbieri, R., Castro, A., ... & Beduschi, F. (2017). Improving land management in Brazil: A perspective from producers. Agriculture, Ecosystems & Environment, 240, 276-286.
  • Codes & Data Analysis

    See below some scripts in Python, R, and Stata that you may find useful. Some of them are statistical models that I applied to published papers. I'm making it available as pdf to be easier navigate on this webpage. Just click in the model below to find the pdf.

    Example of R coding to panel regression
    
    # load packages and data ####
    library("plm")
    library("car")
    
    # set data as panel
    	db_cerr <- pdata.frame(db_cerr, index=c("geocode","year"))
    
    # panel data analysis at municipal-level data in Cerrado biome ####
    # Below the models for pooled, fixed, and random estimators in panel linear model
    # Quadractic terms are testing the non-linear effects on yield, e.g. squared temperature
    	ols <- plm(log_Y ~Temp_C +I(Temp_C^2) +Precip_mm +I(Precip_mm^2) +as.numeric(year), data=db_cerr, model= "pooling")
    	summary(ols) # Results of the pooled panel model 'ols'
    	
    	fe <- plm(log_Y ~Temp_C +I(Temp_C^2) +Precip_mm +I(Precip_mm^2) +as.numeric(year), data=db_cerr, model= "within")
    	summary(fe) # Results of the Fixed effects panel model 'fe'
    	
    	re <- plm(log_Y ~Temp_C +Precip_mm +as.numeric(year), data=db_cerr, model= "random")
    	summary(re) # Results of the Random Effects panel model 're'
    
    # Tests
    # Breusch-Pagan (Lagrange Multiplier) test for random effects versus OLS
    	plmtest(ols) # if p-value =< 0.05 then reject the H0 and OLS (or try again controlling for AC); H0 is Cov(ai, ui)=0
    	
    # LM test for fixed effects versus OLS; H0: no FE
    	pFtest(fe, ols) # if p-value =< 0.05 then consider H1 (there are fixed effects)
    	
    # Hausman endogeneity test for fixed versus random effects model
    	phtest(fe, re) # if p-value =< 0.05 then RE is inconsistent (reject null hypothesis); the H0 is that individuals RE effects are exogenous