I have data set in excel which has not an excellent table format. Here is the sample:
Country Male Female
2010 2011 2012 2013 2014 2010 2011 2012 2013 2014
AFG 182 134 94 87 85 120 150 95 75 92
BLZ 200 250 150 125 45 210 140 125 101 21
I want to read this data in Python and put it into pandas data frame like:
Country Year Male Female
AFG 2010 182 120
...
Is there any way to this in Python/Pandas without manipulating the original data set?
You can fine the sample data set here:
https://expirebox.com/download/173bc0880dd9da56ccff2796aa1274ed.html
Thanks