It’s not that we humans only take debts to manage our necessities. A country may also take debt to manage its economy. For example, infrastructure spending is one costly ingredient required for a country’s citizens to lead comfortable lives. The World Bank is the organization that provides debt to countries.
In this project, I am going to analyze international debt data collected by The World Bank. The dataset contains information about the amount of debt (in USD) owed by developing countries across several categories. I am going to find the answers to questions like:
What is the total amount of debt that is owed by the countries listed in the dataset?
Which country owns the maximum amount of debt and what does that amount look like?
What is the average amount of debt owed by countries across different debt indicators?
The data used in this project is provided by The World Bank. It contains both national and regional debt statistics for several countries across the globe as recorded from 1970 to 2015.
Project Tasks
The World Bank’s international debt data
Finding the number of distinct countries
Finding out the distinct debt indicators
Totaling the amount of debt owed by the countries
Country with the highest debt
Average amount of debt across indicators
The highest amount of principal repayments
The most common debt indicator
Other viable debt issues and conclusion
1. The World Bank’s international debt data
It’s not that we humans only take debts to manage our necessities. A country may also take debt to manage its economy. For example, infrastructure spending is one costly ingredient required for a country’s citizens to lead comfortable lives. The World Bank is the organization that provides debt to countries.
In this notebook, we are going to analyze international debt data collected by The World Bank. The dataset contains information about the amount of debt (in USD) owed by developing countries across several categories. We are going to find the answers to questions like:
What is the total amount of debt that is owed by the countries listed in the dataset?
Which country owns the maximum amount of debt and what does that amount look like?
What is the average amount of debt owed by countries across different debt indicators?
The first line of code connects us to the international_debt database where the table international_debt is residing. Let’s first SELECTall of the columns from the international_debt table. Also, we’ll limit the output to the first ten rows to keep the output clean.
import pandas as pdimport sqlite3# Load your CSV data into a DataFramedf = pd.read_csv('international_debt.csv')# Create a SQLite databaseconn = sqlite3.connect('international_debt.db')# Write the data to a SQL tabledf.to_sql('international_debt', conn, if_exists='replace', index=False)# Close the connectionconn.close()# Load the SQL extension%load_ext sql# Connect to SQLite database%sql sqlite:///international_debt.db# Execute a SQL query%sql SELECT * FROM international_debt LIMIT 10;
* sqlite:///international_debt.db
Done.
country_name
country_code
indicator_name
indicator_code
debt
Afghanistan
AFG
Disbursements on external debt, long-term (DIS, current US$)
DT.DIS.DLXF.CD
72894453.7
Afghanistan
AFG
Interest payments on external debt, long-term (INT, current US$)
DT.INT.DLXF.CD
53239440.1
Afghanistan
AFG
PPG, bilateral (AMT, current US$)
DT.AMT.BLAT.CD
61739336.9
Afghanistan
AFG
PPG, bilateral (DIS, current US$)
DT.DIS.BLAT.CD
49114729.4
Afghanistan
AFG
PPG, bilateral (INT, current US$)
DT.INT.BLAT.CD
39903620.1
Afghanistan
AFG
PPG, multilateral (AMT, current US$)
DT.AMT.MLAT.CD
39107845.0
Afghanistan
AFG
PPG, multilateral (DIS, current US$)
DT.DIS.MLAT.CD
23779724.3
Afghanistan
AFG
PPG, multilateral (INT, current US$)
DT.INT.MLAT.CD
13335820.0
Afghanistan
AFG
PPG, official creditors (AMT, current US$)
DT.AMT.OFFT.CD
100847181.9
Afghanistan
AFG
PPG, official creditors (DIS, current US$)
DT.DIS.OFFT.CD
72894453.7
2. Finding the number of distinct countries
From the first ten rows, we can see the amount of debt owed by Afghanistan in the different debt indicators. But we do not know the number of different countries we have on the table. There are repetitions in the country names because a country is most likely to have debt in more than one debt indicator.
Without a count of unique countries, we will not be able to perform our statistical analyses holistically. In this section, we are going to extract the number of unique countries present in the table.
%%sqlSELECT COUNT(DISTINCT(country_name)) AS total_distinct_countriesFROM international_debt;
* sqlite:///international_debt.db
Done.
total_distinct_countries
124
3. Finding out the distinct debt indicators
We can see there are a total of 124 countries present on the table. As we saw in the first section, there is a column called indicator_name that briefly specifies the purpose of taking the debt. Just beside that column, there is another column called indicator_code which symbolizes the category of these debts. Knowing about these various debt indicators will help us to understand the areas in which a country can possibly be indebted to.
%%sqlSELECT DISTINCT indicator_code AS distinct_debt_indicatorsFROM international_debtORDER BY distinct_debt_indicators;
* sqlite:///international_debt.db
Done.
distinct_debt_indicators
DT.AMT.BLAT.CD
DT.AMT.DLXF.CD
DT.AMT.DPNG.CD
DT.AMT.MLAT.CD
DT.AMT.OFFT.CD
DT.AMT.PBND.CD
DT.AMT.PCBK.CD
DT.AMT.PROP.CD
DT.AMT.PRVT.CD
DT.DIS.BLAT.CD
DT.DIS.DLXF.CD
DT.DIS.MLAT.CD
DT.DIS.OFFT.CD
DT.DIS.PCBK.CD
DT.DIS.PROP.CD
DT.DIS.PRVT.CD
DT.INT.BLAT.CD
DT.INT.DLXF.CD
DT.INT.DPNG.CD
DT.INT.MLAT.CD
DT.INT.OFFT.CD
DT.INT.PBND.CD
DT.INT.PCBK.CD
DT.INT.PROP.CD
DT.INT.PRVT.CD
4. Totaling the amount of debt owed by the countries
As mentioned earlier, the financial debt of a particular country represents its economic state. But if we were to project this on an overall global scale, how will we approach it?
Let’s switch gears from the debt indicators now and find out the total amount of debt (in USD) that is owed by the different countries. This will give us a sense of how the overall economy of the entire world is holding up.
%%sqlSELECT ROUND(SUM(debt)/1000000, 2) AS total_debtFROM international_debt;
* sqlite:///international_debt.db
Done.
total_debt
3079734.49
5. Country with the highest debt
“Human beings cannot comprehend very large or very small numbers. It would be useful for us to acknowledge that fact.” - Daniel Kahneman. That is more than 3 million USD, an amount which is really hard for us to fathom.
Now that we have the exact total of the amounts of debt owed by several countries, let’s now find out the country that owns the highest amount of debt along with the amount. Note that this debt is the sum of different debts owed by a country across several categories. This will help to understand more about the country in terms of its socio-economic scenarios. We can also find out the category in which the country owns its highest debt. But we will leave that for now.
%%sqlSELECT country_name, SUM(debt) AS total_debtFROM international_debtGROUP BY country_nameORDER BY total_debt descLIMIT 1;
* sqlite:///international_debt.db
Done.
country_name
total_debt
China
285793494734.2
6. Average amount of debt across indicators
So, it was China. A more in-depth breakdown of China’s debts can be found here.
We now have a brief overview of the dataset and a few of its summary statistics. We already have an idea of the different debt indicators in which the countries owe their debts. We can dig even further to find out on an average how much debt a country owes? This will give us a better sense of the distribution of the amount of debt across different indicators.
%%sqlSELECT indicator_code AS debt_indicator, indicator_name, AVG(debt) AS average_debtFROM international_debtGROUP BY debt_indicator, indicator_nameORDER BY average_debt descLIMIT 10;
* sqlite:///international_debt.db
Done.
debt_indicator
indicator_name
average_debt
DT.AMT.DLXF.CD
Principal repayments on external debt, long-term (AMT, current US$)
5904868401.499194
DT.AMT.DPNG.CD
Principal repayments on external debt, private nonguaranteed (PNG) (AMT, current US$)
5161194333.812658
DT.DIS.DLXF.CD
Disbursements on external debt, long-term (DIS, current US$)
2152041216.890244
DT.DIS.OFFT.CD
PPG, official creditors (DIS, current US$)
1958983452.859836
DT.AMT.PRVT.CD
PPG, private creditors (AMT, current US$)
1803694101.9632652
DT.INT.DLXF.CD
Interest payments on external debt, long-term (INT, current US$)
1644024067.6508067
DT.DIS.BLAT.CD
PPG, bilateral (DIS, current US$)
1223139290.39823
DT.INT.DPNG.CD
Interest payments on external debt, private nonguaranteed (PNG) (INT, current US$)
1220410844.421519
DT.AMT.OFFT.CD
PPG, official creditors (AMT, current US$)
1191187963.0830643
DT.AMT.PBND.CD
PPG, bonds (AMT, current US$)
1082623947.6536233
7. The highest amount of principal repayments
We can see that the indicator DT.AMT.DLXF.CD tops the chart of average debt. This category includes repayment of long term debts. Countries take on long-term debt to acquire immediate capital. More information about this category can be found here.
An interesting observation in the above finding is that there is a huge difference in the amounts of the indicators after the second one. This indicates that the first two indicators might be the most severe categories in which the countries owe their debts.
We can investigate this a bit more so as to find out which country owes the highest amount of debt in the category of long term debts (DT.AMT.DLXF.CD). Since not all the countries suffer from the same kind of economic disturbances, this finding will allow us to understand that particular country’s economic condition a bit more specifically.
%%sql SELECT country_name, indicator_nameFROM international_debtWHERE debt = (SELECT MAX(debt) FROM international_debt WHERE indicator_code ='DT.AMT.DLXF.CD');
* sqlite:///international_debt.db
Done.
country_name
indicator_name
China
Principal repayments on external debt, long-term (AMT, current US$)
8. The most common debt indicator
China has the highest amount of debt in the long-term debt (DT.AMT.DLXF.CD) category. This is verified by The World Bank. It is often a good idea to verify our analyses like this since it validates that our investigations are correct.
We saw that long-term debt is the topmost category when it comes to the average amount of debt. But is it the most common indicator in which the countries owe their debt? Let’s find that out.
%%sqlSELECT indicator_code, COUNT(indicator_code) AS indicator_countFROM international_debtGROUP BY indicator_codeORDER BY indicator_count, indicator_code descLIMIT 20;
* sqlite:///international_debt.db
Done.
indicator_code
indicator_count
DT.DIS.PROP.CD
19
DT.DIS.PCBK.CD
51
DT.DIS.PRVT.CD
53
DT.INT.PROP.CD
54
DT.AMT.PROP.CD
54
DT.INT.PBND.CD
69
DT.AMT.PBND.CD
69
DT.INT.DPNG.CD
79
DT.AMT.DPNG.CD
79
DT.INT.PCBK.CD
84
DT.AMT.PCBK.CD
84
DT.INT.PRVT.CD
98
DT.AMT.PRVT.CD
98
DT.DIS.BLAT.CD
113
DT.DIS.MLAT.CD
120
DT.INT.BLAT.CD
122
DT.DIS.OFFT.CD
122
DT.AMT.BLAT.CD
122
DT.DIS.DLXF.CD
123
DT.INT.OFFT.CD
124
9. Other viable debt issues and conclusion
There are a total of six debt indicators in which all the countries listed in our dataset have taken debt. The indicator DT.AMT.DLXF.CD is also there in the list. So, this gives us a clue that all these countries are suffering from a common economic issue. But that is not the end of the story, but just a part of the story.
Let’s change tracks from debt_indicators now and focus on the amount of debt again. Let’s find out the maximum amount of debt that each country has. With this, we will be in a position to identify the other plausible economic issues a country might be going through.
In this notebook, we took a look at debt owed by countries across the globe. We extracted a few summary statistics from the data and unraveled some interesting facts and figures. We also validated our findings to make sure the investigations are correct.
%%sqlSELECT country_name, MAX(debt) AS maximum_debtFROM international_debtGROUP BY country_nameORDER BY maximum_debtLIMIT 10;