Drivers of Inequality

Author

Marty Oehme

Published

Invalid Date

Code
from IPython.display import Markdown
from tabulate import tabulate
Code
# Set up the data extraction and figure drawing functions
import plotly.express as px
import plotly.io as pio

def gini_plot(country_df):
    if svg_render:
        pio.renderers.default = "png"

    fig = px.line(country_df, x="year", y="gini", markers=True, labels={"year": "Year", "gini": "Gini coefficient"}, template="seaborn", range_y=[0,100])
    fig.update_traces(marker_size=10)
    fig.show()

def plot_consumption_gini_percapita(country_df):
    gni_cnsmpt = country_df[country_df['resource'].str.contains("Consumption")]
    gni_cnsmpt_percapita = gni_cnsmpt[gni_cnsmpt['scale'].str.contains("Per capita")]
    gini_plot(gni_cnsmpt_percapita)

def plot_consumption_gini_percapita_ruralurban(country_df):
    gni_cnsmpt = country_df[country_df['resource'].str.contains("Consumption")]
    gni_cnsmpt = gni_cnsmpt[gni_cnsmpt['scale'].str.contains("Per capita")]
    gni_cnsmpt = gni_cnsmpt[gni_cnsmpt['source'].str.contains("World Bank")]
    gni_cnsmpt = gni_cnsmpt[gni_cnsmpt['areacovr'].str.contains("All")]
    gini_plot(gni_cnsmpt)
Code
## Set up functions to grab development aids by type of donating body
## ODA donor type map, see DAC code sheet xlsx
donortypes = {
    1: 'dac',
    2: 'dac',
    3: 'dac',
    4: 'dac',
    5: 'dac',
    6: 'dac',
    7: 'dac',
    8: 'dac',
    9: 'dac',
    10: 'dac',
    11: 'dac',
    12: 'dac',
    18: 'dac',
    20: 'dac',
    21: 'dac',
    22: 'dac',
    40: 'dac',
    50: 'dac',
    61: 'dac',
    68: 'dac',
    69: 'dac',
    75: 'dac',
    76: 'dac',
    301: 'dac',
    302: 'dac',
    701: 'dac',
    742: 'dac',
    801: 'dac',
    820: 'dac',
    918: 'dac',
    104: 'mlt',
    807: 'mlt',
    811: 'mlt',
    812: 'mlt',
    901: 'mlt',
    902: 'mlt',
    903: 'mlt',
    905: 'mlt',
    906: 'mlt',
    907: 'mlt',
    909: 'mlt',
    913: 'mlt',
    914: 'mlt',
    915: 'mlt',
    921: 'mlt',
    923: 'mlt',
    926: 'mlt',
    928: 'mlt',
    932: 'mlt',
    940: 'mlt',
    944: 'mlt',
    948: 'mlt',
    951: 'mlt',
    952: 'mlt',
    953: 'mlt',
    954: 'mlt',
    956: 'mlt',
    958: 'mlt',
    959: 'mlt',
    960: 'mlt',
    963: 'mlt',
    964: 'mlt',
    966: 'mlt',
    967: 'mlt',
    971: 'mlt',
    974: 'mlt',
    976: 'mlt',
    978: 'mlt',
    979: 'mlt',
    980: 'mlt',
    981: 'mlt',
    982: 'mlt',
    983: 'mlt',
    988: 'mlt',
    990: 'mlt',
    992: 'mlt',
    997: 'mlt',
    1011: 'mlt',
    1012: 'mlt',
    1013: 'mlt',
    1014: 'mlt',
    1015: 'mlt',
    1016: 'mlt',
    1017: 'mlt',
    1018: 'mlt',
    1019: 'mlt',
    1020: 'mlt',
    1023: 'mlt',
    1024: 'mlt',
    1025: 'mlt',
    1037: 'mlt',
    1038: 'mlt',
    1311: 'mlt',
    1312: 'mlt',
    1313: 'mlt',
    30: 'nondac',
    45: 'nondac',
    55: 'nondac',
    62: 'nondac',
    70: 'nondac',
    72: 'nondac',
    77: 'nondac',
    82: 'nondac',
    83: 'nondac',
    84: 'nondac',
    87: 'nondac',
    130: 'nondac',
    133: 'nondac',
    358: 'nondac',
    543: 'nondac',
    546: 'nondac',
    552: 'nondac',
    561: 'nondac',
    566: 'nondac',
    576: 'nondac',
    611: 'nondac',
    613: 'nondac',
    732: 'nondac',
    764: 'nondac',
    765: 'nondac',
    1601: 'private',
    1602: 'private',
    1603: 'private',
    1604: 'private',
    1605: 'private',
    1606: 'private',
    1607: 'private',
    1608: 'private',
    1609: 'private',
    1610: 'private',
    1611: 'private',
    1612: 'private',
    1613: 'private',
    1614: 'private',
    1615: 'private',
    1616: 'private',
    1617: 'private',
    1618: 'private',
    1619: 'private',
    1620: 'private',
    1621: 'private',
    1622: 'private',
    1623: 'private',
    1624: 'private',
    1625: 'private',
    1626: 'private',
    1627: 'private',
    1628: 'private',
    1629: 'private',
    1630: 'private',
    1631: 'private',
    1632: 'private',
    1633: 'private',
    1634: 'private',
    1635: 'private',
    1636: 'private',
    1637: 'private',
    1638: 'private',
    1639: 'private',
}

def totals_by_donortype(oda_frame):
    totals = oda_frame.loc[
        (df['RECIPIENT'] == 236) &
        (df['SECTOR'] == 1000) &
        (df['FLOW'] == 100) &
        (df['CHANNEL'] == 100) &
        (df['AMOUNTTYPE'] == 'D') &
        (df['FLOWTYPE'] == 112) &
        (df['AIDTYPE'] == "100") # contains mixed int and string representations
        ]
    donortotals = totals.copy()
    donortotals["Donortype"] = donortotals["DONOR"].map(donortypes)
    return donortotals
Code
svg_render = True
pd.options.display.float_format = "{:.2f}".format

Vietnam


  • Economic restructuring and trade liberalization further drives economy towards wage work, service work, the manufacturing sectors.
  • Structural changes drove poverty down in absolute terms, but leave those in vulnerable positions consistently at-risk of slipping into or worsening existing poverty.
  • Economic inequality in Vietnam intersectional between ethnic minorities, rural populations, regional and gendered dimensions.
  • Ethnic minorities increase in economic inequality, driven by worse returns on assets (human capital and land) and worse access to endowments (land and educational infrastructure).
  • Environmental degradation and environmental shocks consistently worsen within-sector inequalities for ethnic minority and female population.
  • Vietnam in vulnerable position to increasing exogenous shocks due to climate change, building capacity against which may require focus shift on risk management and preventative measures

Vietnam’s economy is now firmly in the third decade of ongoing economic reform (Doi Moi) as a market-based economy, which lead to remarkable growth phases through opening the economy to international trade while, seen over the bulk of its population, attempting to keep inequality rates managed through policies of controlling credit and reducing subsidies to state-owned enterprises (Bui & Imai, 2019).

Poverty in Vietnam is marked by a drastic reduction in absolute terms over this time with some of the decline directly attributable to the liberalization of markets over the country’s growth more generally (N. V. T. Le et al., 2022; McCaig, 2011; World Bank, 2012). While the rate of decline slowed since the mid-2000s (VASS, 2006, 2011), it continued declining in tandem with small income inequality decreases. The overall income inequality decrease that Vietnam experienced from the early 2000s suggests that economic growth has been accompanied by equity extending beyond poverty reduction (Benjamin et al., 2017). On the other hand, Le et al. (2021) suggest a slight increase in overall income distribution from 2010-2018. At the same time, the population groups most affected by poverty through welfare inequalities stay unaltered, as do largely the primary factors accompanying it: There is severe poverty persistence among ethnic minorities in Vietnam (Baulch et al., 2012), concomitant with low education and skills, more prevalent dependency on subsistence agriculture, physical and social isolation, specific disadvantages which become linked to ethnic identities and a greater exposure to natural disasters and risks (Kozel, 2014).

The country’s overall estimated Gini coefficient for income fluctuates between 0.42 and 0.44 between 2010 and 2018, with the highest levels of income inequality observed in the Central Highlands in 2016, though absolute income may be rising, with the top quintile having 9.2 times the income of the lowest quintile in 2010 and 9.8 times in 2016 (Q. H. Le et al., 2021). On the other hand, the bottom 40% experienced a slight absolute rise in mean income per capita from 4.00 USD (2011 PPP) in 2014 to 5.00 USD (2011 PPP) in 2018 (World Bank, 2022d). For Gini coefficients estimated using consumption per capita, see Figure 1, which shows similar trends of increasing inequality, with 2010 constituting a significant increase. Economic inequality and poverty in Vietnam thus underlies an intersectional focus, between ethnic minorities, regional disparities, rural-urban divides and gendered lines, one which exogenous shocks can rapidly exacerbate as the example of the COVID-19 pandemic has recently shown (Ebrahim et al., 2021).

Code
gni_cnsmpt = vnm[vnm['resource'].str.contains("Consumption")]
gni_cnsmpt = gni_cnsmpt[gni_cnsmpt['scale'].str.contains("Per capita")]
gni_cnsmpt = gni_cnsmpt[gni_cnsmpt['source'].str.contains("World Bank")]
gni_cnsmpt = gni_cnsmpt[gni_cnsmpt['areacovr'].str.contains("All")]
gini_plot(gni_cnsmpt)

Figure 1: Gini index of consumption per capita for Vietnam

Source: Author’s elaboration based on UNU-WIDER WIID (2022).

In the 1990s, as the initial stages of the Doi Moi reform bore fruit with economic growth, the first amplifications of inequalities along new rural-urban boundaries became visible. There are two complementary views on the primary dimensions of rural inequalities. On the one hand, the urban-rural divide may be driven by structural effects: the welfare returns to education and agricultural activities changed dramatically from, and with it the requirements on policy adaptations required for stemming inequality.

Nguyen et al. (2007) argue this for the period of 1993-1998, with their findings that income returns to education improved dramatically over this time and arguing through this that suggested development policies had a strictly urban bias — on the whole they would benefit both from better education and vastly benefit from the restructuring of Vietnam’s economy. This view was in turn confirmed when Theil Index decomposition found within-sector inequality remaining largely stable while between-sector inequality rose significantly (Fesselmeyer & Le, 2010). On the other, Thu Le and Booth (2014) argue that the urban-rural inequality continued to increase over the years due to both covariate effects and the returns to those covariate effects, primarily education age structures and labor market activities, but also geographic location.

The gap between urban and rural sectors grew, a gap which would continue to widen until 2002, when within-sector rural inequalities started to become more important for inequalities than those between the sectors (Fritzen et al., 2005; Thu Le & Booth, 2014). In the time of within-sector inequality becoming more pronounced many studies, while important contributions to continued inequality research, had a tendency to mask those inequalities in favor of continued analysis of between-sector trends — often to the detriment of the high degree of heterogeneity depending on geographic characteristics such as remoteness or cultural factors, as Cao and Akita (2008) note.

In a recent study, Bui and Imai (2019) build on this earlier work, and also find access to basic education the linchpin of improving rural welfare while its lack combined with economic restructuring precluded many from equal opportunities toward human capital improvement. They find that, as within-sector became more pronounced again after 2010, the large proportion of uneducated heads of households in rural sectors and low social mobility of rural poor combine to increase within-sector inequality while the economy overall changing toward salaried work compounded within-rural and urban-rural disparities. Early income studies generally highlighted the important role of agricultural incomes in reducing, or at the very not exacerbating, income inequality (Benjamin & Brandt, 2004). Benjamin et al. (2017) expand on this over a longer time-frame by decomposing different household income sources underlying Vietnam’s structural economic changes. They find that, while there is an overall decrease in income inequality throughout Vietnam between 2002 and 2014 and the urban-rural divide also continued its downward trend, rural inequality indeed increased over this time.

Wage income and family business income were the main drivers of overall inequality in 2002 (accounting for over 30% of income but 60% of inequality) and remittances add a small share on top, which, while decreased in effect (risen to 42% of total income), remain majorly correlated with income distributions and thus income inequality. Bui & Imai (2019) confirm this with a per capita income Gini coefficient of 0.36 to 0.39 between 2008 and 2010 which, decomposed into Theil indices for between rural and urban and within rural sectors show that rural-urban inequalities are smaller and decreasing, while within-rural inequalities are large and increasing. Thus, while the study points to both more prevalent and equally distributed labor markets and wage labor opportunities, these effects apply to the overall population and not just within-rural inequalities which are driven in large part by ethnicity, education and environmental factors.

Ethnic minorities in Vietnam are distinctly over-represented in poverty in addition to often being left behind in the development process, not least due to being extreme representatives of the economic situation of Vietnam’s rural population. Ethnic minority households have a tenuous economic position - and it is deteriorating. In earlier studies on ethnic inequalities in Vietnam, a strong welfare gap between ethnic minorities and the majority was already visible. Van de Walle (2001) reports the situation of ethnic minorities inhabiting predominantly remote rural areas with lower living standards than the ethnic majority, a finding he suggests waws created due to environmental and structural differences (difficult terrain, poor infrastructure, less access to off-farm work and the market economy and inferior access to education) and compounded by social immobility and social isolation. Baulch et al. (2012) find that between 1993 and 2004, the welfare gap between ethnic minorities and the ethnic majority had increased by 14.6%, two-fifths of which were due to endowments such as demographic structure and education while geographic variables make up less than one-fifth. They additionally suggest some drivers of the inequality being the lack of ability speaking the Vietnamese language or the distance to a commune or district center amplifying isolating effects, though a large part of the change was linked to temporal changes of unobservable factors - which the study conjectures to be due to negative ethnic stereotyping, a poor understanding of ethnic customs and culture and further (unobserved) variations in household-level endowments.

While in 2002 the ethnic minority population living in rural areas was below 15%, it rose to over 18% in 2014 - both due to higher fertility among minorities and ethnic majority Kinh urbanizing at a higher rate - and the ratio of Kinh to minority incomes rose to more than 2.0 in 2014 (Benjamin et al., 2017). The same study finds that income inequality rose even more sharply within ethnic minorities, while that of rural Kinh, though increasing from 2002 to 2014, fell back to 2002 levels around 2014. These findings suggest that the primary drivers of rural income inequality are a growing gap between Kinh and minorities while at the same time a similar rising inequality develops among minority rural populations themselves. In the same vein as the urban-rural divide, Nguyen et al. (2007) thus argue for structural policy failures which essentially lowered the returns on ethnicity along sectorial dividing lines of education and primary income types.

Natural disasters and inequalities

While the effect of agriculture on inequality outcomes is an equalizing one, its future growth, and that of agricultural livelihoods, is threatened by vulnerability to risks such as natural disasters and environmental degradation, exacerbated through climate change (Kozel, 2014). Kozel (2014) goes on to argue the continuous precarity of poor households against economy-wide shocks (such as the effect of climate change on rainfall and temperatures) but also highlights the danger of vulnerable households falling into poverty through generated inequalities.

Looking at the particularities of flood risk management in the Ninh Binh province, Mottet and Roche (2009) find that most areas within the region are vulnerable. They find the strengths of current management lying in prevention with existing dykes designed to channel high waters, effective monitoring of weather conditions (rainfall or typhoons) and consolidation or elevation of existing residences, while the weaknesses are mainly centered around insufficient information given to inhabitants over flood risks, few compensation systems for flood victims and construction policies continuing to allow building in flood-endangered zones.

Sen et al. (2021) estimate that the main barriers to better information are farmers’ lack of trust toward formal climate-related services, their lack of perceived risk from climate change itself and difficulties in balancing both climate adaptation and economic benefits of interventions. They argue that, while ethnicity itself is not a barrier to information access with all farmers receiving information through informal channels — friends neighbors and market actors instead of agricultural departments or mass media — cultural issues such as language do come into play and act as a barrier. Reactionary economic mitigation efforts by households, such as reduced healthcare spending, selling of land or livestock assets, taking children out of school due to needing assistance at home can in turn lead to longer-term adverse consequences (thus, mal-adaptation) (Kozel, 2014).

The results are further intensification of inequality along existing social lines during extreme events such as flooding: The effects of inequalities mainly affecting ethnic minorities are illustrated by Son and Kingsbury (2020), with droughts impacting yield losses between 50% and 100%, cold snaps leading to loss of livestock and floods damaging residential structures but even more importantly disrupting livelihoods through landslides, crop destruction and overflowing fish ponds. Locally employed coping strategies, they argue, are always conditional on the strength and foresight of institutions and implemented preventative policies along local but also regional and central levels.

Similarly, Ylipaa et al. (2019) analyze impacts mainly across the gender dimension to find that, resulting inequalities may be exacerbated with differentiated rights and responsibilities leading to unequal opportunities and, especially, decreased female mobility in turn increasing their vulnerability to climate impacts with a reduced capacity to adapt. Hudson et al. (2021) along the same dimension find that, while the set of relevant variables is largely similar with age, social capital, internal and external support after the flood and the perceived severity of previous flood impacts having major impacts, women tend to show longer recovery times and psychological variables can influence recovery rates more than some adverse flood impacts.

While the quantitative evidence for impacts of such shock events are relatively sparse, Jafino et al. (2021) lament the overuse of aggregate perspectives, instead disaggregating the local and inter-sectoral effects to find out that flood protection efforts in the Mekong Delta often predominantly support large-scale farming while small-scale farmers can be harmed through them. They find that measures decrease the aggregate total output and equity indicators by disaggregating profitability indicators into inundation, sedimentation, soil fertility, nutrient dynamics and behavioral land-use in an assessment which sees within-sector policy responses often having an effect on adjacent sectors, increasing the inter-district Gini coefficient.

Adaptation during these catastrophic events reinforces the asset and endowment drivers of non-shock event times, with impacts levels often depending on access to non-farm income sources, access to further arable land, knowledge of adaptive farming practices and mitigation of possible health risks such as water contamination (Son & Kingsbury, 2020). Karpouzoglou et al. (2019) make the point that, ultimately, the pure coupling of flood resilience into infrastructural or institutional interventions needs to take care not to amplify existing inequalities through unforeseen consequences (‘ripple effects’) which can’t be escaped by vulnerable people due to their existing immobility.

Inequality in Vietnam, then, is slowly rising across the whole population distribution, runs the danger of increasing due to schisms opening within individual sectors of vulnerable groups. Rural populations experience a trend towards increasing inequality within their sector, driven primarily by the social exclusion and geographic isolation of ethnic minorities, its most precarious population. Ethnic minorities’ inequality is slowly increasing due to receiving worse returns to their existing assets (especially human capital and land) and generally worse access to endowments in the first place (land and educational infrastructure). The restructuring of the economy, turning the labor force toward urban areas and within them wage work in manufacturing and service industries, leaves behind immobile rural populations whose ability to be employed for non-farm shrink further.

All these factors are at risk of experiencing large negative shocks as climate change exacerbates existing extreme environmental conditions, which in turn threaten to increase economic inequalities for both the rural population at large, ethnic minorities and women especially. Women in rural areas experience worse mobility and fewer economic opportunities and are thus less able to adapt to environmental degradation. While inequality as an aggregate is kept relatively low Vietnam’s growth rate, both ethnic minorities and the rural female population are thus at risk of being left behind economically.

Development assistance to Vietnam

Code
# Load CRS data
dfsub1 = pd.read_csv('data/raw/OECD_CRS/CRS1_Vietnam_11-13_05092022215007164.csv', parse_dates=True, low_memory=False)
dfsub2 = pd.read_csv('data/raw/OECD_CRS/CRS1_Vietnam_14-16_05092022215226180.csv', parse_dates=True, low_memory=False)
dfsub3 = pd.read_csv('data/raw/OECD_CRS/CRS1_Vietnam_17-20_05092022215427555.csv', parse_dates=True, low_memory=False)
df = pd.concat([dfsub1, dfsub2, dfsub3], ignore_index=True)
df = df.rename(columns={'\ufeff"DONOR"': 'DONOR'})
Code
totals = df.loc[
    (df['SECTOR'] == 1000) & # Total
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
financetotals = totals.copy()
financetotals = financetotals[financetotals['DONOR'] < 20000] # drop all 'total' aggregations

## count amount of development aid financing instruments (grants/loans) by year and display
## count USD amount of development aid financing instumrnets by year and display
financetotals_grouped = financetotals.groupby(['Flow', 'Year']).agg({'Value': ['sum']})
financetotals_grouped = financetotals_grouped.reset_index(['Flow', 'Year'])
financetotals_grouped.columns = financetotals_grouped.columns.to_flat_index()
financetotals_grouped.columns = ['Financetype', 'Year', 'Value']

fig = px.line(financetotals_grouped, x='Year', y='Value', color='Financetype', labels={"Value": "Development aid amount, in millions of USD"}, markers=True, template="seaborn")
# 0-figure
fig.update_yaxes(rangemode="tozero")
fig.show()

Figure 2: Total ODA for Vietnam per year, by financing type

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, split into the type of financing flow, calculated as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

Official Development Assistance (ODA) to Vietnam reached its highest point in 2014 with almost 5bn USD but generally decreased in the intervening years, as can be seen in Figure 2. Decreasing continuously after 2014, development assistance reached its lowest point of the last ten years in 2019 when it fell to just under 2.5bn USD, before increasing slightly to just above 2.5bn USD in 2020. Development aid to Vietnam is primarily driven by ODA loans instead of ODA grants.

While grants were just under 1bn USD in 2011 and decreased slightly over the following years to 600m USD in 2019, decreasing loans were also the primary driver of the overall development aid contributions, with the overall monetary curve closely following that of loan contributions. Thus, while loans constituted almost triple the USD amount of grants to Vietnam in 2011, this number even climbed to almost 5 times the amount in 2014, before falling to just over 2.5 times the amount of USD in loans compared to grants in 2020. A large share of development aid contributions to Vietnam are also made up from other official flows1, a share which started equal to the absolute grant amount of USD contributed, rose steeply in 2013 to double the amount and fell equally steeply back to its original level in 2019.

Code
totals = df.loc[
    (df['SECTOR'] == 1000) & # Total
    (df['FLOW'] == 100) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
donortotals = totals.copy()
donortotals["Donortype"] = donortotals["DONOR"].map(donortypes)
donortotals = donortotals[(donortotals["Donortype"] != "nondac")]

donortotals_grouped = donortotals.groupby(['Donortype', 'Year']).agg({'Value': ['sum']})
donortotals_grouped = donortotals_grouped.reset_index(['Donortype', 'Year'])
donortotals_grouped.columns = donortotals_grouped.columns.to_flat_index()
donortotals_grouped.columns = ['Donortype', 'Year', 'Value']
fig = px.line(donortotals_grouped, x='Year', y='Value', color='Donortype', labels={"Value": "Development aid, in millions"}, markers=True, template="seaborn")
# 0-figure
fig.update_yaxes(rangemode="tozero")
fig.show()

Figure 3: Total ODA for Vietnam per year, separated by donor type

Note: Values shown are for all Official Development Assistance flows valid under the OECD ODA data, split into bilateral development donor countries (dac) and multilateral donors (mlt), as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

Bilateral donor contributions make up the largest part of development aid contributions to Vietnam, as can be seen in Figure 3. Both bilateral and multilateral contributions increase from 2011 to 2014 and subsequently begin decreasing. While bilateral contributions do not increase in absolute amounts afterwards, until 2020, multilateral contributions do increase again from 2019 to 2020. Nevertheless, bilateral contributions are consistently higher than multilateral, having around a 1.5 times higher share of absolute USD contribution, though growing to just over 2 times the share in 2017, before quickly shrinking down to just 1.3 times the share of multilateral contributions in 2018. This gap may close further in the future, with multilateral contributions being on an increase and bilateral contributions still decreasing.

Code
# 14020-22 - large scale potable water
# 14030-32 - individual-level water and sanitation supply
# 14081 - education and training in water supply
totals = df.loc[
    (
        (df['SECTOR'] == 14020) |
        (df['SECTOR'] == 14021) |
        (df['SECTOR'] == 14022) |
        (df['SECTOR'] == 14030) |
        (df['SECTOR'] == 14031) |
        (df['SECTOR'] == 14032) |
        (df['SECTOR'] == 43060)
    ) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    ((df['FLOW'] == 11) | (df['FLOW'] == 13)) & # Total
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
floodaid = totals[totals['DONOR'] < 20000] # drop all 'total' aggregations

# Aggregate different measures of large scale water supply and sanitation
floodaid.loc[floodaid[(floodaid['SECTOR'] == 14021) | (floodaid['SECTOR'] == 14022)].index, 'SECTOR'] = 14020
floodaid.loc[floodaid[(floodaid['SECTOR'] == 14020)].index, 'Sector'] = "Large water supply and sanitation"
# Aggregate different measures of individual water supply and sanitation
floodaid.loc[floodaid[(floodaid['SECTOR'] == 14031) | (floodaid['SECTOR'] == 14032)].index, 'SECTOR'] = 14030
floodaid.loc[floodaid[(floodaid['SECTOR'] == 14030)].index, 'Sector'] = "Basic water supply and sanitation"

# Group by sector per year and sum all values
floodaid_grouped = floodaid.groupby(['Year', 'Sector']).agg({'Value': ['sum']})
floodaid_grouped = floodaid_grouped.reset_index(['Year', 'Sector'])
floodaid_grouped.columns = floodaid_grouped.columns.to_flat_index()
floodaid_grouped.columns = ['Year', 'Sector', 'Value']

crosstab = pd.crosstab(floodaid_grouped['Year'], floodaid_grouped['Sector'], margins=True, values=floodaid_grouped['Value'], aggfunc='sum')

# Rename and reorder columns
crosstab.columns = ['Basic water supply', 'Disaster risk reduction', 'Large water supply', 'All']
crosstab = crosstab[['Basic water supply', 'Large water supply', 'Disaster risk reduction', 'All']]

Markdown(tabulate(crosstab.fillna("0.00"), headers="keys", tablefmt="github", floatfmt=".2f"))
Table 1: ODA projects of water supply and risk reduction in Vietnam per year, separated by project type
Year Basic water supply Large water supply Disaster risk reduction All
2011 96.24 105.94 4.01 206.19
2012 85.56 150.63 6.73 242.92
2013 123.46 178.72 8.82 311.00
2014 133.89 193.56 10.69 338.15
2015 142.92 174.46 19.98 337.36
2016 154.11 230.91 37.08 422.10
2017 86.39 239.99 42.73 369.11
2018 70.70 252.37 35.51 358.57
2019 39.24 203.36 42.24 284.84
2020 50.98 224.11 63.31 338.40
All 983.49 1954.03 271.11 3208.64

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, calculated as constant currency (2020 corrected) USD millions. The categories under analysis are large- and small-scale water supply and sanitation infrastructure projects as well as disaster risk reduction which includes improved flooding prevention infrastructure. Source: Author’s elaboration based on OECD ODA CRS (2022).

The breakdown of project-based development aid for water supply infrastructure and disaster risk reduction in Vietnam can be seen in Table 1. It shows the funds broken down into their use for three categories: First, contributions to provide access to basic water supply and sanitation, which subsumes building and maintaining handpumps, gravity wells, rainwater collection systems, storage tanks, and small, often shared, distribution systems. Second, contributions to large-scale water supply and sanitation, including potable water treatment plants, intake works, large pumping stations and storage, as well as the transmission and distribution through large-scale systems. And last, contributions towards disaster risk reduction which is a larger umbrella concept aimed at building local and national capacities, but includes infrastructure measures (e.g. flood protection systems), preparedness measures (such as early warning systems), and normative prevention measures (such as closer adherence to building and structural codes), as well as risk transfer systems (insurance schemes or risk funds). This constitutes the closest category to flood risk management itself, which is part of the overarching disaster risk management dimension.

While overall aid contributions to Vietnam’s water supply and risk management sectors have slightly increased over time from 206m USD in 2011 to their peak of 422m USD in 2016, they have largely stagnated around the level of 300m to 350m USD per year since then. From the level of 96m USD in 2011, access to basic water supply saw significant increases to its contributions from 2013 to 2016, with 154m USD contributed at its peak in 2016 and shrinking drastically the following years to 39m USD in 2019, its lowest contribution year. Large water supply project contributions see a similar if less drastic curve, with contributions increasing from 105m USD in 2011 to 252m USD at their peak in 2018, before decreasing slightly over the next two years.

Thus, the contribution curves to basic and large-scale water supply projects somewhat follows the overall development aid contribution curve to Vietnam, with peaks between 2016 and 2018 before more or less drastic drops in aid contributions. Disaster risk reduction contributions, however, show the least similarity to the general trend, with contributions being only 4m USD in 2011 before increasing year-over-year (with the exception of 2018) to reach their peak with 63m USD in 2020. The most significant increases happened between the years 2014 and 2016, as well as again in 2020. While the other contribution sectors follow a shrinking contribution in the years following 2014, then, disaster risk reduction instead keeps on reaching an increase in its absolute contribution amounts, perhaps pointing to a continued necessity for development in the sector.

Uganda


  • Poverty and inequality in Uganda are at a fluctuating level in Uganda, with poverty levels staying roughly stable and inequality slowly trending upward.
  • National poverty line set very low, potentially hiding additional households in states of deprivation and those in danger of reverting to poverty.
  • Inequality, poverty and informal economy in close circular relation in Uganda, presenting a vicious circle for those captive within.
  • Education levels of poor people are consistently low, with those of rural population more so.
  • Inadequate access to clean water can exacerbate these inequalities, directly influencing food security, rural child education and gender inequalities.
  • The district of Isingiro especially is dramatically below national average of clean water access, and in danger of exacerbation through climate change.

Uganda generally has a degree of inequality that fluctuates but over time seems largely unchanged, as does the share of people below its poverty line in recent years. The long-term level of income inequality in the country stayed relatively stagnant, with a Gini coefficient for the consumption per capita of 0.36 calculated for the 1992/93 census and a World Bank calculation of 0.43 for the year 2019, with the coefficient rising slighly in the years 2002/03 and 2009/10 during its fluctuation (World Bank, 2022h, see also Figure 4), while Lwanga-Ntale (2014) finds a slight upward trend over time. However, the aggregation masks several important distinctions: Rural inequality overall is lower than urban inequality, with Lwanga-Ntale (2014) finding Gini coefficients of 0.35 and 0.41 for 2012/13 respectively. Additionally, he sees inequalities between income quintiles primarily driven by the highest (0.25) and lowest (0.14) quintiles, whereas middle-income show lower Gini coefficients (0.05-0.07). These inequality levels remained mostly unchanged between 2012/13 and 2019/20 but hide qualitative dimensions such as the shift out of a lower-income agricultural livelihood predominantly taking place among older men who have at least some level of formal education and are from already more well-off households (World Bank, 2022h).

Code
gni_cnsmpt = uga[uga['resource'].str.contains("Consumption")]
gni_cnsmpt_percapita = gni_cnsmpt[gni_cnsmpt['scale'].str.contains("Per capita")]
gini_plot(gni_cnsmpt_percapita)

Figure 4: Gini index of consumption per capita for Uganda

Source: Author’s elaboration based on UNU-WIDER WIID (2022).

The World Bank (2022h) report goes on to examine the share of people below the poverty line in Uganda: around 30% of households are in a state of poverty in 2019/20, which once again fluctuated but roughly reflects the share of 30.7% households in poverty in 2012/13. Two surges in rural household poverty in 2012/2013 and 2016/17 can be linked to droughts in the country, with an improvement in 2019/20 conversely being linked to favorable weather conditions. Ssewanyana & Kasirye (2012) find that in absolute terms poverty fell significantly (from 28.5% in 2005/06 to 23.9% in 2009/10) but there are clear relative regional differences emerging, with Western Ugandan households increasing in poverty while Northern and Eastern households reduced their share of households below the poverty line. Additionally, they find that while transient poverty is more common than chronic poverty in Uganda, nearly 10% of households continue to live in persistent material deprivation.

Lastly, for a long time it has been seen as an issue that Uganda puts its national poverty line too low with the line being put between 0.94 USD (2011 PPP) and 1.07 USD (2011 PPP) depending on the province (lower than the international live of 1.90 USD PPP), while van de Ven et al. (2021) estimate a living income of around 3.82 USD (2011 PPP) would be required for a national poverty line that meets basic human rights for a decent living. In absolute terms, the bottom 40% of Uganda had a median daily income of 1.28 USD (2011 PPP) in 2016 which kept stable to 2019 (World Bank, 2022d).

Esaku (2021b, 2021a) finds a somewhat circular driving relationship between Ugandan inequality, poverty and working in what calls the shadow economy: inequality increases the size of the informal economy, as a large subsistence sector creates revenue tax shortfalls, undermines the governments efforts to attain equitable income distributions in the economy and the creation of social safety nets for the poort, who, in turn, have to turn to the informal economy to secure their livelihoods, increasing its size both short- and long-term and feeding back into the cycle.

Cali (2014) finds that, already, one of the primary determinants of income disparity in more trade-exposed markets of Uganda in the 1990s were the increasing education differences leading to more disparate wage premiums. Additionally, slow structural change — further impeded by the onset of the COVID-19 pandemic, which pushed both urban and rural residents back into poverty — leaves a low-productivity agricultural sector which becomes, in combination with a lack of education, the strongest predictor of poverty: the poverty rate in households with an uneducated household head (17% of all households) is 48% (2019/20), while already households with a household head possessing primary education (also 17% of all) nearly cuts this in half with 25% poverty rate (2019/20) (World Bank, 2022h).

The World Bank (2022g) calculated a Learning Poverty Indicator for Uganda which finds that 82% of children at late primary age are not proficient in reading, 81% of children do not achieve minimum proficiency level in reading at the end of primary schooling, and 4% of primary school-aged children are not enrolled in school at all. Datzberger (2018) argues these problems primarily exist in Uganda due to choosing an approach to education that is primarily assimilation-based, that is, intended to effect change at the individual-level through fostering grassroots education throughout society at large, instead of looking into more transformative policy approaches which would operate on a more systemic level, removing oppressive structures of inequality in tandem with government institutions at multiple levels.

Inequalities in access to drinking water

Such personal circumstances as access to a timely education play decisive role in life and human capital development — circumstances to which decent housing as well as access to clean water are equally fundamental building blocks (World Bank, 2022h). In 1990 a policy initiative to shift from a supply-driven to a demand-driven model for rural drinking water provision was enacted which, over time, improved rural safe water coverage slightly but also made operation and maintenance of improved water sources pose a challenge that could impede long-term access to safe water.

In the country, access to improved water sources rose from 44% in 1990 to 60% in 2004 and 66% in 2010 (Naiga et al., 2015). In 2019, access to improved sources of drinking water in the country is at a level of 87% in urban areas and 74% in rural areas, with relatively little inequality in rural regions between poor and non-poor households (World Bank, 2022h).

Health care facilities in rural areas are generally well connected to improved sources with 94% of facilities having access to public stand posts, protected spring technology, deep boreholes and some to rain harvesting tanks, gravity flow schemes or groundwater-based pumped piped water supplies (Mulogo et al., 2018). Thus, individual households are generally less well connected than health care facilities, and rural households in turn less well than urban households.

The same study found for the Isingiro district in Western Uganda on the other hand, in 2010, only 28% of households had access to improved water (Mulogo et al., 2018). Naiga et al. (2015) investigated the characteristics of improved water access in the Isingiro district, finding that whereas the national average distance to travel for a water source is 0.2km in urban and 0.8km in rural locations, in Isingiro it is 1.5km, and of the fewer existing improved water sources, only 53% were fully functional, with 24% being only partly functional (having only low or intermittent yield) and 18% not being functional at all. Additionally, they found blocked drainage channels in some of the sources which could in turn lead to a possible health risk due to contamination of the source.

Naiga (2018) argues that some reasons for the low access to working improved water sources is the absence of many of the organizational characteristics prescribed by the design principles of community-managed water infrastructure management — unclear social boundaries, missing collective-choice arrangements and a lack of sanctions or conflict resolution mechanisms — in other words, a policy failure resulting in lack of sufficient self-governance arrangements.

Such inequalities in water access often stand in direct relationship with other inequalities such as along gender, geographic or income dimensions, with fetching water traditionally being a female care role, the cost of user fees to gain access to improved water being prohibitive to poorer households, while the remoteness of many households’ location makes the trekk to the source more time-consuming and replacement parts for repairs difficult to source in an adequate time (Naiga et al., 2015).

Looking into the effects of climate change and its accompanying increase in climate shock events, especially droughts, on such gender roles, Nagasha et al. (2019) find that it gender roles adapt while gender inequalities tend to increase, with men participating more in firewood collection and water fetching but generally focused on assuming a single reproductive role while women played multiple roles simultaneously. Two effects they found of this exacerbation were the women often being forced to engage their children in work activities to manage the simultaneous workload, and women, due to their exclusion from landownership in the region, being brought further into a state of dependence and thus made even more vulnerable to future climate change effects.

Water supply use seems to experience little change during emergency situations, and people’s willingness (or ability) to pay for water is also too small to maintain water revenue without addressing the disparity in socio-economic attributes of households (Sempewo, Kisaakye, et al., 2021; Sempewo, Mushomi, et al., 2021). Taken together, this hints at one possibility of subsequent health disparity increases due to prior income inequalities and poverty during emergency situations such as climate shocks.

Access to water is also one of the primary reasons for both real and perceived food insecurity vulnerabilities, even more so during climate shocks. In Uganda, Cooper & Wheeler (2016) investigate the vulnerability of rural farmers to climate events and find that, while most farmers implement anticipatory and livelihood coping responses (54.7%), many responses only protect against very specific events (45.4%) and most had no response at all to coping with rainfall variability: while farmers with more land, education, access to government extensions and non-farm livelihoods have more capacity to buffer the shock, both wealthier farmers (droughts as highest perceived risk) and poor farmers (extreme rainfall as highest) perceive themselves most vulnerable to rainfall-based events.

In the Isingiro district, Twongyirwe et al. (2019) find that most farmers (68.6%) perceive food insecurity as a problem with the overwhelming majority seeing droughts as the major contributory issue to this food insecurity (95.6%). They also find that mainly higher-income and larger farms see it as less of a problem, while 13% of all farmers report that they did not, or could not, do anything to respond to the drought effects. Lastly, even for inhabitants of wetland areas, droughts can pose problems. Yikii et al. (2017), looking at the prevalence and determining factors of food insecurity in wetland adjacent areas in the district, find that 93% of households within wetlands are already food insecure due to poverty, low levels of labor productivity and low levels of education, which they argue would worsen in droughts unless the government finds ways of promoting food and nutrition education, alternative income generating activities, drought resistant crop varieties and ways of water conservation.

Uganda houses around 1.3 million refugees in 13 refugee camps located in 11 districts across the country, including Nakivale refugee camp in the Isingiro district. In refugee camps, water continues to be a scarce resource: While concrete reports on refugee camps in the Isingiro district are scarce, the circumstances in neighboring refugee camps have more received more quantification, with only 67% of the Kyangwali refugee camp having access to improved water sources and only 46% access to sanitation service facilities (Calderón-Villarreal et al., 2022). Little access to sanitation sites can in turn negatively affect access to clean water if no improved water sources are nearby, as was the case with a prolonged cholera outbreak in Kyangwali due to a contaminated stream in 2018 (Monje et al., 2020).

Such resource scarcity can also be a gendered problem, with predominantly girls and young women experiencing an increased amount of sexual and gender based violence as access to resources (especially water, food and firewood) becomes more scarce (Logie et al., 2021). In Nakivale refugee camp growing numbers of refugees have arrived throughout 2022, many re-situated from other Ugandan refugee camps (UNHCR, 2022). Here, water scarcity is an increasingly urgent issue, with its primary reasons being a limited waste management system exacerbating Lake Nakivale’s water quality degradation and a poor state of water reticulation: a large number of non-functioning tap stands, underfunded and non-functioning water treatment plants, while peripheries of the settlement are not covered by water supply at all (UNHCR, 2020).

Thus, while Uganda’s poverty and inequality are not trending towards drastically worsening over the last years, hidden disparities bring its issues in focus once disaggregated: Nationally, poverty is a looming transient affair for many households, more if increasing the country’s very low national line of poverty. Inequality derives itself partly from this poverty, making it necessary for many to accept informal work which, taken at large, in turn fosters further national inequality.

The role education plays in Uganda’s allocation of poverty cannot be overstated, with especially many rural children not having adequate opportunity to access timely education. This disparity could be exacerbated by poor quality access to clean water through improved water sources, which in turn worsens food securities, retrenches gender role inequalities and precludes more children from their education. In the district of Isingiro in West Uganda access to water is considerably below the national average, with policy failures during implementation now leading to partly or non-functional water sources. The problem runs danger of deteriorating with an increased amount of climate shocks such as droughts threatening to exacerbate existing inequalities and drive further households into poverty.

Development assistance to Uganda

Code
# Load CRS data
dfsub1 = pd.read_csv('data/raw/OECD_CRS/CRS1_Uganda_11-13_05092022214241555.csv', parse_dates=True, low_memory=False)
dfsub2 = pd.read_csv('data/raw/OECD_CRS/CRS1_Uganda_14-16_05092022213749491.csv', parse_dates=True, low_memory=False)
dfsub3 = pd.read_csv('data/raw/OECD_CRS/CRS1_Uganda_17-20_05092022213356210.csv', parse_dates=True, low_memory=False)
df = pd.concat([dfsub1, dfsub2, dfsub3], ignore_index=True)
df = df.rename(columns={'\ufeff"DONOR"': 'DONOR'})
Code
totals = df.loc[
    (df['SECTOR'] == 1000) & # Total
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
financetotals = totals.copy()
financetotals = financetotals[financetotals['DONOR'] < 20000] # drop all 'total' aggregations

## count amount of development aid financing instruments (grants/loans) by year and display
## count USD amount of development aid financing instumrnets by year and display
financetotals_grouped = financetotals.groupby(['Flow', 'Year']).agg({'Value': ['sum']})
financetotals_grouped = financetotals_grouped.reset_index(['Flow', 'Year'])
financetotals_grouped.columns = financetotals_grouped.columns.to_flat_index()
financetotals_grouped.columns = ['Financetype', 'Year', 'Value']

fig = px.line(financetotals_grouped, x='Year', y='Value', color='Financetype', labels={"Value": "Development aid amount, in millions of USD"}, markers=True, template="seaborn")
# 0-figure
fig.update_yaxes(rangemode="tozero")
fig.show()

Figure 5: Total ODA for Uganda per year, by financing type

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, split into the type of financing flow, calculated as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

Overall Ugandan development aid reception is high, with over 1.5bn USD granted as official development assistance in 2011 as seen in Figure 5. The Official Development Assistance overall further increased to over 2.2bn USD in 2019, before rapidly increasing in 2020 to over 3.0bn USD. The overall trend of increasing aid money is largely due to increases in development grants which especially increased from 2015 to 2017. In general, development loans play a smaller role in absolute terms: Whereas in 2011 around 1.2bn USD funds came in the form of grants, only around 300m USD were in the form of loans. The absolute portion of loans slowly increased until 2019 to just over 500m USD, before significantly increasing in 2020, tripling to almost 1.5bn USD.

Code
totals = df.loc[
    (df['SECTOR'] == 1000) & # Total
    (df['FLOW'] == 100) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
donortotals = totals.copy()
donortotals["Donortype"] = donortotals["DONOR"].map(donortypes)
donortotals = donortotals[(donortotals["Donortype"] != "nondac")]

donortotals_grouped = donortotals.groupby(['Donortype', 'Year']).agg({'Value': ['sum']})
donortotals_grouped = donortotals_grouped.reset_index(['Donortype', 'Year'])
donortotals_grouped.columns = donortotals_grouped.columns.to_flat_index()
donortotals_grouped.columns = ['Donortype', 'Year', 'Value']
fig = px.line(donortotals_grouped, x='Year', y='Value', color='Donortype', labels={"Value": "Development aid amount, in millions of USD"}, markers=True, template="seaborn")
# 0-figure
fig.update_yaxes(rangemode="tozero")
fig.show()

Figure 6: Total ODA for Uganda per year, separated by donor type

Note: Values shown are for all Official Development Assistance flows valid under the OECD ODA data, split into bilateral development donor countries (dac) and multilateral donors (mlt), as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

In terms of predominant donor types, bilateral aid to Uganda was much higher than multilateral aid to the country until 2019. In 2011 only about 400m USD were provided through multilateral donors while almost 1.2bn USD were provided via bilateral donors, though the multilateral contributions quickly grew to over 600m USD in 2013. Despite a single significant decrease of multilateral aid in 2014, the amount of multilateral aid kept generally stagnant until 2018, when the amount first increased to 800m USD in 2019 and subsequently to over 1.7bn in 2020.

Code
# 14020-22 - large scale potable water
# 14030-32 - individual-level water and sanitation supply
# 14081 - education and training in water supply
totals = df.loc[
    (   (df['SECTOR'] == 14020) |
        (df['SECTOR'] == 14021) |
        (df['SECTOR'] == 14022) |
        (df['SECTOR'] == 14030) |
        (df['SECTOR'] == 14031) |
        (df['SECTOR'] == 14032) |
        (df['SECTOR'] == 14081)
    ) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    ((df['FLOW'] == 11) | (df['FLOW'] == 13)) & # Total
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
wateraid = totals[totals['DONOR'] < 20000] # drop all 'total' aggregations
# Aggregate different measures of large scale water supply and sanitation
wateraid.loc[wateraid[(wateraid['SECTOR'] == 14021) | (wateraid['SECTOR'] == 14022)].index, 'SECTOR'] = 14020
wateraid.loc[wateraid[(wateraid['SECTOR'] == 14020)].index, 'Sector'] = "Water supply and sanitation - large systems"
# Aggregate different measures of individual water supply and sanitation
wateraid.loc[wateraid[(wateraid['SECTOR'] == 14031) | (wateraid['SECTOR'] == 14032)].index, 'SECTOR'] = 14030
wateraid.loc[wateraid[(wateraid['SECTOR'] == 14030)].index, 'Sector'] = "Basic drinking water supply and basic sanitation"

# Group by sector per year and sum all values
wateraid_grouped = wateraid.groupby(['Year', 'Sector']).agg({'Value': ['sum']})
wateraid_grouped = wateraid_grouped.reset_index(['Year', 'Sector'])
wateraid_grouped.columns = wateraid_grouped.columns.to_flat_index()
wateraid_grouped.columns = ['Year', 'Sector', 'Value']
crosstab = pd.crosstab(wateraid_grouped['Year'], wateraid_grouped['Sector'], margins=True, values=wateraid_grouped['Value'], aggfunc='sum')

# Rename and reorder columns
crosstab.columns = ['Basic water supply', 'Education and training', 'Large water supply', 'All']
crosstab = crosstab[['Basic water supply', 'Large water supply', 'Education and training', 'All']]

Markdown(tabulate(crosstab.fillna("0.00"), headers="keys", tablefmt="github", floatfmt=".2f"))
Table 2: ODA projects of water and sanitation supply in Uganda per year, separated by project type
Year Basic water supply Large water supply Education and training All
2011 10.74 17.00 14.53 42.27
2012 26.08 30.15 12.40 68.63
2013 10.18 49.49 4.54 64.21
2014 21.06 37.09 0.42 58.58
2015 22.28 51.68 0.20 74.16
2016 12.18 72.62 0.00 84.80
2017 14.17 94.10 0.10 108.37
2018 10.77 110.02 0.06 120.85
2019 16.03 89.60 0.49 106.12
2020 21.08 125.15 0.20 146.43
All 164.57 676.89 32.96 874.42

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, calculated as constant currency (2020 corrected) USD millions. The categories under analysis are large- and small-scale water supply and sanitation infrastructure projects as well as education and training for the management of water supply infrastructure. Source: Author’s elaboration based on OECD ODA CRS (2022).

The breakdown of development aid to water supply infrastructure and education projects can be seen in Table 2. It shows that overall the contributions to improve water access have been increasing, starting at 42.27m USD in 2011 and climbing to 146.43m USD by 2020. The development funds are broken down into three categories: Basic water supply improvement, large water supply improvement and education and training.

Education and training encompasses training for both professionals in the field itself and service providers. Water supply improvement is broken down into funds for large systems — potable water treatment plants, intake works, large pumping stations and storage, as well as large-scale transmission and distribution systems — and more individual-level basic water supply, such as handpumps, gravity wells, rainwater collection systems, storage tanks, and smaller, often shared, distributions systems. The basic water supply encompasses a more endpoint-oriented collection of measures, often situated in rural locations. Both the large and small scale categories encompass sanitation, with larger-scale sewage pumping stations and trunk sewers, as well as smaller on-site disposal and sanitation systems, latrines and alternative systems. This is due to most infrastructure projects missing the concrete dimensions to separate water supply from sanitation in the data, either due to infrastructural overlap or missing data points.

The split shows that while basic water supply infrastructure projects tended to see contributions between 10m USD and 20m USD, with little overall increase from 2011 to 2020. Large-scale water supply and sanitation projects have, however, seen a significant increase over time, starting at a contribution of 17m USD in 2011 and receiving a 125.15m USD contribution in 2020. This may speak to the necessity of larger infrastructure in place before more basic water supply infrastructure can make use of it, or the provision of large infrastructure at the cost of implementations at smaller scales.

Education and training for water infrastructure management and service provision, while still receiving contributions of 14.53m USD and 12.40m USD in 2011 and 2012 respectively, significantly decrease over the next years to amounts continuously under one million. The monetary focus for aid provision thus lies on large-scale water supply and sanitation projects for these years.

Benin


  • A stable and increasing real GDP growth rates but slow decrease in poverty levels.
  • Poverty affects households in poorly educated households in rural areas to much higher levels than urban areas.
  • Education disparities happen mainly along community-level dimensions through high socio-economic segregation of schools and different access to resources.
  • Large disparity of access to electricity between urban and rural households, which directly negatively affects the environmental conditions of individual rural households.
  • No access to electricity due to both lacking rural infrastructure and electrical grid connection costs being too high.
  • Rapid electrification will require both infrastructure expansion and policy commitment to finding ways of lowering grid connection costs.

Benin in recent years has seen fairly stable real GDP growth rates and downward trending poverty levels in absolute terms. Its growth rate averaged 6.4% for the years 2017 to 2019 and, with a decrease during the intermittent years due to the Covid-19 pandemic, has recovered to a rate of 6.6% in 2021 (World Bank, 2022e). There only exists sporadic and fluctuating data on the country’s overall inequality, with the World Bank Development Index noting a Gini coefficient of 38.6 for the year (2003) before rising to 43.4 (2011) and up to 47.8 (2015), though decreasing below the 2003 level to 37.8 (2018) in its most recent calculation, see Figure 7. At the same time, the country’s poverty rate, even measured based on the international line, only decreased at a very slow rate in its most recent years, from a share of households in poverty at 18.8% in 2019, to 18.7% in 2020 and 18.3% at the end of 2021, with the reduction threatened to be slowed further through increased prices on food and energy (World Bank, 2022e).

Code
gni_cnsmpt = ben[ben['resource'].str.contains("Consumption")]
gni_cnsmpt_percapita = gni_cnsmpt[gni_cnsmpt['scale'].str.contains("Per capita")]
gini_plot(gni_cnsmpt_percapita)

Figure 7: Gini index of consumption per capita for Benin

Source: Author’s elaboration based on UNU-WIDER WIID (2022).

Based on its national poverty line, Benin’s overall poverty rate is 38.5%, though it hides a strong spatial disparity in the incidence of poverty between rural (44.2%) and urban (31.4) areas (World Bank, 2022e). Looking at the effect of income growth on the time to exit poverty, Alia (2017) finds a general negative correlation with stronger growth indeed leading to shorter average exit times (7-10 years for a household at a per capita growth rate of 4.2%), though this aggregate also hides a large heterogeneity primarily determined by a households size, its available human capital and whether it is located rurally. So while the study does conclude for an overall equitable pro-poor growth in Benin, rural households, beside already being relatively more poverty stricken, are in danger of being left further behind during periods of overall growth. Djossou et al. (2017) find similar pro-poor growth with spatial disparities but surprisingly see urban households potentially benefiting less than rural households from additional growth, with efforts to open up communities to harness the benefits of growth often primarily targeted at rural communities.

Using the Learning Poverty index, which combines the share of school deprivation (the share of primary-aged children out-of-school) and learning deprivation (share of pupils below a minimum proficiency in reading), a World Bank (2022b) report shows that 56% of children at late primary age in Benin are not proficient in reading, 55% do not achieve minimum proficiency levels at the end of primary school and 3% of primary school-aged children are not enrolled in school at all. Looking purely at attendance rates, McNabb (2018) finds that the primary household-level determinants of attendance are the wealth of a household, its religion, as well as the education level of its household head. Here, gender disparities persist, however, with girls continuously less likely to attend and adopted girls being at the greatest disadvantage, while boys tend to face higher opportunity costs than girls due to often working in the fields in which case the distance to a school begins to play an important role. While the household-level variables do play a role — through the availability of educational resources at home, differences in schooling quality and overall health and well-being — Gruijters & Behrman (2020) find that most of the disparity stems from the community-level: the difference in school quality is large, marked by high socio-economic segregation between schools, and primarily determined through an unequal distribution of teaching resources including teachers and textbooks.

Thus, while growth is generally pro-poor in Benin, its primary determinants do not cluster only at the household level, but are comprised of partly household-level but especially community-level differences.

Inequalities in access to electricity

One of the foremost examples of the effects of inequal endowments can have is brought by Van De Poel et al. (2009) when they look at the determinants of rural infant death rates in Benin among others and find that environmental factors — such as access to a safe water source, quality housing materials and electricity — are the primary determinants, ahead even of access to a health facility in the community. Access to electricity in the country especially underlies a large heterogeneity based on location. The overall level of electrification of Benin has been rising slowly — though outpacing population growth — from 22% in 2000 to 26% in 2005, 34% in 2010, a decline to 30% in 2015 and then a faster increase to 40% in 2019, although a broad difference in electrification levels between urban (65%) and rural (17%) regions remain (World Bank, 2021b).

In rural areas there are generally three approaches to electrification that work outside of a connection to the main grid, individual installation of solar panels or generators for smaller electric appliances, collective solutions like kiosks offering electric charging for some cost, or autonomous mini-grids powering a portion of a more densely populated rural area (though often requiring permits or licenses if above certain sizes) (Jaglin, 2019).

Rateau & Choplin (2022) see one of the primary reasons for off-grid electrification in either physical unavailability in rural areas or a prohibitively high cost for connection to the grid. However, these more individualized solutions are often only targeted at credit-worthy customers and can lead to a further increase in inequalities between income percentiles, leaving behind households which are already neglected within the field of energy access (Barry & Creti, 2020). The former, physical access, is argued by Djossou et al. (2017) as well, emphasizing the need for continued infrastructure expansion to more households, in order to provide access to more durable goods (fridges, mobile phones and internet) which can help decrease the inequality gap. The latter, prohibitively high costs, should not be disregarded in such an infrastructure expansion as well, however.

One of the major obstacles to main grid connection remains the high charge a customer is expected to pay with solutions requiring continued political commitment to identify, examine and implement more low-cost electrification processes as well as financing solutions. Golumbeanu & Barnes (2013) point out the main obstacles that need to be addressed here: the lack of incentives to increase electrical affordability, a weak utilities commitment toward providing broad electricity access with focus often lying more on high-consumption urban markets, often overrated technical specifications for low loads, too great distances between households and distribution poles in an area, and an overall lack of affordable financing solutions.

Thus, though having a relatively stable and growing real GDP, Benin suffers from slow decreases in its poverty rates coupled with a relative unchanged income inequality. Additionally, the country’s poverty rates have a high heterogeneity with relatively more rural households and households with poor education in poverty. A large part of education disparities happens at the community-level, with schools marked by high socio-economic segregation, but household-level disparities, especially environmental ones, playing a role. One of those determinants is a household’s access to electricity, of which there is an enormous disparity between urban and rural households. The primary reasons for not having access to electricity are the lack of physical infrastructure available in rural areas, as well as connection costs to the main electrical grid being too high. To decrease the effects of this driving force of inequality, both infrastructural expansion as well as policy commitments toward affordable connections to electrical grids are thus of vital importance.

Development assistance to Benin

Code
# Load CRS data
dfsub1 = pd.read_csv('data/raw/OECD_CRS/CRS1_Benin_11-13_05092022185506030.csv', parse_dates=True, low_memory=False)
dfsub2 = pd.read_csv('data/raw/OECD_CRS/CRS1_Benin_14-16_05092022192438936.csv', parse_dates=True, low_memory=False)
dfsub3 = pd.read_csv('data/raw/OECD_CRS/CRS1_Benin_17-20_05092022192856890.csv', parse_dates=True, low_memory=False)
df = pd.concat([dfsub1, dfsub2, dfsub3], ignore_index=True)
df = df.rename(columns={'\ufeff"DONOR"': 'DONOR'})
Code
totals = df.loc[
    (df['RECIPIENT'] == 236) & # Benin
    (df['SECTOR'] == 1000) & # Total
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
financetotals = totals.copy()
financetotals = financetotals[financetotals['DONOR'] < 20000] # drop all 'total' aggregations

## count amount of development aid financing instruments (grants/loans) by year and display
## count USD amount of development aid financing instumrnets by year and display
financetotals_grouped = financetotals.groupby(['Flow', 'Year']).agg({'Value': ['sum']})
financetotals_grouped = financetotals_grouped.reset_index(['Flow', 'Year'])
financetotals_grouped.columns = financetotals_grouped.columns.to_flat_index()
financetotals_grouped.columns = ['Financetype', 'Year', 'Value']

fig = px.line(financetotals_grouped, x='Year', y='Value', color='Financetype', labels={"Value": "Development aid amount, in millions of USD"}, markers=True, template="seaborn")
# 0-figure
fig.update_yaxes(rangemode="tozero")
fig.show()

Figure 8: Total ODA for Benin per year, by financing type

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, split into the type of financing flow, calculated as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

The total amount of development aid for Benin registered by the OECD Creditor Reporting System has been fluctuating, with an overall upward trend since 2011: The aid broken down by financing type can be seen in Figure 8 and shows that money has predominantly been given by way of ODA grants, with roughly double the absolute monetary amount of ODA loans per year. There was an increase in both ODA grants and ODA loans which lead to a significant increase in total development assistance in 2017, and while loans decreased until 2019, grants steadily increased from 2018 to 2020. With loans also beginning to increase from 2019, the overall amount of development assistance saw a large increase in 2020, most likely predominantly due to Covid-19 pandemic related aid packages.

Code
totals = df.loc[
    (df['RECIPIENT'] == 236) & # Benin
    (df['SECTOR'] == 1000) & # Total
    (df['FLOW'] == 100) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
donortotals = totals.copy()
donortotals["Donortype"] = donortotals["DONOR"].map(donortypes)
donortotals = donortotals[(donortotals["Donortype"] != "nondac")]

donortotals_grouped = donortotals.groupby(['Donortype', 'Year']).agg({'Value': ['sum']})
donortotals_grouped = donortotals_grouped.reset_index(['Donortype', 'Year'])
donortotals_grouped.columns = donortotals_grouped.columns.to_flat_index()
donortotals_grouped.columns = ['Donortype', 'Year', 'Value']
fig = px.line(donortotals_grouped, x='Year', y='Value', color='Donortype', labels={"Value": "Development aid amount, in millions of USD"}, markers=True, template="seaborn")
# 0-figure
fig.update_yaxes(rangemode="tozero")
fig.show()

Figure 9: Total ODA for Benin per year, separated by donor type

Note: Values shown are for all Official Development Assistance flows valid under the OECD ODA data, split into bilateral development donor countries (dac) and multilateral donors (mlt), as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

The total amount of development aid for Benin registered by the OECD Creditor Reporting System, broken down into individual donor types can be seen in Figure 9. It shows that bilateral development aid by individual member countries tended to be higher than that provided through multilateral donors until 2019. Beginning in 2020 this split reversed to higher development aid amounts donated through multilateral donors than individual bilateral aid.

Code
totals = df.loc[
    (df['RECIPIENT'] == 236) & # Benin
    ((df['SECTOR'] == 23630) | (df['SECTOR'] == 23631)) & # Total
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    ((df['FLOW'] == 11) | (df['FLOW'] == 13)) & # Total
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
electricityaid = totals[totals['DONOR'] < 20000] # drop all 'total' aggregations

el_grouped = electricityaid.groupby(['Year', 'Flow']).agg({'Value': ['sum']})
el_grouped = el_grouped.reset_index(['Year', 'Flow'])
el_grouped.columns = el_grouped.columns.to_flat_index()
el_grouped.columns = ['Year', 'Flow', 'Value']

crosstab = pd.crosstab(el_grouped['Year'], el_grouped['Flow'], margins=True, values=el_grouped['Value'], aggfunc='sum')
Markdown(tabulate(crosstab.fillna("0.00"), headers="keys", tablefmt="github", floatfmt=".2f"))
Table 3: ODA for transmission and distribution of electric power in Benin per year, separated by financing type
Year ODA Grants ODA Loans All
2011 0.17 5.29 5.46
2012 4.81 3.27 8.08
2013 3.82 18.90 22.72
2014 6.80 8.60 15.41
2015 6.00 24.73 30.72
2016 3.01 16.50 19.51
2017 2.37 19.73 22.10
2018 7.78 22.83 30.61
2019 14.15 27.92 42.07
2020 55.19 45.59 100.78
All 104.10 193.36 297.46

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, split into the type of financing flow, calculated as constant currency (2020 corrected) USD millions. The category under analysis is Electric Power transmission and distribution (centralized grids) within the data. Source: Author’s elaboration based on OECD ODA CRS (2022).

Table 3 shows the amounts of project-bound development aid to Benin for the transmission and distribution of electric power within its centralized grid. The category subsumes grid distribution from the power source to end users and transmission lines. It also includes storage of energy to generate power (e.g. batteries) and projects to extend grid access, especially in rural areas. For development aid to the electrification of Benin, the monetary contributions are smaller but increasing and show trends quite different to that of overall development aid to the country.

The amount of overall development contributions to electrification increases from 2011 to 2020, with significant increases in 2013 and 2015 for loans and 2019, 2020 for grants. While there is a steady increase to the overall development aid toward electrification, increases in grants tend to lag behind increases in loans for Benin, with grants exceeding 10m USD for the first time in 2019 while loans already reached 18.90m USD in 2013. Over the complete period of 2011 to 2020, however, grants for the transmission and distribution of electric power in Benin have consistently been lower than loans.

Djibouti-Ethiopia


  • Stable average GDP growth rates recently greatly reduced through local and global economic instabilities.
  • Enormous poverty rate with much disparity between Djibouti city and other country regions and country set to miss many future poverty rate goals.
  • High levels of deprivation for rural poor, little participation in labor force and lacking rural infrastructure.
  • Labor market highly dependent on trade and internal dichotomy of public administration sector and large informal sector comprised of predominantly unskilled workers.
  • Women facing fewer opportunities for upward educational mobility, less labor market participation, higher unemployment rates, a persisting (but closing) literacy gap.
  • Rural nomadic and pastoralist people highly vulnerable after droughts and regional instability, leading many to flee country or become sedentary and greatly reducing their numbers.

Djibouti occupies a somewhat singular position, being a tiny country with an economy focused primarily around its deep-water port, trying to establish itself as a regional hub for trade and commerce. The country’s GDP has averaged roughly 6% per year before the Covid-19 pandemic greatly reduced those growth rates (World Bank, 2022f). However, the country’s inequality levels are high (Gini coefficient 41.6) and its poverty rates are extreme (21.1%, World Bank, 2022f). Additionally in many cases there is a lack of data or the data itself are lacking in several socio-economic dimensions which hinders analysis and policy design.

Code
gni_cnsmpt = dji[dji['resource'].str.contains("Consumption")]
gni_cnsmpt_percapita = gni_cnsmpt[gni_cnsmpt['scale'].str.contains("Per capita")]
gini_plot(gni_cnsmpt_percapita)

Figure 10: Gini index of consumption per capita for Djibouti

Source: Author’s elaboration based on UNU-WIDER WIID (2022).

Poverty in Djibouti is high and marked by high deprivation: Using the national poverty line of around 2.18USD (2011 PPP) the poverty rate for the overall country by consumption is estimated at 21.1% in 2017, while 17% live in extreme poverty under the international poverty line of 1.90USD (2011 PPP) and 32% of the population are still under the international lower middle income poverty line of 3.20USD (2011 PPP) (World Bank, 2019, 2022f). Furthermore, there is a significant spatial disparity between poverty rates. World Bank (2020b) estimate only 15% of Djibouti’s overall population living in rural areas, with 45% of the country’s poor residing in rural areas while 37% reside in the Balbala2 area (World Bank, 2020b). The study goes on to describe the high levels of deprivation for the rural poor, with the country’s highest dependency ratios, lowest participation in the labor force, very low levels of employment in the households’ heads and very low school enrollment, and while urban poor face similar restrictions they have better access to public services and higher school attendance rates. Access to basic amenities and services in Djibouti is low (42.1%) and 15.5% of the population have no access to both electricity and sanitation, and all people in monetary poverty are also deprived along multiple dimensions (World Bank, 2020c).

Over half the working-age population does not participate in the labor force with employment being estimated at 45% in 2017, lower than the 46.3% estimated for 1996, despite the country’s economic growth (World Bank, 2019). Emara & Mohieldin (2020) look at the overall impact of financial inclusion on poverty levels but find that, first, Djibouti is way above its targeted poverty levels, second, it is not only one of the only countries in the region (together with Yemen) to not achieve a 5% poverty level target yet, but not even on track to achieve this target by 2030 solely through improvements in financial inclusion.

Inequality in Djibouti is high, with the lowest decile only making up 1.9% of total consumption while the richest decile enjoy 32% of the total consumption, 16 times as much as those at the lowest decile (World Bank, 2019). The country has an estimated Gini coefficient for consumption per capita of 41.6 in 2017, making it one of the most unequal countries in the region (World Bank, 2022f, see also Figure 10). More of its inequality hides in a large spatial and gendered heterogeneity. Urban poor face high deprivation but higher access to public services and schooling compared to the rural poor, who have only 41% access to improved water sources, 10% access to sanitation, 3% access to electricity, and with only one third living close (under 1km) to a primary school (World Bank, 2020b).

While in general over half the working-age population does not participate in the labor force, the makeup is 59% of men and only 32% of women who participate, mirroring unemployment rates with an estimated third of men and two thirds of women being unemployed (World Bank, 2019). World Bank (2019) also find the labor market itself highly unequal, with its dichotomy of a public administrative sector (drawing mainly highly skilled workers) and informal private sector making up 90% of the overall labor market, the majority of women working in the informal sector and almost half of the jobs for women in this sector consisting of one-person ‘self-employed’ enterprises. Nearly 41% of working-age women find themselves in positions of vulnerable employment (World Bank, 2022c).

Djibouti’s economy is primarily, and within its formal sector almost exclusively, driven by its strategic location and possession of a deep-water port so it can act as a regional refueling, trading and transport shipment center (World Bank, 2022f). At the same time, this interconnected economic nature and the country’s heavy reliance on food and energy imports marks a key vulnerability and makes it immediately dependent on the stability of global trade and export markets, a stability which was recently disrupted through a global pandemic (World Bank, 2022f).

Likewise, Djibouti depends on regional stability, since its economic growth is tightly coupled with the Ethiopian economy, sourcing around 70% of its port trade from this landlocked neighbor (World Bank, 2019). A series of droughts in the country threatened the livelihood of its nomadic and pastoralist population, with many fleeing to neighboring countries, some becoming sedentary in village or city outskirts, and the overall nomadic population decreasing by nearly three quarters from 2009 to 2017 (World Bank, 2019, 2020b).

Additionally, during the early waves of Covid-19 Djibouti had one of the highest infection rates in the region, and though it had a high recovery rate, it also had one of the highest fatality rates, possibly due to deficiencies in its healthcare system (El Khamlichi et al., 2022). The country’s rising costs of now fast-maturing debts made the government leave social spending behind, leaving a budget of 5% for health and 3% for social expenditures, spendings which looks diminutive compared to its over 30% expenditures on public infrastructure (World Bank, 2022f). Only 10% of rural poor inhabitants live close (under 1km) to a health facility (World Bank, 2020b).

Gender inequalities in livelihood opportunities

While still facing reduced rates of labor market participation, the country has expended effort on increasing women’s opportunity for education: Having overall lower literacy rates for women still, the overall literacy rates in younger cohorts (10-24 years old) is significantly higher compared to older ones, and the gaps have decreased from 24% difference between the genders (40-60 years old) to 10% (15-24 years old) and 2% (10-14 years old) (World Bank, 2019).

Women’s lower secondary completion rate grew from 28.6% in 2009 (compared to 35.2% men) to 56.3% in 2021 (54.0% for men) (World Bank, 2022c). However, for 2017, women’s upward educational mobility was still significantly worse than men’s, with non-poor men having an upward mobility of 53%, non-poor women 29%, poor men 19% and poor women only 10% against the national average of 36% (World Bank, 2019). Such differences reflect themselves in firm ownership structures and on the labor market, where 22.3% of all firms have female participation in ownership and only 14.2% a female top manager, and both salaried employment and agricultural employment are male-dominated (though agricultural work only with a slight and shrinking difference of 4%) (World Bank, 2022c).

The official number of procedures to register a business are the same for men and women, as are the time and cost required for business start-up procedures (World Bank, 2020a), however, there are factors which may further inhibit equal female business participation and ownership: while women have the same legal rights in access to credit, contractual and financial instruments as men (World Bank, 2022i), women have an overall lower account ownership rate at financial institutions with 8.8% compared to men’s 16.6% (2011) reflecting itself especially in a lower access to debit cards at institutions World Bank (2022a).

As mentioned above, women have a lower participation rate on the labor market with an especially stark gender difference in the industrial sector — a sector of the economy in which women in Djibouti do not have the same rights to participate in as men, especially in jobs deemed dangerous (World Bank, 2022i) — with service being the sector that makes up the greatest share of female labor participation (71.1% of all female labor compared to 56.0% of all male labor 2019), a sector which is also driving the high share of women in vulnerable employment (41.4% of female labor in 2019) (World Bank, 2022a).

Overall it seems, however, that past growth in the country’s GDP is likely not favorable for an inclusive growth path, with its large-scale infrastructure investments mostly creating demand for skilled workers and neglect of social spending not allowing the buffers and social safety nets that prevent further drift into inequality. Brass (2008) argues even that the country leadership’s policy decisions carry increased weight in this, towards a path of ever increasing economic dependence and into a predicament of economic diversification requiring a more educated population, but a more educated population without already accompanying diversified economy likely enacting a successful policy or governmental opposition.

Thus, Djibouti represents a country with an overall solid growth rate but accompanying high inequalities and poverty rates, from which path it does not seem to detach without more policy intervention. It is a country with one of the highest poverty rates in the region and an enormous spatial disparity in poverty between the prime sectors of Djibouti city and the rest of the country. The rural sectors face high levels of deprivation, economic disparity and largely lacking infrastructure, and the majority of its population not participating in the labor force. The country’s labor market is to the largest degree dichotomized in the public administrative sector, comprised of mostly skilled workers, and a large private informal sector comprised mostly of unskilled workers, many of which are women. The overall economy is dependent on high levels of regional and global stability which was recently undermined by droughts, Ethiopian conflict and the Covid-19 pandemic. Nomadic and pastoralist people in the country’s rural regions were hit especially hard, with the nomadic population decreasing by nearly three quarters and many fleeing or becoming sedentary. Women face less opportunity in the country with worse upward educational mobility, less participation in the labor force, higher unemployment rates, and a continuing, if closing, gender literacy gap. Djibouti is set to miss most of its poverty target levels and move along a growth pathway that does not lend itself to inclusion unless active policy measures changing its economic investment and growth strategies are examined.

Development assistance to Djibouti

Code
# Load CRS data
dfsub1 = pd.read_csv('data/raw/OECD_CRS/CRS1_Djibouti_11-13_05092022210301944.csv', parse_dates=True, low_memory=False)
dfsub2 = pd.read_csv('data/raw/OECD_CRS/CRS1_Djibouti_14-16_05092022210632022.csv', parse_dates=True, low_memory=False)
dfsub3 = pd.read_csv('data/raw/OECD_CRS/CRS1_Djibouti_17-20_05092022210913679.csv', parse_dates=True, low_memory=False)
df = pd.concat([dfsub1, dfsub2, dfsub3], ignore_index=True)
df = df.rename(columns={'\ufeff"DONOR"': 'DONOR'})
Code
totals = df.loc[
    (df['SECTOR'] == 1000) & # Total
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
financetotals = totals.copy()
financetotals = financetotals[financetotals['DONOR'] < 20000] # drop all 'total' aggregations

## count amount of development aid financing instruments (grants/loans) by year and display
## count USD amount of development aid financing instumrnets by year and display
financetotals_grouped = financetotals.groupby(['Flow', 'Year']).agg({'Value': ['sum']})
financetotals_grouped = financetotals_grouped.reset_index(['Flow', 'Year'])
financetotals_grouped.columns = financetotals_grouped.columns.to_flat_index()
financetotals_grouped.columns = ['Financetype', 'Year', 'Value']

fig = px.line(financetotals_grouped, x='Year', y='Value', color='Financetype', labels={"Value": "Development aid, in millions"}, markers=True, template="seaborn")
fig.show()

Figure 11: Total ODA for Djibouti per year, by financing type

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, split into the type of financing flow, calculated as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

The amount of Official Development Assistance to Djibouti has generally been increasing since 2011, first steadily and, since 2017, more rapidly, as can be seen in Figure 11. With just under 150m USD in assistance contributions 2011 and just over 320m USD at its peak in 2020, Djibouti has received less overall ODA funds than the other countries surveyed in this study.

The primary type of development assistance provided are grants, with loans making up between half and one third of the absolute grant amount in USD between 2011 and 2020. Grants have trended slowly upwards from just over 100m USD in 2011 to 135m in 2014, before fluctuating around this level until 2017, and finally increasing more significantly to over 200m USD in 2020. Loans had a more significant jump earlier, from a relatively stagnant level of under 40m USD in 2014 to 80m USD in 2015, with a similarly significant jump from 2018 to 2019, before decreasing slightly again to just over 110m USD in 2020. While largely comprising less than 10m USD until 2018, other official flows (non-export credits) had a large increase to over 75m USD in 2019, but decreasing almost as significantly again the following year.

Code
totals = df.loc[
    (df['SECTOR'] == 1000) & # Total
    (df['FLOW'] == 100) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
donortotals = totals.copy()
donortotals["Donortype"] = donortotals["DONOR"].map(donortypes)
donortotals = donortotals[(donortotals["Donortype"] != "nondac")]

donortotals_grouped = donortotals.groupby(['Donortype', 'Year']).agg({'Value': ['sum']})
donortotals_grouped = donortotals_grouped.reset_index(['Donortype', 'Year'])
donortotals_grouped.columns = donortotals_grouped.columns.to_flat_index()
donortotals_grouped.columns = ['Donortype', 'Year', 'Value']
fig = px.line(donortotals_grouped, x='Year', y='Value', color='Donortype', labels={"Value": "Development aid, in millions"}, markers=True, template="seaborn")
fig.show()

Figure 12: Total ODA for Djibouti per year, separated by donor type

Note: Values shown are for all Official Development Assistance flows valid under the OECD ODA data, split into bilateral development donor countries (dac) and multilateral donors (mlt), as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

The primary donor type of development assistance to Djibouti has been through bilateral donors for the majority of time between 2011 and 2020, see Figure 12. While bilateral contributions have been consistently around 100m USD, multilateral contributions slowly increased from 45m USD in 2011 to just under 70m USD 2016. This situation changed, however, with both types of contributions increasing more significantly in 2018 and 2019. The multilateral contribution of 108m USD in 2019 is larger than the previous year’s bilateral contributions (104m USD), though those equally rose significantly to almost 160m USD in 2019. While the bilateral contributions spiked in 2019 before falling to 130m USD the following year, multilateral contributions kept increasing significantly to over 170m USD in 2020. For the first time in 2020, then, multilateral contributions provided a significantly larger share of development assistance to Djibouti than bilateral contributions, a trend which may move even further apart if bilateral contributions keep decreasing while multilateral ones increase.

Code
totals = df.loc[
    (
        (df['SECTOR'] == 15170) |
        (df['SECTOR'] == 15180) |
        (df['SECTOR'] == 25010) |
        (df['SECTOR'] == 25020) |
        (df['SECTOR'] == 25030) |
        (df['SECTOR'] == 25040) |
        (df['SECTOR'] == 33110) |
        (df['SECTOR'] == 33120) |
        (df['SECTOR'] == 33130) |
        (df['SECTOR'] == 33140) |
        (df['SECTOR'] == 33150) |
        (df['SECTOR'] == 33181) |
        (df['SECTOR'] == 43071) |
        (df['SECTOR'] == 43072)
    ) &
    (df['CHANNEL'] == 100) &
    (df['AMOUNTTYPE'] == 'D') &
    ((df['FLOW'] == 11) | (df['FLOW'] == 13)) & # Total
    (df['FLOWTYPE'] == 112) &
    (df['AIDTYPE'] == "100") # contains mixed int and string representations
    ]
aid = totals[totals['DONOR'] < 20000] # drop all 'total' aggregations

# Aggregate different measures of topics
aid.loc[aid[(aid['SECTOR'] == 15170) | (aid['SECTOR'] == 15180)].index, 'SECTOR'] = 15170
aid.loc[aid[(aid['SECTOR'] == 15170)].index, 'Sector'] = "Women's rights support"

aid.loc[aid[(aid['SECTOR'] == 25010) | (aid['SECTOR'] == 25020) | (aid['SECTOR'] == 25030) | (aid['SECTOR'] == 25040)].index, 'SECTOR'] = 25010
aid.loc[aid[(aid['SECTOR'] == 25010)].index, 'Sector'] = "Business growth"

aid.loc[aid[(aid['SECTOR'] == 33110) | (aid['SECTOR'] == 33120) | (aid['SECTOR'] == 33130) | (aid['SECTOR'] == 33140) | (aid['SECTOR'] == 33150) | (aid['SECTOR'] == 33181)].index, 'SECTOR'] = 33110
aid.loc[aid[(aid['SECTOR'] == 33110)].index, 'Sector'] = "Trade development"

aid.loc[aid[(aid['SECTOR'] == 43071) | (aid['SECTOR'] == 43072)].index, 'SECTOR'] = 43071
aid.loc[aid[(aid['SECTOR'] == 43071)].index, 'Sector'] = "Food security"

# Group by sector per year and sum all values
aid_grouped = aid.groupby(['Year', 'Sector']).agg({'Value': ['sum']})
aid_grouped = aid_grouped.reset_index(['Year', 'Sector'])
aid_grouped.columns = aid_grouped.columns.to_flat_index()
aid_grouped.columns = ['Year', 'Sector', 'Value']

crosstab = pd.crosstab(aid_grouped['Year'], aid_grouped['Sector'], margins=True, values=aid_grouped['Value'], aggfunc='sum')

# Rename and reorder columns
crosstab = crosstab[['Trade development', 'Business growth', "Women's rights support", 'Food security', 'All']]

Markdown(tabulate(crosstab.fillna("0.00"), headers="keys", tablefmt="github", floatfmt=".2f"))
Table 4: ODA projects of advancing inclusive growth, separated by project type
Year Trade development Business growth Women’s rights support Food security All
2011 0.12 0.30 0.08 0.00 0.49
2012 0.02 0.54 0.09 0.00 0.65
2013 0.06 0.41 0.09 0.00 0.56
2014 0.13 0.42 0.06 0.00 0.61
2015 0.07 0.58 0.13 0.00 0.78
2016 0.00 0.82 0.77 0.00 1.59
2017 0.30 1.26 0.22 0.00 1.78
2018 0.28 1.14 0.22 0.03 1.67
2019 0.52 1.92 0.28 0.06 2.78
2020 7.72 1.73 0.26 0.00 9.71
All 9.22 9.13 2.19 0.08 20.62

Note: Values shown are for all Official Development Assistance flows valid under the OECD CRS data, calculated as constant currency (2020 corrected) USD millions. Source: Author’s elaboration based on OECD ODA CRS (2022).

The sector-based breakdown of aid contributions for inclusive business growth in Djibouti can be seen in Table 4. It shows that overall development assistance to the necessary inclusive growth sectors in Djibouti is still small in absolute terms, especially for those in vulnerable positions. The table is broken down into four sectors of development aid which drive the potential for inclusive growth in trade and business:

First, trade development encompasses trade policy and administrative management, trade facilitation, regional trade agreements, multilateral trade negotiations, trade-related adjustments and trade education and training. Second, business growth is the combination of business policy and administrative management, privatization, business development services as well responsible business conduct — meaning the establishing of policy reform and implementation and enforcement of responsible business conduct, including, among others, implementation of guidelines for human rights support. Third, and specifically aimed at the inclusion of women in economic activities, is the support for women’s rights which includes the establishment of, and assistance for, women’s rights organizations and institutions to enhance their effectiveness, influence and sustainability. And last, the provision for and protection of food security for those in vulnerable positions, through capacity strengthening and household-level food security programmes, short- or long-term, excluding emergency food assistance measures (such as for disaster crisis affected households).

The amount of aid contributions into these sectors of inclusive growth in Djibouti is small in comparison with development assistance to the other countries analyzed. The absolute amount of contributions has consistently kept under 10m USD per year for all four sectors combined, though an overall growth trend is visible from 0.5m USD in 2011 to 1.6m USD in 2016 and more rapid growth in 2020 to just under 10m USD. Most of this recent growth in 2020 is driven by contributions to trade development with 7.7m USD, while business growth and women’s rights support are seeing much smaller contributions yet. The business growth sector, though seeing small contributions in absolute terms, has seen a continued increase in contributions from 0.3m USD in 2011 to 1.7m USD in 2020, with almost 2m USD at its peak in 2019. Women’s rights support, on the other hand, has seen some increase from its small contributions of not even 0.1m USD in 2011 to almost 0.8m USD in 2016, but overall assistance to the sector stays stagnant at only around 0.25m USD in recent years. Lastly, food security remains almost completely without Official Development Assistance contributions, with barely 0.05m USD being contributed at its peak in 2019. Thus, development contributions to Djibouti’s trade sector itself are increasing, though at the same time contributions to inclusive growth specifically, aimed at vulnerable populations and an inclusive business environment, are growing slowly at best and stagnant for protection measures for those in vulnerable groups.

References

Alia, D. Y. (2017). Progress Toward The Sustainable Development Goal on Poverty : Assessing The Effect of Income Growth on The Exit Time from Poverty in Benin: Exit Time Out of Poverty in Benin. Sustainable Development, 25(6), 495–503. https://doi.org/10.1002/sd.1674
Barry, M. S., & Creti, A. (2020). Pay-as-you-go contracts for electricity access: Bridging the “last mile” gap? A case study in Benin. Energy Economics, 90, 104843. https://doi.org/10.1016/j.eneco.2020.104843
Baulch, B., Pham, H. T., & Reilly, B. (2012). Decomposing the Ethnic Gap in Rural Vietnam, 1993–2004. Oxford Development Studies, 40(1), 87–117. https://doi.org/10.1080/13600818.2011.646441
Benjamin, D., & Brandt, L. (2004). Agriculture and income distribution in rural Vietnam under economic reforms: A tale of two regions. In P. Glewwe, N. Agrawal, & D. Dollar (Eds.), Economic Growth, Poverty and Household Welfare in Vietnam (pp. 133–186). World Bank.
Benjamin, D., Brandt, L., & McCaig, B. (2017). Growth with equity: Income inequality in Vietnam, 2002–14. The Journal of Economic Inequality, 15(1), 25–46. https://doi.org/10.1007/s10888-016-9341-7
Brass, J. N. (2008). Djibouti’s unusual resource curse. The Journal of Modern African Studies, 46(4), 523–545. https://doi.org/10.1017/S0022278X08003479
Bui, T. P., & Imai, K. S. (2019). Determinants of Rural-Urban Inequality in Vietnam: Detailed Decomposition Analyses Based on Unconditional Quantile Regressions. The Journal of Development Studies, 55(12), 2610–2625. https://doi.org/10.1080/00220388.2018.1536265
Calderón-Villarreal, A., Schweitzer, R., & Kayser, G. (2022). Social and geographic inequalities in water, sanitation and hygiene access in 21 refugee camps and settlements in Bangladesh, Kenya, Uganda, South Sudan, and Zimbabwe. International Journal for Equity in Health, 21(1), 27. https://doi.org/10.1186/s12939-022-01626-3
Cali, M. (2014). Trade boom and wage inequality: Evidence from Ugandan districts. Journal of Economic Geography, 14(6), 1141–1174. https://doi.org/10.1093/jeg/lbu001
Cao, T. C. V., & Akita, T. (2008). Urban and rural dimensions of income inequality in Vietnam (Economic Development & Policy Series). GSIR.
Cooper, S. J., & Wheeler, T. (2016). Rural household vulnerability to climate risk in Uganda. Regional Environmental Change, 17(3), 649–663. https://doi.org/10.1007/s10113-016-1049-5
Datzberger, S. (2018). Why education is not helping the poor. Findings from Uganda. World Development, 110, 124–139. https://doi.org/10.1016/j.worlddev.2018.05.022
Djossou, G. N., Kane, G. Q., & Novignon, J. (2017). Is Growth Pro-Poor in Benin? Evidence Using a Multidimensional Measure of Poverty: Is Growth Pro-Poor in Benin? Poverty & Public Policy, 9(4), 426–443. https://doi.org/10.1002/pop4.199
Ebrahim, C., Jack, A., & Jones, L. (2021). Women’s economic empowerment and COVID-19: The case of vulnerable women with intersectional identities in Indonesia and Vietnam. Enterprise Development and Microfinance, 32(1), 44–56. https://doi.org/10.3362/1755-1986.21-00007
El Khamlichi, S., Maurady, A., & Sedqui, A. (2022). Comparative study of COVID-19 situation between lower-middle-income countries in the eastern Mediterranean region. Journal of Oral Biology and Craniofacial Research, 12(1), 165–176. https://doi.org/10.1016/j.jobcr.2021.10.004
Emara, N., & Mohieldin, M. (2020). Financial inclusion and extreme poverty in the MENA region: A gap analysis approach. Review of Economics and Political Science, 5(3), 207–230. https://doi.org/10.1108/REPS-03-2020-0041
Esaku, S. (2021a). Does income inequality increase the shadow economy? Empirical evidence from Uganda. Development Studies Research, 8(1), 147–160. https://doi.org/10.1080/21665095.2021.1939082
Esaku, S. (2021b). Does the shadow economy increase income inequality in the short- and long-run? Empirical evidence from Uganda. Cogent Economics & Finance, 9(1). https://doi.org/10.1080/23322039.2021.1912896
Fesselmeyer, E., & Le, K. T. (2010). Urban-biased Policies and the Increasing Rural-Urban Expenditure Gap in Vietnam in the 1990s: Urban-biased policies in Vietnam in the 1990s. Asian Economic Journal, 24(2), 161–178. https://doi.org/10.1111/j.1467-8381.2010.02034.x
Fritzen, S., Brassard, C., & Bui, T. M. T. (2005). Vietnam inequality report 2005: Assessment and policy choices. DFID Vietnam.
Golumbeanu, R., & Barnes, D. (2013). Connection Charges and Electricity Access in Sub-Saharan Africa (No. 6511; Policy Research Working Paper). World Bank. https://openknowledge.worldbank.org/handle/10986/15871
Gruijters, R. J., & Behrman, J. A. (2020). Learning Inequality in Francophone Africa: School Quality and the Educational Achievement of Rich and Poor Children. Sociology of Education, 93(3), 256–276. https://doi.org/10.1177/0038040720919379
Hudson, P., Pham, M., Hagedoorn, L., Thieken, A. H., Lasage, R., & Bubeck, P. (2021). Self-stated recovery from flooding: Empirical results from a survey in Central Vietnam. Journal of Flood Risk Management, 14(1), 1–15.
Jafino, B. A., Kwakkel, J. H., Klijn, F., Dung, N. V., van Delden, H., Haasnoot, M., & Sutanudjaja, E. H. (2021). Accounting for multisectoral dynamics in supporting equitable adaptation planning: A case study on the rice agriculture in the Vietnam Mekong delta. Earth’s Future, 9(5).
Jaglin, S. (2019). Electricity autonomy and power grids in Africa: From rural experiments to urban hybridizations. In F. Lopez, M. Pellgrino, & O. Coutard (Eds.), Local Energy Autonomy: Spaces, Scales, Politics (pp. 291–310). Wiley.
Karpouzoglou, T., Dang Tri, V. P., Ahmed, F., Warner, J., Hoang, L., Nguyen, T. B., & Dewulf, A. (2019). Unearthing the ripple effects of power and resilience in large river deltas. Environmental Science & Policy, 98, 1–10. https://doi.org/10.1016/j.envsci.2019.04.011
Kozel, V. J. (2014). Well Begun but Not Yet Done: Progress and Emerging Challenges for Poverty Reduction in Vietnam (Equity and Development). World Bank. https://openknowledge.worldbank.org/handle/10986/20074
Le, N. V. T., Hoang, T. X., & Tran, T. Q. (2022). Growth, inequality and poverty in Vietnam: How did trade liberalisation help the poor, 2002–2008. International Journal of Social Welfare, 31(1), 86–99. https://doi.org/10.1111/ijsw.12482
Le, Q. H., Do, Q. A., Pham, H. C., & Nguyen, T. D. (2021). The Impact of Foreign Direct Investment on Income Inequality in Vietnam. Economies, 9(1), 27. https://doi.org/10.3390/economies9010027
Logie, C. H., Okumu, M., Latif, M., Musoke, D. K., Odong Lukone, S., Mwima, S., & Kyambadde, P. (2021). Exploring resource scarcity and contextual influences on wellbeing among young refugees in Bidi Bidi refugee settlement, Uganda : Findings from a qualitative study. Conflict and Health, 15(1), 3. https://doi.org/10.1186/s13031-020-00336-3
Lwanga-Ntale, C. (2014). Inequality in Uganda: Issues for discussion and further research. Development, 57(3-4), 601–617. https://doi.org/10.1057/dev.2015.44
McCaig, B. (2011). Exporting out of poverty: Provincial poverty in Vietnam and U.S. Market access. Journal of International Economics, 85(1), 102–113. https://doi.org/10.1016/j.jinteco.2011.05.007
McNabb, K. (2018). Exploring regional and gender disparities in Beninese primary school attendance: A multilevel approach. Education Economics, 26(5), 534–556. https://doi.org/10.1080/09645292.2018.1426732
Monje, F., Ario, A. R., Musewa, A., Bainomugisha, K., Mirembe, B. B., Aliddeki, D. M., Eurien, D., Nsereko, G., Nanziri, C., Kisaakye, E., Ntono, V., Kwesiga, B., Kadobera, D., Bulage, L., Bwire, G., Tusiime, P., Harris, J., & Zhu, B.-P. (2020). A prolonged cholera outbreak caused by drinking contaminated stream water, Kyangwali refugee settlement, Hoima District, Western Uganda: 2018. Infectious Diseases of Poverty, 9(1), 154. https://doi.org/10.1186/s40249-020-00761-9
Mottet, É., & Roche, Y. (2009). L’urbanisation de la ville de Ninh Binh dans le delta du fleuve rouge (Vietnam) : mise en perspective des forces et faiblesses de la gestion du risque d’inondation. VertigO. https://doi.org/10.4000/vertigo.7782
Mulogo, E. M., Matte, M., Wesuta, A., Bagenda, F., Apecu, R., & Ntaro, M. (2018). Water, sanitation, and hygiene service availability at rural health care facilities in southwestern Uganda. Journal of Environmental and Public Health, 2018.
Nagasha, J. I., Mugisha, L., Kaase-Bwanga, E., Onyuth, H., & Ocaido, M. (2019). Effect of climate variability on gender roles among communities surrounding Lake Mburo National Park, Uganda. Emerald Open Research, 1, 7. https://doi.org/10.12688/emeraldopenres.12953.1
Naiga, R. (2018). Conditions for successful community-based water management: Perspectives from rural Uganda. International Journal of Rural Management, 14(2), 110–135.
Naiga, R., Penker, M., & Hogl, K. (2015). Challenging pathways to safe water access in rural Uganda: From supply to demand-driven water governance. International Journal of the Commons, 9(1).
Nguyen, B. T., Albrecht, J. W., Vroman, S. B., & Westbrook, M. D. (2007). A quantile regression decomposition of urban–rural inequality in Vietnam. Journal of Development Economics, 83(2), 466–490. https://doi.org/10.1016/j.jdeveco.2006.04.006
OECD. (2022). Creditor Reporting SystemVersion 13 July 2022 [Data set]. OECD. https://doi.org/10.35188/UNU-WIDER/WIID-300622
Rateau, M., & Choplin, A. (2022). Electrifying urban Africa: Energy access, city-making and globalisation in Nigeria and Benin. International Development Planning Review, 44(1), 55–80. https://doi.org/10.3828/idpr.2021.4
Sempewo, J. I., Kisaakye, P., Mushomi, J., Tumutungire, M. D., & Ekyalimpa, R. (2021). Assessing willingness to pay for water during the COVID-19 crisis in Ugandan households. Social Sciences & Humanities Open, 4(1), 100230.
Sempewo, J. I., Mushomi, J., Tumutungire, M. D., Ekyalimpa, R., & Kisaakye, P. (2021). The impact of COVID-19 on households’ water use in Uganda. Water Supply, 21(5), 2489–2504.
Sen, L. T. H., Bond, J., Dung, N. T., Hung, H. G., Mai, N. T. H., & Phuong, H. T. A. (2021). Farmers’ barriers to the access and use of climate information in the mountainous regions of Thừa Thiên Huế province, Vietnam. Climate Services, 24, 100267–100267. https://doi.org/10.1016/j.cliser.2021.100267
Son, H., & Kingsbury, A. (2020). Community adaptation and climate change in the Northern Mountainous Region of Vietnam: A case study of ethnic minority people in Bac Kan Province. Asian Geographer, 37(1), 33–51. https://doi.org/10.1080/10225706.2019.1701507
Ssewanyana, S., & Kasirye, I. (2012). Poverty and inequality dynamics in Uganda: Insights from the Uganda national Panel Surveys 2005/6 and 2009/10. EPRC - Economic Policy Research Centre. https://ageconsearch.umn.edu/record/148953
Thu Le, H., & Booth, A. L. (2014). Inequality in Vietnamese Urban-Rural Living Standards, 1993-2006. Review of Income and Wealth, 60(4). https://doi.org/10.1111/roiw.12051
Twongyirwe, R., Mfitumukiza, D., Barasa, B., Naggayi, B. R., Odongo, H., Nyakato, V., & Mutoni, G. (2019). Perceived effects of drought on household food security in South-western Uganda: Coping responses and determinants. Weather and Climate Extremes, 24, 100201. https://doi.org/10.1016/j.wace.2019.100201
UNHCR. (2022). Uganda refugee emergency: Situation report (Inter-Agency Situation Report). United Nations High Commissioner For Refugees.
UNHCR. (2020). Nakivale Settlement profile (No. HS/029/20E). United Nations High Commissioner For Refugees.
UNU-WIDER. (2022a). World Income Inequality Database (WIID) – Version 30 June 2022 [Data set]. United Nations University World Institute for Development Economics Research. https://doi.org/10.35188/UNU-WIDER/WIID-300622
UNU-WIDER. (2022b). World Income Inequality Database (WIID) Companion Version 30 June 2022 [Data set]. United Nations University World Institute for Development Economics Research. https://doi.org/10.35188/UNU-WIDER/WIIDcomp-300622
Van De Poel, E., O’donnell, O., & Van Doorslaer, E. (2009). What explains the rural-urban gap in infant mortality: Household or community characteristics? Demography, 46(4), 827–850. https://doi.org/10.1353/dem.0.0074
van de Ven, G. W. J., de Valenca, A., Marinus, W., de Jager, I., Descheemaeker, K. K. E., Hekman, W., Mellisse, B. T., Baijukya, F., Omari, M., & Giller, K. E. (2021). Living income benchmarking of rural households in low-income countries. FOOD SECURITY, 13(3), 729–749. https://doi.org/10.1007/s12571-020-01099-8
van de Walle, D., & Gunewardena, D. (2001). Sources of ethnic inequality in Viet Nam. Journal of Development Economics, 65(1), 177–207. https://doi.org/10.1016/S0304-3878(01)00133-X
VASS. (2006). Vietnam Poverty Update Report 2006: Poverty and Poverty Reduction in Vietnam 1993-2004. Vietnam Academy of Social Sciences.
VASS. (2011). Poverty Reduction in Vietnam: Achievements and Challenges. Vietnam Academy of Social Sciences.
World Bank. (2022a). Gender StatisticsVersion 23 June 2022 [Data set]. World Bank. https://doi.org/10.35188/UNU-WIDER/WIID-300622
World Bank. (2019). Challenges to Inclusive Growth: A Poverty and Equity Assessment of Djibouti (No. 18; Poverty and Equity Note). World Bank. http://documents.worldbank.org/curated/en/449741576097502078/Challenges-to-Inclusive-Growth-A-Poverty-and-Equity-Assessment-of-Djibouti
World Bank. (2012). Vietnam poverty assessment: Well begun, not yet done - Vietnam ’s remarkable progress on poverty reduction and the emerging challenges. World Bank. http://documents.worldbank.org/curated/en/563561468329654096/2012-Vietnam-poverty-assessment-well-begun-not-yet-done-Vietnams-remarkable-progress-on-poverty-reduction-and-the-emerging-challenges
World Bank. (2020a). Doing Business. World Bank. https://doingbusiness.org/
World Bank. (2020b). Location Matters: Welfare Among Urban and Rural Poor in Djibouti (No. 18; Poverty and Equity Note). World Bank. http://documents.worldbank.org/curated/en/203361579888116251/Location-Matters-Welfare-Among-Urban-and-Rural-Poor-in-Djibouti
World Bank. (2020c). The Multi-Dimensional Nature of Poverty in Djibouti (No. 30; Poverty and Equity Note). World Bank. http://documents.worldbank.org/curated/en/272691596006234817/The-Multi-Dimensional-Nature-of-Poverty-in-Djibouti
World Bank. (2021a). Global Findex Database. World Bank. https://www.worldbank.org/en/publication/globalfindex/
World Bank. (2021b). Tracking SDG 7: The Energy Progress Report. World Bank.
World Bank. (2022b). Benin - Learning Poverty Brief. World Bank. http://documents.worldbank.org/curated/en/099021407212243534/IDU01dbf45100704f046410bb6f03c4c1cb85588
World Bank. (2022c). Djibouti Gender Landscape (Country Gender Landscape). World Bank. http://documents.worldbank.org/curated/en/099929206302212659/IDU068dce0c7003280435b099f8040232925d37f
World Bank. (2022d). Global Database of Shared Prosperity (9th edition, circa 2014–19). World Bank. https://www.worldbank.org/en/topic/poverty/brief/global-database-of-shared-prosperity
World Bank. (2022e). Macro Poverty Outlook for Benin : April 2022. World Bank. http://documents.worldbank.org/curated/en/099930404182210208/IDU0ef8057e509b5f0432c0b50d00f85b54deb33
World Bank. (2022f). Macro Poverty Outlook for Djibouti : April 2022. World Bank. https://documents.worldbank.org/en/publication/documents-reports/documentdetail/099310104232265208/idu08979c8f809e1604dc70be93050dce6a02a23
World Bank. (2022g). Uganda - Learning Poverty Brief. World Bank. http://documents.worldbank.org/curated/en/099021407212243534/IDU01dbf45100704f046410bb6f03c4c1cb85588
World Bank. (2022h). Uganda Poverty Assessment: Strengthening Resilience to Accelerate Poverty Reduction. World Bank. http://documents.worldbank.org/curated/en/099135006292235162/P17761605286900b10899b0798dcd703d85
World Bank. (2022i). Women, Business and the Law 1971-2022. World Bank. https://wbl.worldbank.org/
Yikii, F., Turyahabwe, N., & Bashaasha, B. (2017). Prevalence of household food insecurity in wetland adjacent areas of Uganda. Agriculture & Food Security, 6(1), 1–12.
Ylipaa, J., Gabrielsson, S., & Jerneck, A. (2019). Climate change adaptation and gender inequality: Insights from rural vietnam. Sustainability (Basel, Switzerland), 11(10), 2805–2805. https://doi.org/10.3390/su11102805

Footnotes

  1. Other official flows, per OECD CRS definition, describe contributions that do not meet the ODA criteria. These can include grants for primarily representational or commercial purposes, contributions having a grant element under the required share of 25% or primarily export-facilitating contributions. See https://doi.org/10.1787/6afef3df-en for a full definition.↩︎

  2. The Balbala area comprises the 4th and 5th district out of the five districts of Djibouti city.↩︎