Hey there,
This is my very first blog post and my first attempt to analyse a dataset post learning python. I have recently joined the Kaggle community as well as Github and slowly finding my way through them!
As an Egyptian working in Finance, I found the Africa Economic, Banking and Systemic Crisis Data quite interesting to investigate!
Now this dataset has a lot of juice to squeeze which I will be posting about in the future but for now I was able to compare North African Currency(in USD) from 1860 – 2014.

The Dataset was clean and needed no work in that area however it displayed the usd exchange rate in the country’s local currency so I had to change the local currency to USD by dividing it by 1.
df['exch_ccy_usd'] = 1/df['exch_usd']
Conclusion
- Tunisia’s currency was able to “outperform” the rest of North African Countries with Egypt being…
View original post 48 more words