2026–27 Economics Job Market Candidate
Juan C. Yamin
I am a Ph.D. candidate in the Department of Economics at Brown University, with primary interests in applied econometrics.
I develop methods for using data to improve economic decisions. My work brings together statistical decision theory, causal inference, and experimental design.
Dissertation committee: Toru Kitagawa, Soonwoo Kwon, and Jonathan Roth

Job Market Paper
Poverty Targeting with Imperfect Information
Better targeting needs better decisions, not just better income predictions.
A key challenge for targeted antipoverty programs in developing countries is that policymakers must rely on estimated rather than observed income, which leads to substantial targeting errors. This paper studies how noisy income estimates should be translated into feasible transfers. I formulate this as a statistical decision problem in which a policymaker chooses transfers to minimize a poverty-targeting loss subject to a fixed budget and the constraint that transfers cannot be negative. I show that the standard plug-in rule, which treats estimated incomes as true, is inadmissible. I develop a nonparametric empirical Bayes targeting rule that assigns transfers using posterior distributions of poverty gaps. Although the budget and no-taxation constraints make the targeting rule nonsmooth, Bayes regret is governed by the accuracy of the posterior functionals that determine the oracle allocation.
In simulations from nine African countries, relative to plug-in OLS targeting:
as many poor people reached, for the same budget
less spending to achieve the same poverty-gap reduction
Other Research
When and How to Pilot
A pilot can help researchers choose a more efficient split between treatment and control, but a small pilot can also mislead. I develop a method that guards against overreacting to limited evidence and approaches the optimal split as the pilot grows.
Birds of a Feather Collude Together
Using close elections in Colombia, we find that partisan alignment between mayors and governors increases the fabrication of “ghost” students to obtain education transfers. Actual enrollment and student performance do not improve.
Software
cmrdesign
cmrdesign is an R and Python package that implements the design rules from When and How to Pilot. Given pilot outcomes and treatment assignments, it recommends how to split the main experiment between treatment and control. It also reports a finite-sample bound on how much precision that split can lose relative to the best allocation.
R
install.packages("cmrdesign") library(cmrdesign) fit <- cmr_two_arm(y, d, alpha = 0.05, method = "auto") fit$pi # share of the main wave to treat fit$U_CMR # bound on precision lost vs. best split
Python
pip install cmrdesign
import cmrdesign as cmr
fit = cmr.cmr_two_arm(y, d, alpha=0.05,
method="auto")
fit.pi # share of the main wave to treat
fit.U_CMR # bound on precision lost vs. best split