Are Conditional Cash Transfers a magic bullet for development?
A Latin American Case Study
Introduction
Conditional Cash Transfers (CCTs) are payments made to individuals/households dependent on pre-determined investments they make, usually related to human capital formation. They provide immediate poverty alleviation, through transfers, whilst also aiming to ensure longer-term steps are taken to prevent the intergenerational transmission of poverty. In this project, I aim to analyse the evolution of CCTs in Latin America and their effect on various development indicators.
The lack of aggregated data on this topic led me to this page. It contains Excel download links to data from individual CCT programmes in the region. I tried to automate the process of selecting relevant variables from each file. This ended up being a huge endeavour and a steep learning curve. I first created a beautiful soup to identify the files and download them locally. All files contained different variables and years, making it much harder to loop on. However, after extensively learning about several python packages and functions, I eventually managed to scrape the required variables and save them in a json file. This process is immediately replicable by creating a data folder and running the code. Lastly, I aggregated the budget and people affected by year.
After finally obtaining this data, I made a simple chart to show the history of CCTs in the region. Despite exponential growth from the mid 2000s to 2014, the last few years has seen a decrease in both metrics.
Poverty
I then plotted this trend against the number of people under various international poverty lines (many national poverty lines in the region are above the absolute poverty line, so that metric alone would underestimate poverty). The most reliable source I could find for absolute headcount poverty was ourworldindata. After downloading their huge poverty dataset, I filtered the data in Stata and then merged it with my CCT data in Colab. One obstacle I encountered was missing values: Chile and Brazil only reported data every other year during certain periods. Less than 10% of the data was missing so I decided that manually computing the averages of the missing values' neighbouring years in excel was the best approach.
The first two charts' interactive tooltips were made by pivoting the data and adding a hover function. Although causality cannot be inferred from this chart, it shows a strong trend of poverty reduction over time whilst CCT popularity grows. Interestingly, poverty reduction flattens out once CCTs start shrinking.
Inequality
After noticing an abundance of missing values when trying to automise the data aggregation by country, I thought the best approach would be to manually compute the % of population in CCTs per country on excel. I computed the average spent/person in the nearest year and used that to impute some missing values. For the others I used similar available variables. For overall CCT size, I thought the median would be the best proxy as some countries had low outliers due to slow adoption. I took Gini values from the World Bank API, calculating the change in colab.
Whilst all countries that implemented CCT Programmes saw a significant reduction in their Gini’s (excluding Costa Rica - lowest % of population in CCTs), there is no relationship between the amount of beneficiaries and the magnitude of change in Gini.
Education
Due to the nature of CCTs and the recency of their popularity, we are yet to discover many of the long-term impacts. To get a glimpse at what these may be, we can explore the effects on education, the main contributor to building equality of opportunity:
First, a map showing initial schooling levels in the region (2000), using the World Bank API to call on enrollment data:
Second, a bivariate map using terciles of population in CCTs and % change in secondary enrolment rates:
I made the bivariate map by classifying countries in colab, plotting on Kepler and embedding with an iframe.
From the maps we see that Argentina and Brazil have the lowest increases in enrolment, but from the highest bases. Overall, there is no correlation between my proxy of CCT size and increases in enrolment. However, as with inequality, a lot of progress has been made since 2000.
Third, inequality through average years of schooling.
5/7 of the countries with 20+% population in CCTs saw a significant reduction in the difference in average schools years between their poorest and richest quintiles. All countries' poorest quintiles saw an increase in their mean years of schooling.
The CEDLAS download link required some cleaning in Excel. During this, I also added each countries' median % of population.
Conclusion
Further research needs to be done with individual programme microdata to better derive causality from the relationships discovered and optimise CCT variables, such as transfer amounts and conditions. In addition, affected students need to be tracked into the future to learn more about longer-term impacts. However, CCTs are a powerful tool, and their use strongly correlates with improvements in poverty, inequality and education in Latin America.