Last active
April 11, 2017 14:23
-
-
Save RadLikeWhoa/e2807a686b64f19e33469e903774912d to your computer and use it in GitHub Desktop.
Chart Design: Highcharts Native
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="utf-8" /> | |
<title>Chart Design</title> | |
</head> | |
<body> | |
<div id="container"></div> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/highcharts/5.0.10/highcharts.js"></script> | |
<script src="who-life-expectancy-by-country.js"></script> | |
<script> | |
window.data = window.data.filter(d => d.Year === 2015).sort((a, b) => b['Life expectancy at birth'] - a['Life expectancy at birth']) | |
Highcharts.chart('container', { | |
chart: { | |
type: 'bar', | |
height: 3000 | |
}, | |
title: { | |
text: 'Life Expectancy at Birth' | |
}, | |
subtitle: { | |
text: '2015' | |
}, | |
xAxis: { | |
categories: window.data.map(d => d.Country) | |
}, | |
plotOptions: { | |
bar: { | |
dataLabels: { | |
enabled: true | |
} | |
} | |
}, | |
yAxis: { | |
min: 0 | |
}, | |
series: [{ | |
name: 'Countries', | |
data: window.data.map(d => d['Life expectancy at birth']) | |
}] | |
}) | |
</script> | |
</body> | |
</html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
window.data = [ | |
{ | |
"Country": "Afghanistan", | |
"Year": 2015, | |
"Life expectancy at birth": 60.5, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2014, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 61.3, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2013, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2012, | |
"Life expectancy at birth": 59.5, | |
"Female life expectancy at birth": 60.8, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2011, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2010, | |
"Life expectancy at birth": 58.8, | |
"Female life expectancy at birth": 60.1, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2009, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 59.7, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2008, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.3, | |
"Male life expectancy at birth": 57 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2007, | |
"Life expectancy at birth": 57.5, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2006, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 58.5, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2005, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2004, | |
"Life expectancy at birth": 57, | |
"Female life expectancy at birth": 58, | |
"Male life expectancy at birth": 56.1 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2003, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 57.6, | |
"Male life expectancy at birth": 55.8 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2002, | |
"Life expectancy at birth": 56.2, | |
"Female life expectancy at birth": 57.1, | |
"Male life expectancy at birth": 55.4 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2001, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.5, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "Afghanistan", | |
"Year": 2000, | |
"Life expectancy at birth": 54.8, | |
"Female life expectancy at birth": 56.1, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2015, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 75.1 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2014, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2013, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2012, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2011, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2010, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2009, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2008, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2007, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2006, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2005, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2004, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2003, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2002, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2001, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Albania", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2015, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2014, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2013, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2012, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2011, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2010, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2009, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2008, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2007, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2006, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2005, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2004, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2003, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2002, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2001, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Algeria", | |
"Year": 2000, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Andorra", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2015, | |
"Life expectancy at birth": 52.4, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 50.9 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2014, | |
"Life expectancy at birth": 51.7, | |
"Female life expectancy at birth": 53.1, | |
"Male life expectancy at birth": 50.2 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2013, | |
"Life expectancy at birth": 51.1, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 49.7 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2012, | |
"Life expectancy at birth": 50.6, | |
"Female life expectancy at birth": 52, | |
"Male life expectancy at birth": 49.1 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2011, | |
"Life expectancy at birth": 50.1, | |
"Female life expectancy at birth": 51.5, | |
"Male life expectancy at birth": 48.6 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2010, | |
"Life expectancy at birth": 49.6, | |
"Female life expectancy at birth": 51, | |
"Male life expectancy at birth": 48.2 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2009, | |
"Life expectancy at birth": 49.1, | |
"Female life expectancy at birth": 50.5, | |
"Male life expectancy at birth": 47.7 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2008, | |
"Life expectancy at birth": 48.7, | |
"Female life expectancy at birth": 50.1, | |
"Male life expectancy at birth": 47.3 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2007, | |
"Life expectancy at birth": 48.2, | |
"Female life expectancy at birth": 49.6, | |
"Male life expectancy at birth": 46.8 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2006, | |
"Life expectancy at birth": 47.7, | |
"Female life expectancy at birth": 49.1, | |
"Male life expectancy at birth": 46.4 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2005, | |
"Life expectancy at birth": 47.4, | |
"Female life expectancy at birth": 48.8, | |
"Male life expectancy at birth": 46 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2004, | |
"Life expectancy at birth": 47.1, | |
"Female life expectancy at birth": 48.5, | |
"Male life expectancy at birth": 45.6 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2003, | |
"Life expectancy at birth": 46.8, | |
"Female life expectancy at birth": 48.3, | |
"Male life expectancy at birth": 45.4 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2002, | |
"Life expectancy at birth": 46.5, | |
"Female life expectancy at birth": 48, | |
"Male life expectancy at birth": 45 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2001, | |
"Life expectancy at birth": 45.7, | |
"Female life expectancy at birth": 47.4, | |
"Male life expectancy at birth": 44.1 | |
}, | |
{ | |
"Country": "Angola", | |
"Year": 2000, | |
"Life expectancy at birth": 45.3, | |
"Female life expectancy at birth": 46.8, | |
"Male life expectancy at birth": 43.8 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2015, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2014, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2013, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2012, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2011, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2010, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2009, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2008, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2007, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2006, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2005, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2004, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2003, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2002, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2001, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Antigua and Barbuda", | |
"Year": 2000, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2015, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 79.9, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2014, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2013, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2012, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2011, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2010, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2009, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2008, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2007, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2006, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2005, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2004, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2003, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2002, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2001, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Argentina", | |
"Year": 2000, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2015, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2014, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2011, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2010, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2009, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2008, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2006, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2005, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2004, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2003, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2002, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2001, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Armenia", | |
"Year": 2000, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2015, | |
"Life expectancy at birth": 82.8, | |
"Female life expectancy at birth": 84.8, | |
"Male life expectancy at birth": 80.9 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2014, | |
"Life expectancy at birth": 82.7, | |
"Female life expectancy at birth": 84.6, | |
"Male life expectancy at birth": 80.7 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2013, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 84.5, | |
"Male life expectancy at birth": 80.4 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2012, | |
"Life expectancy at birth": 82.3, | |
"Female life expectancy at birth": 84.4, | |
"Male life expectancy at birth": 80.3 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2011, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84.2, | |
"Male life expectancy at birth": 79.9 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2010, | |
"Life expectancy at birth": 81.9, | |
"Female life expectancy at birth": 84.1, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2009, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2008, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2007, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2006, | |
"Life expectancy at birth": 81.2, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2005, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2004, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2003, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 77.8 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2002, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2001, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Australia", | |
"Year": 2000, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2015, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2014, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2013, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2012, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2011, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2010, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2009, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2008, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2007, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2006, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2005, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2004, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2003, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2002, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2001, | |
"Life expectancy at birth": 78.6, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Austria", | |
"Year": 2000, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2015, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2014, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2013, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2012, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2011, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2010, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2009, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2008, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2007, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2006, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2005, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2004, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2003, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 65 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2002, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2001, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 70.5, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Azerbaijan", | |
"Year": 2000, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 63.4 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2015, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2014, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2013, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2012, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2011, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2010, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2009, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2008, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2007, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2006, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2005, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2004, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2003, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2002, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2001, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Bahamas", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2015, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2014, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2013, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2012, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2011, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2010, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2009, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2008, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2007, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2006, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2005, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2004, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2003, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2002, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 74.2 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2001, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Bahrain", | |
"Year": 2000, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2015, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2014, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2013, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 72.3, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2012, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2011, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2010, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2009, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2008, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2007, | |
"Life expectancy at birth": 68.6, | |
"Female life expectancy at birth": 69.5, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2006, | |
"Life expectancy at birth": 68.2, | |
"Female life expectancy at birth": 69.1, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2005, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2004, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 68, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2003, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 67.4, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2002, | |
"Life expectancy at birth": 66.3, | |
"Female life expectancy at birth": 66.9, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2001, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 66.3, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Bangladesh", | |
"Year": 2000, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 65.6, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2015, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2014, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2013, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2012, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2011, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2010, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2009, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2008, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2007, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2006, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2005, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2004, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2003, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2002, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2001, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Barbados", | |
"Year": 2000, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2015, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 66.5 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2014, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2013, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2012, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2011, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2010, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2009, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2008, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2007, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2006, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 63.4 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2005, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2004, | |
"Life expectancy at birth": 68.2, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2003, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2002, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2001, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Belarus", | |
"Year": 2000, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2015, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2014, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2013, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2012, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2011, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2010, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2009, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2008, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2007, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2006, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2005, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2004, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2003, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2002, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2001, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Belgium", | |
"Year": 2000, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2015, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2014, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2013, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2012, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2011, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2010, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2009, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2008, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2007, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2006, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.3, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2005, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2004, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2003, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2002, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2001, | |
"Life expectancy at birth": 68.2, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Belize", | |
"Year": 2000, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2015, | |
"Life expectancy at birth": 60, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 58.8 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2014, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 60.7, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2013, | |
"Life expectancy at birth": 59.5, | |
"Female life expectancy at birth": 60.6, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2012, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2011, | |
"Life expectancy at birth": 59.1, | |
"Female life expectancy at birth": 60.2, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2010, | |
"Life expectancy at birth": 58.7, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2009, | |
"Life expectancy at birth": 58.4, | |
"Female life expectancy at birth": 59.5, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2008, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2007, | |
"Life expectancy at birth": 57.1, | |
"Female life expectancy at birth": 58.2, | |
"Male life expectancy at birth": 56 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2006, | |
"Life expectancy at birth": 56.8, | |
"Female life expectancy at birth": 57.9, | |
"Male life expectancy at birth": 55.7 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2005, | |
"Life expectancy at birth": 56.5, | |
"Female life expectancy at birth": 57.6, | |
"Male life expectancy at birth": 55.3 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2004, | |
"Life expectancy at birth": 56.1, | |
"Female life expectancy at birth": 57.3, | |
"Male life expectancy at birth": 54.9 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2003, | |
"Life expectancy at birth": 55.8, | |
"Female life expectancy at birth": 57, | |
"Male life expectancy at birth": 54.6 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2002, | |
"Life expectancy at birth": 55.6, | |
"Female life expectancy at birth": 56.8, | |
"Male life expectancy at birth": 54.4 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2001, | |
"Life expectancy at birth": 55.5, | |
"Female life expectancy at birth": 56.7, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "Benin", | |
"Year": 2000, | |
"Life expectancy at birth": 55.4, | |
"Female life expectancy at birth": 56.6, | |
"Male life expectancy at birth": 54 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2015, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2014, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2013, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 69.3, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2012, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 68.9, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2011, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2010, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2009, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 67.7, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2008, | |
"Life expectancy at birth": 67, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2007, | |
"Life expectancy at birth": 66.5, | |
"Female life expectancy at birth": 66.8, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2006, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 66.1, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2005, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2004, | |
"Life expectancy at birth": 64.2, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2003, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 63.4, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2002, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 62.6, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2001, | |
"Life expectancy at birth": 61.7, | |
"Female life expectancy at birth": 61.8, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Bhutan", | |
"Year": 2000, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 60 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2015, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2014, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2013, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2012, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2011, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2010, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2009, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2008, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 65.2 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2007, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 69.1, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2006, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2005, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 67.8, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2004, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 63 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2003, | |
"Life expectancy at birth": 64.5, | |
"Female life expectancy at birth": 66.6, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2002, | |
"Life expectancy at birth": 63.9, | |
"Female life expectancy at birth": 65.9, | |
"Male life expectancy at birth": 61.9 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2001, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 61.4 | |
}, | |
{ | |
"Country": "Bolivia (Plurinational State of)", | |
"Year": 2000, | |
"Life expectancy at birth": 62.6, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 60.8 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2015, | |
"Life expectancy at birth": 77.4, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2014, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2013, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 79.4, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2012, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 74.4 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2011, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 74.4 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2010, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2009, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2008, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2007, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2006, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2005, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2004, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2003, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2002, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2001, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Bosnia and Herzegovina", | |
"Year": 2000, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2015, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 68.1, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2014, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 67.7, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2013, | |
"Life expectancy at birth": 64.2, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 61.5 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2012, | |
"Life expectancy at birth": 63.4, | |
"Female life expectancy at birth": 65.9, | |
"Male life expectancy at birth": 61 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2011, | |
"Life expectancy at birth": 62.2, | |
"Female life expectancy at birth": 64.8, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2010, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 63.7, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2009, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2008, | |
"Life expectancy at birth": 57.5, | |
"Female life expectancy at birth": 58.2, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2007, | |
"Life expectancy at birth": 56.9, | |
"Female life expectancy at birth": 57.6, | |
"Male life expectancy at birth": 56.2 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2006, | |
"Life expectancy at birth": 54.8, | |
"Female life expectancy at birth": 55.2, | |
"Male life expectancy at birth": 54.3 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2005, | |
"Life expectancy at birth": 51.7, | |
"Female life expectancy at birth": 51.8, | |
"Male life expectancy at birth": 51.5 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2004, | |
"Life expectancy at birth": 48.1, | |
"Female life expectancy at birth": 47.9, | |
"Male life expectancy at birth": 48.3 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2003, | |
"Life expectancy at birth": 46.4, | |
"Female life expectancy at birth": 46, | |
"Male life expectancy at birth": 46.7 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2002, | |
"Life expectancy at birth": 46, | |
"Female life expectancy at birth": 45.7, | |
"Male life expectancy at birth": 46.3 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2001, | |
"Life expectancy at birth": 46.7, | |
"Female life expectancy at birth": 46.4, | |
"Male life expectancy at birth": 46.9 | |
}, | |
{ | |
"Country": "Botswana", | |
"Year": 2000, | |
"Life expectancy at birth": 47.8, | |
"Female life expectancy at birth": 47.7, | |
"Male life expectancy at birth": 47.9 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2015, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2014, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2013, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2012, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2011, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2010, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2009, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2008, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2007, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2006, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2005, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2004, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2003, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2002, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2001, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Brazil", | |
"Year": 2000, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2015, | |
"Life expectancy at birth": 77.7, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2014, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2013, | |
"Life expectancy at birth": 77.1, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2012, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2011, | |
"Life expectancy at birth": 77.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2010, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2009, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2008, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2007, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2006, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2005, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2004, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2003, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2002, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2001, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Brunei Darussalam", | |
"Year": 2000, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2015, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2014, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2013, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2012, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2011, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2010, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2009, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2008, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2007, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2006, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2005, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2004, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2003, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2002, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2001, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Bulgaria", | |
"Year": 2000, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2015, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 59.1 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2014, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.1, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2013, | |
"Life expectancy at birth": 59, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2012, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 59.3, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2011, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2010, | |
"Life expectancy at birth": 57.5, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2009, | |
"Life expectancy at birth": 56.9, | |
"Female life expectancy at birth": 57.7, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2008, | |
"Life expectancy at birth": 56.1, | |
"Female life expectancy at birth": 57, | |
"Male life expectancy at birth": 55.1 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2007, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.2, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2006, | |
"Life expectancy at birth": 54.3, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 53.2 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2005, | |
"Life expectancy at birth": 53.3, | |
"Female life expectancy at birth": 54.3, | |
"Male life expectancy at birth": 52.3 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2004, | |
"Life expectancy at birth": 52.4, | |
"Female life expectancy at birth": 53.4, | |
"Male life expectancy at birth": 51.3 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2003, | |
"Life expectancy at birth": 51.6, | |
"Female life expectancy at birth": 52.6, | |
"Male life expectancy at birth": 50.5 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2002, | |
"Life expectancy at birth": 51, | |
"Female life expectancy at birth": 52.1, | |
"Male life expectancy at birth": 49.9 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2001, | |
"Life expectancy at birth": 50.6, | |
"Female life expectancy at birth": 51.7, | |
"Male life expectancy at birth": 49.3 | |
}, | |
{ | |
"Country": "Burkina Faso", | |
"Year": 2000, | |
"Life expectancy at birth": 50.1, | |
"Female life expectancy at birth": 51.3, | |
"Male life expectancy at birth": 48.8 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2015, | |
"Life expectancy at birth": 59.6, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2014, | |
"Life expectancy at birth": 59.1, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2013, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2012, | |
"Life expectancy at birth": 58, | |
"Female life expectancy at birth": 59.8, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2011, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 59.2, | |
"Male life expectancy at birth": 55.7 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2010, | |
"Life expectancy at birth": 56.8, | |
"Female life expectancy at birth": 58.5, | |
"Male life expectancy at birth": 55.1 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2009, | |
"Life expectancy at birth": 56.2, | |
"Female life expectancy at birth": 57.9, | |
"Male life expectancy at birth": 54.5 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2008, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 57.1, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2007, | |
"Life expectancy at birth": 54.8, | |
"Female life expectancy at birth": 56.4, | |
"Male life expectancy at birth": 53.1 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2006, | |
"Life expectancy at birth": 54.1, | |
"Female life expectancy at birth": 55.8, | |
"Male life expectancy at birth": 52.4 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2005, | |
"Life expectancy at birth": 53.4, | |
"Female life expectancy at birth": 55.1, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2004, | |
"Life expectancy at birth": 52.6, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 50.9 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2003, | |
"Life expectancy at birth": 51.9, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 50 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2002, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 53.5, | |
"Male life expectancy at birth": 49.5 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2001, | |
"Life expectancy at birth": 51.3, | |
"Female life expectancy at birth": 53.3, | |
"Male life expectancy at birth": 49.3 | |
}, | |
{ | |
"Country": "Burundi", | |
"Year": 2000, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 48.6 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2015, | |
"Life expectancy at birth": 53.3, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 52.3 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2014, | |
"Life expectancy at birth": 52.8, | |
"Female life expectancy at birth": 53.7, | |
"Male life expectancy at birth": 51.9 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2013, | |
"Life expectancy at birth": 52.3, | |
"Female life expectancy at birth": 53.3, | |
"Male life expectancy at birth": 51.5 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2012, | |
"Life expectancy at birth": 52, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 51.1 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2011, | |
"Life expectancy at birth": 51.7, | |
"Female life expectancy at birth": 52.8, | |
"Male life expectancy at birth": 50.7 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2010, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 52.8, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2009, | |
"Life expectancy at birth": 51, | |
"Female life expectancy at birth": 52.3, | |
"Male life expectancy at birth": 49.8 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2008, | |
"Life expectancy at birth": 50.4, | |
"Female life expectancy at birth": 51.8, | |
"Male life expectancy at birth": 49.2 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2007, | |
"Life expectancy at birth": 49.9, | |
"Female life expectancy at birth": 51.3, | |
"Male life expectancy at birth": 48.8 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2006, | |
"Life expectancy at birth": 49.4, | |
"Female life expectancy at birth": 50.7, | |
"Male life expectancy at birth": 48.3 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2005, | |
"Life expectancy at birth": 48.7, | |
"Female life expectancy at birth": 49.8, | |
"Male life expectancy at birth": 47.7 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2004, | |
"Life expectancy at birth": 48.2, | |
"Female life expectancy at birth": 49.3, | |
"Male life expectancy at birth": 47.3 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2003, | |
"Life expectancy at birth": 48, | |
"Female life expectancy at birth": 49.1, | |
"Male life expectancy at birth": 47 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2002, | |
"Life expectancy at birth": 47.7, | |
"Female life expectancy at birth": 48.9, | |
"Male life expectancy at birth": 46.7 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2001, | |
"Life expectancy at birth": 47.8, | |
"Female life expectancy at birth": 48.9, | |
"Male life expectancy at birth": 46.9 | |
}, | |
{ | |
"Country": "Côte d'Ivoire", | |
"Year": 2000, | |
"Life expectancy at birth": 47.9, | |
"Female life expectancy at birth": 49, | |
"Male life expectancy at birth": 47 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2015, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2014, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2013, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2012, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2011, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2010, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2009, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2008, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2007, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2006, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2005, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2004, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2003, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2002, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2001, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Cabo Verde", | |
"Year": 2000, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2015, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2014, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2013, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2012, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 69.3, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2011, | |
"Life expectancy at birth": 67, | |
"Female life expectancy at birth": 68.9, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2010, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2009, | |
"Life expectancy at birth": 66.1, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2008, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 67.8, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2007, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2006, | |
"Life expectancy at birth": 64.1, | |
"Female life expectancy at birth": 66.4, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2005, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2004, | |
"Life expectancy at birth": 61.5, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2003, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 62.7, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2002, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 61.8, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2001, | |
"Life expectancy at birth": 58.5, | |
"Female life expectancy at birth": 60.8, | |
"Male life expectancy at birth": 56 | |
}, | |
{ | |
"Country": "Cambodia", | |
"Year": 2000, | |
"Life expectancy at birth": 57.7, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 55.3 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2015, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2014, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 55 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2013, | |
"Life expectancy at birth": 56.4, | |
"Female life expectancy at birth": 58.1, | |
"Male life expectancy at birth": 54.8 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2012, | |
"Life expectancy at birth": 55.9, | |
"Female life expectancy at birth": 57.2, | |
"Male life expectancy at birth": 54.8 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2011, | |
"Life expectancy at birth": 55.6, | |
"Female life expectancy at birth": 56.7, | |
"Male life expectancy at birth": 54.4 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2010, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.4, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2009, | |
"Life expectancy at birth": 54.8, | |
"Female life expectancy at birth": 56, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2008, | |
"Life expectancy at birth": 54.2, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 53.1 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2007, | |
"Life expectancy at birth": 53.6, | |
"Female life expectancy at birth": 54.6, | |
"Male life expectancy at birth": 52.5 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2006, | |
"Life expectancy at birth": 53.3, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 52.2 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2005, | |
"Life expectancy at birth": 52.8, | |
"Female life expectancy at birth": 53.9, | |
"Male life expectancy at birth": 51.8 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2004, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53.1, | |
"Male life expectancy at birth": 51.1 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2003, | |
"Life expectancy at birth": 51.8, | |
"Female life expectancy at birth": 52.8, | |
"Male life expectancy at birth": 50.8 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2002, | |
"Life expectancy at birth": 51.6, | |
"Female life expectancy at birth": 52.7, | |
"Male life expectancy at birth": 50.6 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2001, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 52.6, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Cameroon", | |
"Year": 2000, | |
"Life expectancy at birth": 51.4, | |
"Female life expectancy at birth": 52.6, | |
"Male life expectancy at birth": 50.2 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2015, | |
"Life expectancy at birth": 82.2, | |
"Female life expectancy at birth": 84.1, | |
"Male life expectancy at birth": 80.2 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2014, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2013, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 79.7 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2012, | |
"Life expectancy at birth": 81.6, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2011, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2010, | |
"Life expectancy at birth": 81.2, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2009, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 78.7 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2008, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2007, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2006, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2005, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2004, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2003, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2002, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2001, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Canada", | |
"Year": 2000, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2015, | |
"Life expectancy at birth": 52.5, | |
"Female life expectancy at birth": 54.1, | |
"Male life expectancy at birth": 50.9 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2014, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 49.1 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2013, | |
"Life expectancy at birth": 49.9, | |
"Female life expectancy at birth": 51.8, | |
"Male life expectancy at birth": 48.1 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2012, | |
"Life expectancy at birth": 50.3, | |
"Female life expectancy at birth": 51.6, | |
"Male life expectancy at birth": 49 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2011, | |
"Life expectancy at birth": 49.8, | |
"Female life expectancy at birth": 51, | |
"Male life expectancy at birth": 48.4 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2010, | |
"Life expectancy at birth": 49.2, | |
"Female life expectancy at birth": 50.5, | |
"Male life expectancy at birth": 47.9 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2009, | |
"Life expectancy at birth": 48.6, | |
"Female life expectancy at birth": 49.9, | |
"Male life expectancy at birth": 47.2 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2008, | |
"Life expectancy at birth": 47.6, | |
"Female life expectancy at birth": 48.8, | |
"Male life expectancy at birth": 46.4 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2007, | |
"Life expectancy at birth": 46.8, | |
"Female life expectancy at birth": 47.9, | |
"Male life expectancy at birth": 45.7 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2006, | |
"Life expectancy at birth": 46.3, | |
"Female life expectancy at birth": 47.3, | |
"Male life expectancy at birth": 45.2 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2005, | |
"Life expectancy at birth": 45.9, | |
"Female life expectancy at birth": 46.8, | |
"Male life expectancy at birth": 45 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2004, | |
"Life expectancy at birth": 45.7, | |
"Female life expectancy at birth": 46.7, | |
"Male life expectancy at birth": 44.8 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2003, | |
"Life expectancy at birth": 45.7, | |
"Female life expectancy at birth": 46.6, | |
"Male life expectancy at birth": 44.7 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2002, | |
"Life expectancy at birth": 45.6, | |
"Female life expectancy at birth": 46.6, | |
"Male life expectancy at birth": 44.5 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2001, | |
"Life expectancy at birth": 45.6, | |
"Female life expectancy at birth": 46.7, | |
"Male life expectancy at birth": 44.4 | |
}, | |
{ | |
"Country": "Central African Republic", | |
"Year": 2000, | |
"Life expectancy at birth": 46, | |
"Female life expectancy at birth": 47.1, | |
"Male life expectancy at birth": 44.9 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2015, | |
"Life expectancy at birth": 53.1, | |
"Female life expectancy at birth": 54.5, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2014, | |
"Life expectancy at birth": 52.6, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 51.3 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2013, | |
"Life expectancy at birth": 52.2, | |
"Female life expectancy at birth": 53.6, | |
"Male life expectancy at birth": 50.8 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2012, | |
"Life expectancy at birth": 51.8, | |
"Female life expectancy at birth": 53.2, | |
"Male life expectancy at birth": 50.5 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2011, | |
"Life expectancy at birth": 51.6, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2010, | |
"Life expectancy at birth": 51.2, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 50 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2009, | |
"Life expectancy at birth": 50.7, | |
"Female life expectancy at birth": 51.9, | |
"Male life expectancy at birth": 49.6 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2008, | |
"Life expectancy at birth": 49.6, | |
"Female life expectancy at birth": 50.8, | |
"Male life expectancy at birth": 48.5 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2007, | |
"Life expectancy at birth": 49.4, | |
"Female life expectancy at birth": 50.5, | |
"Male life expectancy at birth": 48.4 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2006, | |
"Life expectancy at birth": 48.5, | |
"Female life expectancy at birth": 49.8, | |
"Male life expectancy at birth": 47.2 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2005, | |
"Life expectancy at birth": 48.6, | |
"Female life expectancy at birth": 49.7, | |
"Male life expectancy at birth": 47.6 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2004, | |
"Life expectancy at birth": 48.5, | |
"Female life expectancy at birth": 49.6, | |
"Male life expectancy at birth": 47.4 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2003, | |
"Life expectancy at birth": 48.4, | |
"Female life expectancy at birth": 49.5, | |
"Male life expectancy at birth": 47.2 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2002, | |
"Life expectancy at birth": 48.1, | |
"Female life expectancy at birth": 49.4, | |
"Male life expectancy at birth": 46.9 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2001, | |
"Life expectancy at birth": 48, | |
"Female life expectancy at birth": 49.3, | |
"Male life expectancy at birth": 46.8 | |
}, | |
{ | |
"Country": "Chad", | |
"Year": 2000, | |
"Life expectancy at birth": 47.6, | |
"Female life expectancy at birth": 49.1, | |
"Male life expectancy at birth": 46.2 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2015, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2014, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2013, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2012, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2011, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2010, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2009, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2008, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2007, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2006, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2005, | |
"Life expectancy at birth": 78.4, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2004, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2003, | |
"Life expectancy at birth": 77.9, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2002, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2001, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "Chile", | |
"Year": 2000, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 74.2 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2015, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2014, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 74.4 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2013, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2012, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2011, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2010, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2009, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2008, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2007, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2006, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2005, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2004, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2003, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2002, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2001, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "China", | |
"Year": 2000, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2015, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2014, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2011, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2010, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2009, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2008, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2005, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2004, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2003, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2002, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2001, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Colombia", | |
"Year": 2000, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2015, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 61.9 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2014, | |
"Life expectancy at birth": 63.2, | |
"Female life expectancy at birth": 64.9, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2013, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2012, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2011, | |
"Life expectancy at birth": 62.2, | |
"Female life expectancy at birth": 63.8, | |
"Male life expectancy at birth": 60.6 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2010, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 63.4, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2009, | |
"Life expectancy at birth": 61.3, | |
"Female life expectancy at birth": 63, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2008, | |
"Life expectancy at birth": 61, | |
"Female life expectancy at birth": 62.6, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2007, | |
"Life expectancy at birth": 60.6, | |
"Female life expectancy at birth": 62.3, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2006, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2005, | |
"Life expectancy at birth": 60, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 58.4 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2004, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 58.2 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2003, | |
"Life expectancy at birth": 59.6, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2002, | |
"Life expectancy at birth": 59.5, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2001, | |
"Life expectancy at birth": 59.5, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Comoros", | |
"Year": 2000, | |
"Life expectancy at birth": 59.5, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2015, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 66.3, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2014, | |
"Life expectancy at birth": 64.2, | |
"Female life expectancy at birth": 65.6, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2013, | |
"Life expectancy at birth": 63.9, | |
"Female life expectancy at birth": 65.4, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2012, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2011, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2010, | |
"Life expectancy at birth": 62, | |
"Female life expectancy at birth": 63.2, | |
"Male life expectancy at birth": 60.7 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2009, | |
"Life expectancy at birth": 60.8, | |
"Female life expectancy at birth": 62.1, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2008, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 60.6, | |
"Male life expectancy at birth": 58.2 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2007, | |
"Life expectancy at birth": 58.2, | |
"Female life expectancy at birth": 59.3, | |
"Male life expectancy at birth": 57 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2006, | |
"Life expectancy at birth": 56.9, | |
"Female life expectancy at birth": 58.1, | |
"Male life expectancy at birth": 55.8 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2005, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.4, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2004, | |
"Life expectancy at birth": 54.1, | |
"Female life expectancy at birth": 55.2, | |
"Male life expectancy at birth": 53.1 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2003, | |
"Life expectancy at birth": 53.2, | |
"Female life expectancy at birth": 54.3, | |
"Male life expectancy at birth": 52.2 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2002, | |
"Life expectancy at birth": 52.6, | |
"Female life expectancy at birth": 53.7, | |
"Male life expectancy at birth": 51.4 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2001, | |
"Life expectancy at birth": 52.7, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Congo", | |
"Year": 2000, | |
"Life expectancy at birth": 52.9, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 51.9 | |
}, | |
{ | |
"Country": "Cook Islands", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2015, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2014, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2013, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2012, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2011, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2010, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2009, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2008, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2007, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2006, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2005, | |
"Life expectancy at birth": 78.6, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2004, | |
"Life expectancy at birth": 77.7, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2003, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2002, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2001, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Costa Rica", | |
"Year": 2000, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2015, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2014, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 74.4 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2013, | |
"Life expectancy at birth": 77.7, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2012, | |
"Life expectancy at birth": 77.1, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2011, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2010, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2009, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2008, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2007, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2006, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2005, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2004, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2003, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2002, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2001, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Croatia", | |
"Year": 2000, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2015, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2014, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2013, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2012, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2011, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2010, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2009, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2008, | |
"Life expectancy at birth": 77.9, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2007, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2006, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2005, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 75.1 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2004, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 79.4, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2003, | |
"Life expectancy at birth": 77.4, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2002, | |
"Life expectancy at birth": 77.7, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2001, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Cuba", | |
"Year": 2000, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2015, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2014, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2013, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2012, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77.8 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2011, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2010, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2009, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2008, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2007, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2006, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2005, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2004, | |
"Life expectancy at birth": 78.6, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2003, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2002, | |
"Life expectancy at birth": 78.4, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2001, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Cyprus", | |
"Year": 2000, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2015, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2014, | |
"Life expectancy at birth": 78.6, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2013, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2012, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2011, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2010, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2009, | |
"Life expectancy at birth": 77.1, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2008, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2007, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 79.9, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2006, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2005, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2004, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2003, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2002, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2001, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Czech Republic", | |
"Year": 2000, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2015, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2014, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73.8, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2013, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2012, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2011, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2010, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2009, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2008, | |
"Life expectancy at birth": 68.6, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2007, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2006, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2005, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2004, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2003, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2002, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2001, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Democratic People's Republic of Korea", | |
"Year": 2000, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 69.3, | |
"Male life expectancy at birth": 61.1 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2015, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 61.5, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2014, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.9, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2013, | |
"Life expectancy at birth": 58.8, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2012, | |
"Life expectancy at birth": 58.3, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2011, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.5, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2010, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 59, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2009, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2008, | |
"Life expectancy at birth": 56.3, | |
"Female life expectancy at birth": 57.9, | |
"Male life expectancy at birth": 54.7 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2007, | |
"Life expectancy at birth": 55.7, | |
"Female life expectancy at birth": 57.3, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2006, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56.6, | |
"Male life expectancy at birth": 53.4 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2005, | |
"Life expectancy at birth": 54.3, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 52.7 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2004, | |
"Life expectancy at birth": 53.5, | |
"Female life expectancy at birth": 55.1, | |
"Male life expectancy at birth": 52 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2003, | |
"Life expectancy at birth": 52.8, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 51.1 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2002, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 50.4 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2001, | |
"Life expectancy at birth": 51.8, | |
"Female life expectancy at birth": 53.3, | |
"Male life expectancy at birth": 50.4 | |
}, | |
{ | |
"Country": "Democratic Republic of the Congo", | |
"Year": 2000, | |
"Life expectancy at birth": 51.3, | |
"Female life expectancy at birth": 52.7, | |
"Male life expectancy at birth": 49.8 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2015, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2014, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2013, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2012, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2011, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2010, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2009, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2008, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2007, | |
"Life expectancy at birth": 78.4, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2006, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2005, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2004, | |
"Life expectancy at birth": 77.7, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2003, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2002, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2001, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Denmark", | |
"Year": 2000, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2015, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2014, | |
"Life expectancy at birth": 63, | |
"Female life expectancy at birth": 64.7, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2013, | |
"Life expectancy at birth": 62.7, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 61.1 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2012, | |
"Life expectancy at birth": 62.2, | |
"Female life expectancy at birth": 63.9, | |
"Male life expectancy at birth": 60.6 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2011, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 63.4, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2010, | |
"Life expectancy at birth": 61.3, | |
"Female life expectancy at birth": 63, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2009, | |
"Life expectancy at birth": 60.9, | |
"Female life expectancy at birth": 62.5, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2008, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2007, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 58.2 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2006, | |
"Life expectancy at birth": 59.1, | |
"Female life expectancy at birth": 60.7, | |
"Male life expectancy at birth": 57.6 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2005, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 60.2, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2004, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.7, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2003, | |
"Life expectancy at birth": 58, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2002, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2001, | |
"Life expectancy at birth": 57.7, | |
"Female life expectancy at birth": 59.4, | |
"Male life expectancy at birth": 56 | |
}, | |
{ | |
"Country": "Djibouti", | |
"Year": 2000, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 59.2, | |
"Male life expectancy at birth": 55.7 | |
}, | |
{ | |
"Country": "Dominica", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2015, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2014, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2013, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2012, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2011, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2010, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2009, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2008, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2007, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2006, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2005, | |
"Life expectancy at birth": 69.7, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2004, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2003, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2002, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2001, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Dominican Republic", | |
"Year": 2000, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2015, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2014, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2013, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2012, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2011, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2010, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2009, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2008, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2007, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2006, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2005, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2004, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2003, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2002, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2001, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Ecuador", | |
"Year": 2000, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2015, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2014, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2013, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2012, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2011, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2010, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2009, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2008, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2007, | |
"Life expectancy at birth": 69.7, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2006, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2005, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2004, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2003, | |
"Life expectancy at birth": 68.6, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2002, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2001, | |
"Life expectancy at birth": 68.6, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Egypt", | |
"Year": 2000, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2015, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2014, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2013, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2012, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2011, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2010, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2009, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2008, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2007, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 66.5 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2006, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2005, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 65.2 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2004, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2003, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2002, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2001, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "El Salvador", | |
"Year": 2000, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2015, | |
"Life expectancy at birth": 58.2, | |
"Female life expectancy at birth": 60, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2014, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2013, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 56.2 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2012, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58, | |
"Male life expectancy at birth": 55.6 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2011, | |
"Life expectancy at birth": 56.2, | |
"Female life expectancy at birth": 57.4, | |
"Male life expectancy at birth": 55.1 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2010, | |
"Life expectancy at birth": 56.1, | |
"Female life expectancy at birth": 57.3, | |
"Male life expectancy at birth": 54.9 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2009, | |
"Life expectancy at birth": 55.7, | |
"Female life expectancy at birth": 57, | |
"Male life expectancy at birth": 54.5 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2008, | |
"Life expectancy at birth": 55.4, | |
"Female life expectancy at birth": 56.8, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2007, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56.4, | |
"Male life expectancy at birth": 53.8 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2006, | |
"Life expectancy at birth": 54.8, | |
"Female life expectancy at birth": 56.2, | |
"Male life expectancy at birth": 53.5 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2005, | |
"Life expectancy at birth": 54.4, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 53.2 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2004, | |
"Life expectancy at birth": 54.1, | |
"Female life expectancy at birth": 55.5, | |
"Male life expectancy at birth": 52.8 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2003, | |
"Life expectancy at birth": 53.8, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 52.5 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2002, | |
"Life expectancy at birth": 53.5, | |
"Female life expectancy at birth": 55, | |
"Male life expectancy at birth": 52.1 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2001, | |
"Life expectancy at birth": 53.1, | |
"Female life expectancy at birth": 54.6, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Equatorial Guinea", | |
"Year": 2000, | |
"Life expectancy at birth": 52.7, | |
"Female life expectancy at birth": 54.3, | |
"Male life expectancy at birth": 51.2 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2015, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 67, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2014, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 66.6, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2013, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 66.2, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2012, | |
"Life expectancy at birth": 63.6, | |
"Female life expectancy at birth": 65.8, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2011, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2010, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2009, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2008, | |
"Life expectancy at birth": 60.7, | |
"Female life expectancy at birth": 63.4, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2007, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 62.7, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2006, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 62.1, | |
"Male life expectancy at birth": 57.4 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2005, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 61.5, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2004, | |
"Life expectancy at birth": 59.1, | |
"Female life expectancy at birth": 61, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2003, | |
"Life expectancy at birth": 58.8, | |
"Female life expectancy at birth": 60.6, | |
"Male life expectancy at birth": 56.9 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2002, | |
"Life expectancy at birth": 58.5, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2001, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Eritrea", | |
"Year": 2000, | |
"Life expectancy at birth": 45.3, | |
"Female life expectancy at birth": 52.7, | |
"Male life expectancy at birth": 39.5 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2015, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2014, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2013, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2012, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2011, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2010, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2009, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 79.9, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2008, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2007, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2006, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2005, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2004, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2003, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 66.5 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2002, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2001, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Estonia", | |
"Year": 2000, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2015, | |
"Life expectancy at birth": 64.8, | |
"Female life expectancy at birth": 66.8, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2014, | |
"Life expectancy at birth": 64.2, | |
"Female life expectancy at birth": 66.1, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2013, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 65.7, | |
"Male life expectancy at birth": 61.9 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2012, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 61.4 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2011, | |
"Life expectancy at birth": 62.6, | |
"Female life expectancy at birth": 64.5, | |
"Male life expectancy at birth": 60.8 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2010, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 63.6, | |
"Male life expectancy at birth": 60.1 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2009, | |
"Life expectancy at birth": 60.8, | |
"Female life expectancy at birth": 62.5, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2008, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 61.3, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2007, | |
"Life expectancy at birth": 58.5, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2006, | |
"Life expectancy at birth": 57.2, | |
"Female life expectancy at birth": 58.5, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2005, | |
"Life expectancy at birth": 56, | |
"Female life expectancy at birth": 57.4, | |
"Male life expectancy at birth": 54.8 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2004, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56.3, | |
"Male life expectancy at birth": 53.6 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2003, | |
"Life expectancy at birth": 54, | |
"Female life expectancy at birth": 55.4, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2002, | |
"Life expectancy at birth": 53.2, | |
"Female life expectancy at birth": 54.7, | |
"Male life expectancy at birth": 51.8 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2001, | |
"Life expectancy at birth": 52.5, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 51 | |
}, | |
{ | |
"Country": "Ethiopia", | |
"Year": 2000, | |
"Life expectancy at birth": 51.2, | |
"Female life expectancy at birth": 53.1, | |
"Male life expectancy at birth": 49.3 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2015, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2014, | |
"Life expectancy at birth": 69.7, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2013, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2012, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2011, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 66.5 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2010, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2009, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2008, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2007, | |
"Life expectancy at birth": 68.6, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2006, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2005, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2004, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2003, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2002, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2001, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 70.5, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Fiji", | |
"Year": 2000, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 65.2 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2015, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2014, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2013, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2012, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2011, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2010, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2009, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2008, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2007, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2006, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2005, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2004, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2003, | |
"Life expectancy at birth": 78.4, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2002, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2001, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Finland", | |
"Year": 2000, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2015, | |
"Life expectancy at birth": 82.4, | |
"Female life expectancy at birth": 85.4, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2014, | |
"Life expectancy at birth": 82.2, | |
"Female life expectancy at birth": 85.2, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2013, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 85, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2012, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 84.6, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2011, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 84.9, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2010, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 84.6, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2009, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 84.4, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2008, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 84.3, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2007, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 84.4, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2006, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 84.1, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2005, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2004, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2003, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2002, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2001, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "France", | |
"Year": 2000, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2015, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2014, | |
"Life expectancy at birth": 65.5, | |
"Female life expectancy at birth": 66.6, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2013, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2012, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 63.5, | |
"Male life expectancy at birth": 63.5 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2011, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 62.6, | |
"Male life expectancy at birth": 62.9 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2010, | |
"Life expectancy at birth": 62.3, | |
"Female life expectancy at birth": 62.1, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2009, | |
"Life expectancy at birth": 61.7, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2008, | |
"Life expectancy at birth": 61.6, | |
"Female life expectancy at birth": 61.3, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2007, | |
"Life expectancy at birth": 61.6, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2006, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 61.4 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2005, | |
"Life expectancy at birth": 60.5, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2004, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 59.7, | |
"Male life expectancy at birth": 59.7 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2003, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 59.7, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2002, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2001, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 60.2, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Gabon", | |
"Year": 2000, | |
"Life expectancy at birth": 60.1, | |
"Female life expectancy at birth": 60.7, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2015, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 62.5, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2014, | |
"Life expectancy at birth": 60.8, | |
"Female life expectancy at birth": 62.1, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2013, | |
"Life expectancy at birth": 60.6, | |
"Female life expectancy at birth": 62, | |
"Male life expectancy at birth": 59.2 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2012, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2011, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 61, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2010, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2009, | |
"Life expectancy at birth": 59, | |
"Female life expectancy at birth": 60.2, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2008, | |
"Life expectancy at birth": 58.7, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2007, | |
"Life expectancy at birth": 58.5, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 57.4 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2006, | |
"Life expectancy at birth": 58.2, | |
"Female life expectancy at birth": 59.3, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2005, | |
"Life expectancy at birth": 57.7, | |
"Female life expectancy at birth": 58.9, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2004, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 58.5, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2003, | |
"Life expectancy at birth": 57, | |
"Female life expectancy at birth": 58.1, | |
"Male life expectancy at birth": 56 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2002, | |
"Life expectancy at birth": 56.6, | |
"Female life expectancy at birth": 57.8, | |
"Male life expectancy at birth": 55.6 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2001, | |
"Life expectancy at birth": 56.3, | |
"Female life expectancy at birth": 57.5, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "Gambia", | |
"Year": 2000, | |
"Life expectancy at birth": 55.9, | |
"Female life expectancy at birth": 57.1, | |
"Male life expectancy at birth": 54.8 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2015, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2014, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2011, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2010, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2009, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2008, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2007, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2005, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2004, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2003, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2002, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2001, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Georgia", | |
"Year": 2000, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2015, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 78.7 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2014, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2013, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2012, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2011, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2010, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2009, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2008, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2007, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2006, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2005, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2004, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2003, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2002, | |
"Life expectancy at birth": 78.4, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2001, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "Germany", | |
"Year": 2000, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2015, | |
"Life expectancy at birth": 62.4, | |
"Female life expectancy at birth": 63.9, | |
"Male life expectancy at birth": 61 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2014, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 63.6, | |
"Male life expectancy at birth": 60.7 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2013, | |
"Life expectancy at birth": 61.9, | |
"Female life expectancy at birth": 63.4, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2012, | |
"Life expectancy at birth": 61.6, | |
"Female life expectancy at birth": 63, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2011, | |
"Life expectancy at birth": 61.2, | |
"Female life expectancy at birth": 62.5, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2010, | |
"Life expectancy at birth": 60.9, | |
"Female life expectancy at birth": 62.2, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2009, | |
"Life expectancy at birth": 60.6, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2008, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2007, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2006, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 60.8, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2005, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2004, | |
"Life expectancy at birth": 58.3, | |
"Female life expectancy at birth": 59.8, | |
"Male life expectancy at birth": 56.9 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2003, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.4, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2002, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 59.1, | |
"Male life expectancy at birth": 56.2 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2001, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 56 | |
}, | |
{ | |
"Country": "Ghana", | |
"Year": 2000, | |
"Life expectancy at birth": 57.2, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2015, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2014, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2013, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2012, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2011, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2010, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2009, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2008, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2007, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2006, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2005, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2004, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2003, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2002, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2001, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Greece", | |
"Year": 2000, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2015, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2014, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2013, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2012, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2011, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2010, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2009, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2008, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2007, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2006, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2005, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2004, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2003, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2002, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2001, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Grenada", | |
"Year": 2000, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2015, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2014, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2013, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2012, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2011, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2010, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2009, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2008, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2007, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2006, | |
"Life expectancy at birth": 69.7, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2005, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2004, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2003, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2002, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2001, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Guatemala", | |
"Year": 2000, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2015, | |
"Life expectancy at birth": 59, | |
"Female life expectancy at birth": 59.8, | |
"Male life expectancy at birth": 58.2 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2014, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 58.9, | |
"Male life expectancy at birth": 57.4 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2013, | |
"Life expectancy at birth": 58.8, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2012, | |
"Life expectancy at birth": 58.4, | |
"Female life expectancy at birth": 59.2, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2011, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.1, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2010, | |
"Life expectancy at birth": 57.8, | |
"Female life expectancy at birth": 59, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2009, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2008, | |
"Life expectancy at birth": 56.8, | |
"Female life expectancy at birth": 58.4, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2007, | |
"Life expectancy at birth": 56.4, | |
"Female life expectancy at birth": 58, | |
"Male life expectancy at birth": 54.7 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2006, | |
"Life expectancy at birth": 55.6, | |
"Female life expectancy at birth": 57, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2005, | |
"Life expectancy at birth": 54.7, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 53.6 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2004, | |
"Life expectancy at birth": 54, | |
"Female life expectancy at birth": 54.8, | |
"Male life expectancy at birth": 53.1 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2003, | |
"Life expectancy at birth": 53.3, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 52.7 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2002, | |
"Life expectancy at birth": 52.9, | |
"Female life expectancy at birth": 53.6, | |
"Male life expectancy at birth": 52.3 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2001, | |
"Life expectancy at birth": 52.5, | |
"Female life expectancy at birth": 53.3, | |
"Male life expectancy at birth": 51.8 | |
}, | |
{ | |
"Country": "Guinea", | |
"Year": 2000, | |
"Life expectancy at birth": 52.5, | |
"Female life expectancy at birth": 53.2, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2015, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2014, | |
"Life expectancy at birth": 58.4, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2013, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2012, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2011, | |
"Life expectancy at birth": 57.1, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 55.8 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2010, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58, | |
"Male life expectancy at birth": 55.4 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2009, | |
"Life expectancy at birth": 56.3, | |
"Female life expectancy at birth": 57.7, | |
"Male life expectancy at birth": 54.9 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2008, | |
"Life expectancy at birth": 55.6, | |
"Female life expectancy at birth": 56.9, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2007, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56.3, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2006, | |
"Life expectancy at birth": 54.4, | |
"Female life expectancy at birth": 55.5, | |
"Male life expectancy at birth": 53.3 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2005, | |
"Life expectancy at birth": 53.9, | |
"Female life expectancy at birth": 54.8, | |
"Male life expectancy at birth": 53.1 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2004, | |
"Life expectancy at birth": 53.5, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 52.9 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2003, | |
"Life expectancy at birth": 53, | |
"Female life expectancy at birth": 53.4, | |
"Male life expectancy at birth": 52.7 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2002, | |
"Life expectancy at birth": 52.8, | |
"Female life expectancy at birth": 53.2, | |
"Male life expectancy at birth": 52.3 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2001, | |
"Life expectancy at birth": 52.5, | |
"Female life expectancy at birth": 53.1, | |
"Male life expectancy at birth": 51.9 | |
}, | |
{ | |
"Country": "Guinea-Bissau", | |
"Year": 2000, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 51.3 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2015, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2014, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2013, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2012, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2011, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 63 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2010, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 63.4 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2009, | |
"Life expectancy at birth": 66.1, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2008, | |
"Life expectancy at birth": 66.3, | |
"Female life expectancy at birth": 68.7, | |
"Male life expectancy at birth": 64 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2007, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2006, | |
"Life expectancy at birth": 65.2, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2005, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2004, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 68, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2003, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2002, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2001, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Guyana", | |
"Year": 2000, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2015, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 65.5, | |
"Male life expectancy at birth": 61.5 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2014, | |
"Life expectancy at birth": 63.1, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 61 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2013, | |
"Life expectancy at birth": 62.7, | |
"Female life expectancy at birth": 64.8, | |
"Male life expectancy at birth": 60.7 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2012, | |
"Life expectancy at birth": 62.3, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 60.4 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2011, | |
"Life expectancy at birth": 62.3, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2010, | |
"Life expectancy at birth": 36.3, | |
"Female life expectancy at birth": 40.3, | |
"Male life expectancy at birth": 33.2 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2009, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 64.7, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2008, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2007, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2006, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 63.3, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2005, | |
"Life expectancy at birth": 60.5, | |
"Female life expectancy at birth": 62.7, | |
"Male life expectancy at birth": 58.4 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2004, | |
"Life expectancy at birth": 58.7, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2003, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2002, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 61.5, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2001, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Haiti", | |
"Year": 2000, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 60.8, | |
"Male life expectancy at birth": 56.5 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2015, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2014, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2013, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2012, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2011, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2010, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2009, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2008, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2007, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2006, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2005, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2004, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2003, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2002, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2001, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Honduras", | |
"Year": 2000, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2015, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2014, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2013, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2012, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2011, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2010, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2009, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2008, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2007, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2006, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2005, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2004, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2003, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2002, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2001, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Hungary", | |
"Year": 2000, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2015, | |
"Life expectancy at birth": 82.7, | |
"Female life expectancy at birth": 84.1, | |
"Male life expectancy at birth": 81.2 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2014, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 81 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2013, | |
"Life expectancy at birth": 82.4, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 80.9 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2012, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 81.1 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2011, | |
"Life expectancy at birth": 82.1, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 80.5 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2010, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 80.2 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2009, | |
"Life expectancy at birth": 81.6, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 79.9 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2008, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2007, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2006, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2005, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2004, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2003, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2002, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2001, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Iceland", | |
"Year": 2000, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2015, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2014, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 69.5, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2013, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 69.1, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2012, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 68.7, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2011, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2010, | |
"Life expectancy at birth": 66.4, | |
"Female life expectancy at birth": 67.6, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2009, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 67, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2008, | |
"Life expectancy at birth": 65.5, | |
"Female life expectancy at birth": 66.5, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2007, | |
"Life expectancy at birth": 65.2, | |
"Female life expectancy at birth": 66.1, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2006, | |
"Life expectancy at birth": 64.8, | |
"Female life expectancy at birth": 65.7, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2005, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 63.5 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2004, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 64.9, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2003, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2002, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2001, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 63.8, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "India", | |
"Year": 2000, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 63.4, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2015, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 71.2, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2014, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2013, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2012, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 66.5 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2011, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2010, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2009, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2008, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2007, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2006, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 69.4, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2005, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 69.2, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2004, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 67.5, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2003, | |
"Life expectancy at birth": 66.9, | |
"Female life expectancy at birth": 68.7, | |
"Male life expectancy at birth": 65 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2002, | |
"Life expectancy at birth": 66.7, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2001, | |
"Life expectancy at birth": 66.5, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Indonesia", | |
"Year": 2000, | |
"Life expectancy at birth": 66.3, | |
"Female life expectancy at birth": 68, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2015, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2014, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 74.4 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2013, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2012, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2011, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2010, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2009, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2008, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2007, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2006, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2005, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2004, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2003, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2002, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 72.3, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2001, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Iran (Islamic Republic of)", | |
"Year": 2000, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 71.2, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2015, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2014, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2013, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2012, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2011, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2010, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2009, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2008, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 71.9, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2007, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2006, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 68.9, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2005, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2004, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2003, | |
"Life expectancy at birth": 66.5, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2002, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2001, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Iraq", | |
"Year": 2000, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 72.3, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2015, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2014, | |
"Life expectancy at birth": 81.2, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2013, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2012, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2011, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2010, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2009, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2008, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2007, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2006, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2005, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2004, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2003, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2002, | |
"Life expectancy at birth": 77.4, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2001, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Ireland", | |
"Year": 2000, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2015, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 84.3, | |
"Male life expectancy at birth": 80.6 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2014, | |
"Life expectancy at birth": 82.2, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 80.2 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2013, | |
"Life expectancy at birth": 82.1, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 80.2 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2012, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2011, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79.9 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2010, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79.7 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2009, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2008, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2007, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2006, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2005, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2004, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2003, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2002, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2001, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Israel", | |
"Year": 2000, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2015, | |
"Life expectancy at birth": 82.7, | |
"Female life expectancy at birth": 84.8, | |
"Male life expectancy at birth": 80.5 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2014, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 84.6, | |
"Male life expectancy at birth": 80.2 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2013, | |
"Life expectancy at birth": 82.3, | |
"Female life expectancy at birth": 84.5, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2012, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84.2, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2011, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84.3, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2010, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 84.2, | |
"Male life expectancy at birth": 79.3 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2009, | |
"Life expectancy at birth": 81.6, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2008, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2007, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2006, | |
"Life expectancy at birth": 81.2, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2005, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2004, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2003, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2002, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2001, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Italy", | |
"Year": 2000, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2015, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2014, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2013, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2012, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2011, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2010, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2009, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2008, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2007, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2006, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2005, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2004, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2003, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2002, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2001, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Jamaica", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2015, | |
"Life expectancy at birth": 83.7, | |
"Female life expectancy at birth": 86.8, | |
"Male life expectancy at birth": 80.5 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2014, | |
"Life expectancy at birth": 83.5, | |
"Female life expectancy at birth": 86.7, | |
"Male life expectancy at birth": 80.3 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2013, | |
"Life expectancy at birth": 83.5, | |
"Female life expectancy at birth": 86.7, | |
"Male life expectancy at birth": 80.3 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2012, | |
"Life expectancy at birth": 83.3, | |
"Female life expectancy at birth": 86.5, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2011, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 85.7, | |
"Male life expectancy at birth": 79.3 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2010, | |
"Life expectancy at birth": 83, | |
"Female life expectancy at birth": 86.3, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2009, | |
"Life expectancy at birth": 83, | |
"Female life expectancy at birth": 86.4, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2008, | |
"Life expectancy at birth": 82.7, | |
"Female life expectancy at birth": 86, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2007, | |
"Life expectancy at birth": 82.6, | |
"Female life expectancy at birth": 85.9, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2006, | |
"Life expectancy at birth": 82.4, | |
"Female life expectancy at birth": 85.7, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2005, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 85.4, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2004, | |
"Life expectancy at birth": 82.1, | |
"Female life expectancy at birth": 85.5, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2003, | |
"Life expectancy at birth": 81.9, | |
"Female life expectancy at birth": 85.3, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2002, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 85.2, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2001, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 84.8, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Japan", | |
"Year": 2000, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 84.5, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2015, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2014, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2013, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2012, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2011, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2010, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2009, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2008, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2007, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2006, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2005, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2004, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2003, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2002, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2001, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Jordan", | |
"Year": 2000, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2015, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2014, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2013, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2012, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2011, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2010, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2009, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2008, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 61.2 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2007, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2006, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 71.2, | |
"Male life expectancy at birth": 59.2 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2005, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2004, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2003, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2002, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 59.2 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2001, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Kazakhstan", | |
"Year": 2000, | |
"Life expectancy at birth": 63.9, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2015, | |
"Life expectancy at birth": 63.4, | |
"Female life expectancy at birth": 65.8, | |
"Male life expectancy at birth": 61.1 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2014, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 60.6 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2013, | |
"Life expectancy at birth": 62.6, | |
"Female life expectancy at birth": 65, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2012, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2011, | |
"Life expectancy at birth": 61.2, | |
"Female life expectancy at birth": 62.8, | |
"Male life expectancy at birth": 59.7 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2010, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 61.7, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2009, | |
"Life expectancy at birth": 59.1, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2008, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2007, | |
"Life expectancy at birth": 56.8, | |
"Female life expectancy at birth": 57.9, | |
"Male life expectancy at birth": 55.8 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2006, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.2, | |
"Male life expectancy at birth": 54.4 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2005, | |
"Life expectancy at birth": 54.1, | |
"Female life expectancy at birth": 54.9, | |
"Male life expectancy at birth": 53.2 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2004, | |
"Life expectancy at birth": 53, | |
"Female life expectancy at birth": 53.7, | |
"Male life expectancy at birth": 52.2 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2003, | |
"Life expectancy at birth": 52.4, | |
"Female life expectancy at birth": 53.3, | |
"Male life expectancy at birth": 51.6 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2002, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 51.2 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2001, | |
"Life expectancy at birth": 51.9, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 50.9 | |
}, | |
{ | |
"Country": "Kenya", | |
"Year": 2000, | |
"Life expectancy at birth": 51.9, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 50.8 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2015, | |
"Life expectancy at birth": 66.3, | |
"Female life expectancy at birth": 68.8, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2014, | |
"Life expectancy at birth": 66.1, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 63.4 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2013, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2012, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2011, | |
"Life expectancy at birth": 65.5, | |
"Female life expectancy at birth": 68, | |
"Male life expectancy at birth": 62.9 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2010, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 67.8, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2009, | |
"Life expectancy at birth": 65.2, | |
"Female life expectancy at birth": 67.6, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2008, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 67.5, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2007, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 67.4, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2006, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2005, | |
"Life expectancy at birth": 64.9, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2004, | |
"Life expectancy at birth": 64.8, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2003, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 67.1, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2002, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 66.9, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2001, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 61.9 | |
}, | |
{ | |
"Country": "Kiribati", | |
"Year": 2000, | |
"Life expectancy at birth": 64.1, | |
"Female life expectancy at birth": 66.4, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2015, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2014, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2013, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2012, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2011, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2010, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2009, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2008, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2007, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2006, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2005, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2004, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2003, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2002, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2001, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Kuwait", | |
"Year": 2000, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2015, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2014, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2013, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2012, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2011, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2010, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2009, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2008, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2007, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2006, | |
"Life expectancy at birth": 66.7, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2005, | |
"Life expectancy at birth": 66.9, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2004, | |
"Life expectancy at birth": 67.1, | |
"Female life expectancy at birth": 71.2, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2003, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2002, | |
"Life expectancy at birth": 66.7, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2001, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Kyrgyzstan", | |
"Year": 2000, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2015, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2014, | |
"Life expectancy at birth": 65.3, | |
"Female life expectancy at birth": 66.8, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2013, | |
"Life expectancy at birth": 64.9, | |
"Female life expectancy at birth": 66.4, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2012, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 66, | |
"Male life expectancy at birth": 62.9 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2011, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 65.6, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2010, | |
"Life expectancy at birth": 63.6, | |
"Female life expectancy at birth": 65.1, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2009, | |
"Life expectancy at birth": 63.1, | |
"Female life expectancy at birth": 64.7, | |
"Male life expectancy at birth": 61.5 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2008, | |
"Life expectancy at birth": 62.6, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 61 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2007, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 63.7, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2006, | |
"Life expectancy at birth": 61.5, | |
"Female life expectancy at birth": 63.1, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2005, | |
"Life expectancy at birth": 61, | |
"Female life expectancy at birth": 62.6, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2004, | |
"Life expectancy at birth": 60.4, | |
"Female life expectancy at birth": 62, | |
"Male life expectancy at birth": 58.8 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2003, | |
"Life expectancy at birth": 59.8, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 58.2 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2002, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.9, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2001, | |
"Life expectancy at birth": 58.7, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Lao People's Democratic Republic", | |
"Year": 2000, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.7, | |
"Male life expectancy at birth": 56.5 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2015, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2014, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2012, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2011, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2010, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2009, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2008, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2007, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2006, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2005, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2004, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2003, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2002, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2001, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 64.2 | |
}, | |
{ | |
"Country": "Latvia", | |
"Year": 2000, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2015, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2014, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2013, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2012, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2011, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2010, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2009, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2008, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2007, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2006, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2005, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2004, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2003, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2002, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2001, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Lebanon", | |
"Year": 2000, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2015, | |
"Life expectancy at birth": 53.7, | |
"Female life expectancy at birth": 55.4, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2014, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2013, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53.7, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2012, | |
"Life expectancy at birth": 52.2, | |
"Female life expectancy at birth": 53.5, | |
"Male life expectancy at birth": 50.5 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2011, | |
"Life expectancy at birth": 52.3, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2010, | |
"Life expectancy at birth": 51.1, | |
"Female life expectancy at birth": 52.6, | |
"Male life expectancy at birth": 49.4 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2009, | |
"Life expectancy at birth": 49.4, | |
"Female life expectancy at birth": 50, | |
"Male life expectancy at birth": 48.5 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2008, | |
"Life expectancy at birth": 47.8, | |
"Female life expectancy at birth": 48.3, | |
"Male life expectancy at birth": 47.1 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2007, | |
"Life expectancy at birth": 46.2, | |
"Female life expectancy at birth": 46.5, | |
"Male life expectancy at birth": 45.7 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2006, | |
"Life expectancy at birth": 45.3, | |
"Female life expectancy at birth": 45.7, | |
"Male life expectancy at birth": 44.6 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2005, | |
"Life expectancy at birth": 44.5, | |
"Female life expectancy at birth": 44.8, | |
"Male life expectancy at birth": 44 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2004, | |
"Life expectancy at birth": 44.8, | |
"Female life expectancy at birth": 45.2, | |
"Male life expectancy at birth": 44.3 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2003, | |
"Life expectancy at birth": 45.5, | |
"Female life expectancy at birth": 46, | |
"Male life expectancy at birth": 44.8 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2002, | |
"Life expectancy at birth": 46.4, | |
"Female life expectancy at birth": 47.1, | |
"Male life expectancy at birth": 45.7 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2001, | |
"Life expectancy at birth": 47.8, | |
"Female life expectancy at birth": 48.5, | |
"Male life expectancy at birth": 46.8 | |
}, | |
{ | |
"Country": "Lesotho", | |
"Year": 2000, | |
"Life expectancy at birth": 49.3, | |
"Female life expectancy at birth": 50.3, | |
"Male life expectancy at birth": 48.2 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2015, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 62.9, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2014, | |
"Life expectancy at birth": 58.1, | |
"Female life expectancy at birth": 59.8, | |
"Male life expectancy at birth": 56.5 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2013, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 62.4, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2012, | |
"Life expectancy at birth": 60.7, | |
"Female life expectancy at birth": 62, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2011, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2010, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 61, | |
"Male life expectancy at birth": 58.4 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2009, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2008, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 60, | |
"Male life expectancy at birth": 57.3 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2007, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.3, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2006, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58, | |
"Male life expectancy at birth": 55.5 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2005, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.4, | |
"Male life expectancy at birth": 54.3 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2004, | |
"Life expectancy at birth": 54, | |
"Female life expectancy at birth": 54.8, | |
"Male life expectancy at birth": 53.2 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2003, | |
"Life expectancy at birth": 50, | |
"Female life expectancy at birth": 52, | |
"Male life expectancy at birth": 48.1 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2002, | |
"Life expectancy at birth": 50.6, | |
"Female life expectancy at birth": 52.1, | |
"Male life expectancy at birth": 49.2 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2001, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 52.4, | |
"Male life expectancy at birth": 50.7 | |
}, | |
{ | |
"Country": "Liberia", | |
"Year": 2000, | |
"Life expectancy at birth": 51.9, | |
"Female life expectancy at birth": 52.6, | |
"Male life expectancy at birth": 51.2 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2015, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2014, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2013, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2012, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2011, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2010, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2009, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2008, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2007, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2006, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2005, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2004, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2003, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2002, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2001, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Libya", | |
"Year": 2000, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2015, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2014, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2013, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2012, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2011, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2010, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2009, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2008, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2007, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2006, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2005, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2004, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2003, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2002, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2001, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Lithuania", | |
"Year": 2000, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2015, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2014, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2013, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 79.3 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2012, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2011, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2010, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2009, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2008, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2007, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2006, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2005, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2004, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2003, | |
"Life expectancy at birth": 78.6, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2002, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 75.1 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2001, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Luxembourg", | |
"Year": 2000, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2015, | |
"Life expectancy at birth": 65.5, | |
"Female life expectancy at birth": 67, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2014, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2013, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 66.3, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2012, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 65.8, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2011, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 65.4, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2010, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 64.8, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2009, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2008, | |
"Life expectancy at birth": 62.3, | |
"Female life expectancy at birth": 63.8, | |
"Male life expectancy at birth": 60.8 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2007, | |
"Life expectancy at birth": 61.9, | |
"Female life expectancy at birth": 63.3, | |
"Male life expectancy at birth": 60.4 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2006, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 62.8, | |
"Male life expectancy at birth": 60 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2005, | |
"Life expectancy at birth": 60.9, | |
"Female life expectancy at birth": 62.3, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2004, | |
"Life expectancy at birth": 60.4, | |
"Female life expectancy at birth": 61.7, | |
"Male life expectancy at birth": 59.1 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2003, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2002, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.6, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2001, | |
"Life expectancy at birth": 58.7, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Madagascar", | |
"Year": 2000, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.1, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2015, | |
"Life expectancy at birth": 58.3, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2014, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 59.2, | |
"Male life expectancy at birth": 56.1 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2013, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58.2, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2012, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.7, | |
"Male life expectancy at birth": 54 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2011, | |
"Life expectancy at birth": 54.1, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 52.9 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2010, | |
"Life expectancy at birth": 52.9, | |
"Female life expectancy at birth": 54, | |
"Male life expectancy at birth": 51.7 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2009, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 52.4, | |
"Male life expectancy at birth": 50.6 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2008, | |
"Life expectancy at birth": 50, | |
"Female life expectancy at birth": 50.7, | |
"Male life expectancy at birth": 49.2 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2007, | |
"Life expectancy at birth": 48.5, | |
"Female life expectancy at birth": 48.9, | |
"Male life expectancy at birth": 48 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2006, | |
"Life expectancy at birth": 47.1, | |
"Female life expectancy at birth": 47.3, | |
"Male life expectancy at birth": 46.8 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2005, | |
"Life expectancy at birth": 46, | |
"Female life expectancy at birth": 46.1, | |
"Male life expectancy at birth": 45.9 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2004, | |
"Life expectancy at birth": 45.1, | |
"Female life expectancy at birth": 45.2, | |
"Male life expectancy at birth": 45.1 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2003, | |
"Life expectancy at birth": 44.6, | |
"Female life expectancy at birth": 44.7, | |
"Male life expectancy at birth": 44.4 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2002, | |
"Life expectancy at birth": 44, | |
"Female life expectancy at birth": 44.2, | |
"Male life expectancy at birth": 43.7 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2001, | |
"Life expectancy at birth": 43.5, | |
"Female life expectancy at birth": 43.8, | |
"Male life expectancy at birth": 43.1 | |
}, | |
{ | |
"Country": "Malawi", | |
"Year": 2000, | |
"Life expectancy at birth": 43.1, | |
"Female life expectancy at birth": 43.6, | |
"Male life expectancy at birth": 42.6 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2015, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2014, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2011, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2010, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2009, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2008, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2005, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2004, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2003, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2002, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2001, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Malaysia", | |
"Year": 2000, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2015, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2014, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2013, | |
"Life expectancy at birth": 77.9, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2012, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2011, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2010, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2009, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2008, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 74.8 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2007, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2006, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2005, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2004, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2003, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2002, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2001, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Maldives", | |
"Year": 2000, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2015, | |
"Life expectancy at birth": 58.2, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 58.2 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2014, | |
"Life expectancy at birth": 57.8, | |
"Female life expectancy at birth": 57.8, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2013, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 57.5, | |
"Male life expectancy at birth": 57 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2012, | |
"Life expectancy at birth": 57.2, | |
"Female life expectancy at birth": 57.3, | |
"Male life expectancy at birth": 57 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2011, | |
"Life expectancy at birth": 56.8, | |
"Female life expectancy at birth": 56.9, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2010, | |
"Life expectancy at birth": 56.5, | |
"Female life expectancy at birth": 56.6, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2009, | |
"Life expectancy at birth": 56, | |
"Female life expectancy at birth": 56.1, | |
"Male life expectancy at birth": 55.8 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2008, | |
"Life expectancy at birth": 55.5, | |
"Female life expectancy at birth": 55.7, | |
"Male life expectancy at birth": 55.4 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2007, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 55.2, | |
"Male life expectancy at birth": 54.8 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2006, | |
"Life expectancy at birth": 54.3, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2005, | |
"Life expectancy at birth": 53.6, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 53.5 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2004, | |
"Life expectancy at birth": 52.8, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2003, | |
"Life expectancy at birth": 52, | |
"Female life expectancy at birth": 52.1, | |
"Male life expectancy at birth": 51.9 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2002, | |
"Life expectancy at birth": 51.2, | |
"Female life expectancy at birth": 51.4, | |
"Male life expectancy at birth": 51.1 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2001, | |
"Life expectancy at birth": 50.5, | |
"Female life expectancy at birth": 50.7, | |
"Male life expectancy at birth": 50.4 | |
}, | |
{ | |
"Country": "Mali", | |
"Year": 2000, | |
"Life expectancy at birth": 49.8, | |
"Female life expectancy at birth": 50, | |
"Male life expectancy at birth": 49.6 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2015, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 79.7 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2014, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2013, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2012, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2011, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2010, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2009, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2008, | |
"Life expectancy at birth": 80, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2007, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2006, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2005, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2004, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2003, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2002, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2001, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Malta", | |
"Year": 2000, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Marshall Islands", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2015, | |
"Life expectancy at birth": 63.1, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2014, | |
"Life expectancy at birth": 63, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 61.5 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2013, | |
"Life expectancy at birth": 62.7, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2012, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 61.1 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2011, | |
"Life expectancy at birth": 62.2, | |
"Female life expectancy at birth": 63.7, | |
"Male life expectancy at birth": 60.8 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2010, | |
"Life expectancy at birth": 62, | |
"Female life expectancy at birth": 63.5, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2009, | |
"Life expectancy at birth": 61.7, | |
"Female life expectancy at birth": 63.2, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2008, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 63, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2007, | |
"Life expectancy at birth": 61.2, | |
"Female life expectancy at birth": 62.7, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2006, | |
"Life expectancy at birth": 60.9, | |
"Female life expectancy at birth": 62.5, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2005, | |
"Life expectancy at birth": 60.6, | |
"Female life expectancy at birth": 62.3, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2004, | |
"Life expectancy at birth": 60.4, | |
"Female life expectancy at birth": 62.1, | |
"Male life expectancy at birth": 58.8 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2003, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2002, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 61.8, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2001, | |
"Life expectancy at birth": 60.1, | |
"Female life expectancy at birth": 61.7, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Mauritania", | |
"Year": 2000, | |
"Life expectancy at birth": 60, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 58.4 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2015, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2014, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2013, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2012, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2011, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2010, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2009, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2008, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2007, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2006, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2005, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2004, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2003, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2002, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2001, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Mauritius", | |
"Year": 2000, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2015, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2014, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 79.4, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2013, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2012, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2011, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2010, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2009, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2008, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2007, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2006, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2005, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2004, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2003, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2002, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2001, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Mexico", | |
"Year": 2000, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2015, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2014, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2013, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2012, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2011, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 70, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2010, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2009, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2008, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 69.5, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2007, | |
"Life expectancy at birth": 68.2, | |
"Female life expectancy at birth": 69.3, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2006, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 69.2, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2005, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 69, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2004, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 68.8, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2003, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2002, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 67.5, | |
"Male life expectancy at birth": 65 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2001, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Micronesia (Federated States of)", | |
"Year": 2000, | |
"Life expectancy at birth": 67, | |
"Female life expectancy at birth": 68.1, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Monaco", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2015, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2014, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2013, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 64 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2012, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2011, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2010, | |
"Life expectancy at birth": 66.3, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2009, | |
"Life expectancy at birth": 66.9, | |
"Female life expectancy at birth": 70.9, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2008, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2007, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2006, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 69.6, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2005, | |
"Life expectancy at birth": 64.5, | |
"Female life expectancy at birth": 69.2, | |
"Male life expectancy at birth": 60.4 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2004, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 68.7, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2003, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 68.1, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2002, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 60.6 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2001, | |
"Life expectancy at birth": 63.2, | |
"Female life expectancy at birth": 66.4, | |
"Male life expectancy at birth": 60.1 | |
}, | |
{ | |
"Country": "Mongolia", | |
"Year": 2000, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 65.7, | |
"Male life expectancy at birth": 60 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2015, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2014, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2013, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 73.8 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2012, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2011, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2010, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2009, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2008, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2007, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2006, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2005, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2004, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2003, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2002, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2001, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Montenegro", | |
"Year": 2000, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2015, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2014, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2013, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2012, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2011, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2010, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2009, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2008, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2007, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2006, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2005, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2004, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2003, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2002, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2001, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Morocco", | |
"Year": 2000, | |
"Life expectancy at birth": 68.6, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 66.9 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2015, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 59.4, | |
"Male life expectancy at birth": 55.7 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2014, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 58.3, | |
"Male life expectancy at birth": 54.9 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2013, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 56.7, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2012, | |
"Life expectancy at birth": 54.8, | |
"Female life expectancy at birth": 56.1, | |
"Male life expectancy at birth": 53.4 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2011, | |
"Life expectancy at birth": 54.3, | |
"Female life expectancy at birth": 55.7, | |
"Male life expectancy at birth": 52.9 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2010, | |
"Life expectancy at birth": 54, | |
"Female life expectancy at birth": 55.2, | |
"Male life expectancy at birth": 52.5 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2009, | |
"Life expectancy at birth": 53.8, | |
"Female life expectancy at birth": 55.1, | |
"Male life expectancy at birth": 52.4 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2008, | |
"Life expectancy at birth": 53.2, | |
"Female life expectancy at birth": 54.5, | |
"Male life expectancy at birth": 51.8 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2007, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 53.2, | |
"Male life expectancy at birth": 50.8 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2006, | |
"Life expectancy at birth": 51.2, | |
"Female life expectancy at birth": 52.3, | |
"Male life expectancy at birth": 50 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2005, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 52, | |
"Male life expectancy at birth": 49.4 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2004, | |
"Life expectancy at birth": 50.4, | |
"Female life expectancy at birth": 51.7, | |
"Male life expectancy at birth": 49 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2003, | |
"Life expectancy at birth": 50.1, | |
"Female life expectancy at birth": 51.5, | |
"Male life expectancy at birth": 48.6 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2002, | |
"Life expectancy at birth": 49.8, | |
"Female life expectancy at birth": 51.3, | |
"Male life expectancy at birth": 48.3 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2001, | |
"Life expectancy at birth": 49.5, | |
"Female life expectancy at birth": 51, | |
"Male life expectancy at birth": 48 | |
}, | |
{ | |
"Country": "Mozambique", | |
"Year": 2000, | |
"Life expectancy at birth": 49, | |
"Female life expectancy at birth": 50.5, | |
"Male life expectancy at birth": 47.5 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2015, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2014, | |
"Life expectancy at birth": 66.4, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2013, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 68, | |
"Male life expectancy at birth": 64.2 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2012, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 67.8, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2011, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 67.5, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2010, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 63.5 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2009, | |
"Life expectancy at birth": 65.2, | |
"Female life expectancy at birth": 67, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2008, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 61.7, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2007, | |
"Life expectancy at birth": 64.5, | |
"Female life expectancy at birth": 66.3, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2006, | |
"Life expectancy at birth": 64.2, | |
"Female life expectancy at birth": 66, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2005, | |
"Life expectancy at birth": 63.9, | |
"Female life expectancy at birth": 65.7, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2004, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 65.4, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2003, | |
"Life expectancy at birth": 63.2, | |
"Female life expectancy at birth": 65.1, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2002, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 64.8, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2001, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Myanmar", | |
"Year": 2000, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 64.1, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2015, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2014, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2013, | |
"Life expectancy at birth": 66.1, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2012, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 67.8, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2011, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 66.2, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2010, | |
"Life expectancy at birth": 63, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2009, | |
"Life expectancy at birth": 62.4, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 60.7 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2008, | |
"Life expectancy at birth": 61.7, | |
"Female life expectancy at birth": 63.1, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2007, | |
"Life expectancy at birth": 60, | |
"Female life expectancy at birth": 61, | |
"Male life expectancy at birth": 58.9 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2006, | |
"Life expectancy at birth": 57, | |
"Female life expectancy at birth": 57.6, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2005, | |
"Life expectancy at birth": 55.1, | |
"Female life expectancy at birth": 55.6, | |
"Male life expectancy at birth": 54.5 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2004, | |
"Life expectancy at birth": 54.7, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2003, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 55.7, | |
"Male life expectancy at birth": 54.3 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2002, | |
"Life expectancy at birth": 55.7, | |
"Female life expectancy at birth": 56.4, | |
"Male life expectancy at birth": 54.8 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2001, | |
"Life expectancy at birth": 56.5, | |
"Female life expectancy at birth": 57.5, | |
"Male life expectancy at birth": 55.6 | |
}, | |
{ | |
"Country": "Namibia", | |
"Year": 2000, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 58.5, | |
"Male life expectancy at birth": 56.2 | |
}, | |
{ | |
"Country": "Nauru", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2015, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2014, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2013, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2012, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2011, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2010, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 69.4, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2009, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 68.9, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2008, | |
"Life expectancy at birth": 67, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2007, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2006, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 67.3, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2005, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2004, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 66, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2003, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 65.5, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2002, | |
"Life expectancy at birth": 63.1, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2001, | |
"Life expectancy at birth": 63.2, | |
"Female life expectancy at birth": 64.2, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Nepal", | |
"Year": 2000, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 63.5, | |
"Male life expectancy at birth": 61.5 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2015, | |
"Life expectancy at birth": 81.9, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2014, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2013, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2012, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2011, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2010, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 78.7 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2009, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2008, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2007, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2006, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2005, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2004, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2003, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2002, | |
"Life expectancy at birth": 78.4, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2001, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Netherlands", | |
"Year": 2000, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2015, | |
"Life expectancy at birth": 81.6, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2014, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2013, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2012, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 79.3 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2011, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2010, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2009, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2008, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2007, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2006, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 77.8 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2005, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2004, | |
"Life expectancy at birth": 79.2, | |
"Female life expectancy at birth": 81.4, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2003, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2002, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2001, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "New Zealand", | |
"Year": 2000, | |
"Life expectancy at birth": 78.6, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2015, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2014, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2013, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2012, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2011, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2010, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2009, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2008, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2007, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2006, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2005, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2004, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2003, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2002, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2001, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Nicaragua", | |
"Year": 2000, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2015, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 62.8, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2014, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 62.4, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2013, | |
"Life expectancy at birth": 60.9, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 60 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2012, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2011, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 60.1, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2010, | |
"Life expectancy at birth": 58.2, | |
"Female life expectancy at birth": 58.8, | |
"Male life expectancy at birth": 57.8 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2009, | |
"Life expectancy at birth": 57.1, | |
"Female life expectancy at birth": 57.4, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2008, | |
"Life expectancy at birth": 56, | |
"Female life expectancy at birth": 56.2, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2007, | |
"Life expectancy at birth": 55.2, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 55.1 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2006, | |
"Life expectancy at birth": 54.5, | |
"Female life expectancy at birth": 54.6, | |
"Male life expectancy at birth": 54.4 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2005, | |
"Life expectancy at birth": 53.7, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2004, | |
"Life expectancy at birth": 52.9, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 52.9 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2003, | |
"Life expectancy at birth": 52.1, | |
"Female life expectancy at birth": 52.2, | |
"Male life expectancy at birth": 52.1 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2002, | |
"Life expectancy at birth": 51.4, | |
"Female life expectancy at birth": 51.4, | |
"Male life expectancy at birth": 51.3 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2001, | |
"Life expectancy at birth": 50.6, | |
"Female life expectancy at birth": 50.7, | |
"Male life expectancy at birth": 50.6 | |
}, | |
{ | |
"Country": "Niger", | |
"Year": 2000, | |
"Life expectancy at birth": 50, | |
"Female life expectancy at birth": 50, | |
"Male life expectancy at birth": 49.9 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2015, | |
"Life expectancy at birth": 54.5, | |
"Female life expectancy at birth": 55.6, | |
"Male life expectancy at birth": 53.4 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2014, | |
"Life expectancy at birth": 53.6, | |
"Female life expectancy at birth": 54.7, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2013, | |
"Life expectancy at birth": 53.2, | |
"Female life expectancy at birth": 54.2, | |
"Male life expectancy at birth": 52.2 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2012, | |
"Life expectancy at birth": 52.7, | |
"Female life expectancy at birth": 53.5, | |
"Male life expectancy at birth": 51.8 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2011, | |
"Life expectancy at birth": 52.3, | |
"Female life expectancy at birth": 53.1, | |
"Male life expectancy at birth": 51.5 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2010, | |
"Life expectancy at birth": 52, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 51.2 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2009, | |
"Life expectancy at birth": 51.6, | |
"Female life expectancy at birth": 52.4, | |
"Male life expectancy at birth": 50.7 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2008, | |
"Life expectancy at birth": 50.9, | |
"Female life expectancy at birth": 51.7, | |
"Male life expectancy at birth": 50.1 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2007, | |
"Life expectancy at birth": 50.5, | |
"Female life expectancy at birth": 51.3, | |
"Male life expectancy at birth": 49.7 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2006, | |
"Life expectancy at birth": 49.8, | |
"Female life expectancy at birth": 50.7, | |
"Male life expectancy at birth": 49 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2005, | |
"Life expectancy at birth": 49.2, | |
"Female life expectancy at birth": 50.1, | |
"Male life expectancy at birth": 48.4 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2004, | |
"Life expectancy at birth": 48.5, | |
"Female life expectancy at birth": 49.4, | |
"Male life expectancy at birth": 47.7 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2003, | |
"Life expectancy at birth": 48.1, | |
"Female life expectancy at birth": 49, | |
"Male life expectancy at birth": 47.2 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2002, | |
"Life expectancy at birth": 47.7, | |
"Female life expectancy at birth": 48.6, | |
"Male life expectancy at birth": 46.8 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2001, | |
"Life expectancy at birth": 47.4, | |
"Female life expectancy at birth": 48.3, | |
"Male life expectancy at birth": 46.4 | |
}, | |
{ | |
"Country": "Nigeria", | |
"Year": 2000, | |
"Life expectancy at birth": 47.1, | |
"Female life expectancy at birth": 48.1, | |
"Male life expectancy at birth": 46.2 | |
}, | |
{ | |
"Country": "Niue", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2015, | |
"Life expectancy at birth": 81.8, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2014, | |
"Life expectancy at birth": 81.6, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2013, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2012, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2011, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.3, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2010, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2009, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2008, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2007, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2006, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 78 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2005, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2004, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2003, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2002, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2001, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Norway", | |
"Year": 2000, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2015, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 75 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2014, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2013, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2012, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 74.2 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2011, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2010, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2009, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2008, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2007, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2006, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2005, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2004, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2003, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2002, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2001, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Oman", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2015, | |
"Life expectancy at birth": 66.4, | |
"Female life expectancy at birth": 67.5, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2014, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 65.2 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2013, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 67, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2012, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2011, | |
"Life expectancy at birth": 65.5, | |
"Female life expectancy at birth": 66.5, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2010, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 66.1, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2009, | |
"Life expectancy at birth": 64.8, | |
"Female life expectancy at birth": 65.9, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2008, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 65.7, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2007, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 65.4, | |
"Male life expectancy at birth": 63.5 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2006, | |
"Life expectancy at birth": 64.2, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2005, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 61.9 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2004, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 62.9 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2003, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2002, | |
"Life expectancy at birth": 63.2, | |
"Female life expectancy at birth": 64.1, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2001, | |
"Life expectancy at birth": 63, | |
"Female life expectancy at birth": 63.9, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Pakistan", | |
"Year": 2000, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 63.6, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Palau", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2015, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2014, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2013, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2012, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 74.2 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2011, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2010, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2009, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2008, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2007, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 79.4, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2006, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2005, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2004, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2003, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2002, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2001, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Panama", | |
"Year": 2000, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2015, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 65.4, | |
"Male life expectancy at birth": 60.6 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2014, | |
"Life expectancy at birth": 62.7, | |
"Female life expectancy at birth": 65.2, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2013, | |
"Life expectancy at birth": 62.4, | |
"Female life expectancy at birth": 64.9, | |
"Male life expectancy at birth": 60.1 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2012, | |
"Life expectancy at birth": 62.2, | |
"Female life expectancy at birth": 64.7, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2011, | |
"Life expectancy at birth": 62, | |
"Female life expectancy at birth": 64.5, | |
"Male life expectancy at birth": 59.7 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2010, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2009, | |
"Life expectancy at birth": 61.6, | |
"Female life expectancy at birth": 64.1, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2008, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 63.8, | |
"Male life expectancy at birth": 59.1 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2007, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 63.5, | |
"Male life expectancy at birth": 58.8 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2006, | |
"Life expectancy at birth": 60.8, | |
"Female life expectancy at birth": 63.2, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2005, | |
"Life expectancy at birth": 60.4, | |
"Female life expectancy at birth": 62.8, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2004, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 62.4, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2003, | |
"Life expectancy at birth": 59.6, | |
"Female life expectancy at birth": 62, | |
"Male life expectancy at birth": 57.4 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2002, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 61.7, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2001, | |
"Life expectancy at birth": 59.1, | |
"Female life expectancy at birth": 61.5, | |
"Male life expectancy at birth": 56.9 | |
}, | |
{ | |
"Country": "Papua New Guinea", | |
"Year": 2000, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 61.3, | |
"Male life expectancy at birth": 56.7 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2015, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2014, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2013, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2012, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2011, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2010, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2009, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2008, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2007, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2006, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2005, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2004, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2003, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2002, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2001, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Paraguay", | |
"Year": 2000, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2015, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2014, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2013, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2012, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2011, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2010, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2009, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2008, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2007, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2006, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2005, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2004, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2003, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2002, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2001, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Peru", | |
"Year": 2000, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2015, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2014, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 65.2 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2013, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2012, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 65 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2011, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2010, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 71.2, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2009, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 65.2 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2008, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2007, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2006, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 64.2 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2005, | |
"Life expectancy at birth": 67, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2004, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 70.6, | |
"Male life expectancy at birth": 64.2 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2003, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2002, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2001, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 70, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Philippines", | |
"Year": 2000, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2015, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2014, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2013, | |
"Life expectancy at birth": 77.1, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2012, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2011, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2010, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2009, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 79.9, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2008, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 79.9, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2007, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2006, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2005, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2004, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2003, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2002, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2001, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Poland", | |
"Year": 2000, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2015, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2014, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2013, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2012, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2011, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2010, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2009, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2008, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 82, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2007, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2006, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 75.1 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2005, | |
"Life expectancy at birth": 77.7, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2004, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 81.3, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2003, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2002, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 73.7 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2001, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "Portugal", | |
"Year": 2000, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2015, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2014, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 79.9, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2013, | |
"Life expectancy at birth": 77.9, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2012, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2011, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 79.4, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2010, | |
"Life expectancy at birth": 77.3, | |
"Female life expectancy at birth": 79.2, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2009, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2008, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2007, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2006, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2005, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2004, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2003, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2002, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2001, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 75.4 | |
}, | |
{ | |
"Country": "Qatar", | |
"Year": 2000, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2015, | |
"Life expectancy at birth": 82.3, | |
"Female life expectancy at birth": 85.5, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2014, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 85.2, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2013, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 84.9, | |
"Male life expectancy at birth": 78.2 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2012, | |
"Life expectancy at birth": 81.2, | |
"Female life expectancy at birth": 84.4, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2011, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 84.4, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2010, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2009, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2008, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2007, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2006, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2005, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2004, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2003, | |
"Life expectancy at birth": 77.6, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2002, | |
"Life expectancy at birth": 77.1, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2001, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Republic of Korea", | |
"Year": 2000, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2015, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2014, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2013, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2012, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2011, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2010, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2009, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2008, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2007, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2006, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2005, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 63.3 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2004, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 64 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2003, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2002, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2001, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Republic of Moldova", | |
"Year": 2000, | |
"Life expectancy at birth": 67.1, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2015, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2014, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2013, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2012, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2011, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2010, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2009, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2008, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2007, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2006, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2005, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2004, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2003, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2002, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2001, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Romania", | |
"Year": 2000, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 74.3, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2015, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2014, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2013, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 64.2 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2012, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 63.7 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2011, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 63.5 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2010, | |
"Life expectancy at birth": 68.4, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2009, | |
"Life expectancy at birth": 68.2, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2008, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2007, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 73.8, | |
"Male life expectancy at birth": 61.1 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2006, | |
"Life expectancy at birth": 66.4, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2005, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2004, | |
"Life expectancy at birth": 64.9, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2003, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2002, | |
"Life expectancy at birth": 64.8, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2001, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 58.8 | |
}, | |
{ | |
"Country": "Russian Federation", | |
"Year": 2000, | |
"Life expectancy at birth": 65, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2015, | |
"Life expectancy at birth": 66.1, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2014, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2013, | |
"Life expectancy at birth": 65.2, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 60 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2012, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2011, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 69.1, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2010, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 68.1, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2009, | |
"Life expectancy at birth": 61, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 55.4 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2008, | |
"Life expectancy at birth": 60.8, | |
"Female life expectancy at birth": 66.2, | |
"Male life expectancy at birth": 55.4 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2007, | |
"Life expectancy at birth": 59.6, | |
"Female life expectancy at birth": 65.1, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2006, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 63.1, | |
"Male life expectancy at birth": 52.3 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2005, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 60.6, | |
"Male life expectancy at birth": 50.2 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2004, | |
"Life expectancy at birth": 53.4, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 48.4 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2003, | |
"Life expectancy at birth": 52, | |
"Female life expectancy at birth": 57.3, | |
"Male life expectancy at birth": 47 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2002, | |
"Life expectancy at birth": 50.7, | |
"Female life expectancy at birth": 56, | |
"Male life expectancy at birth": 45.7 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2001, | |
"Life expectancy at birth": 48.6, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 43.4 | |
}, | |
{ | |
"Country": "Rwanda", | |
"Year": 2000, | |
"Life expectancy at birth": 48.3, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 43.3 | |
}, | |
{ | |
"Country": "Saint Kitts and Nevis", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2015, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2014, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2011, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2010, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2009, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2008, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2005, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2004, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2003, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2002, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2001, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Saint Lucia", | |
"Year": 2000, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2015, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2014, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2013, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2012, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2011, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 70.8 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2010, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2009, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2008, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2007, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2006, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2005, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2004, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2003, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2002, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2001, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Saint Vincent and the Grenadines", | |
"Year": 2000, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2015, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2014, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2013, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2012, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2011, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2010, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2009, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2008, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2007, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2006, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2005, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2004, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2003, | |
"Life expectancy at birth": 70.9, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2002, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 74.1, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2001, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Samoa", | |
"Year": 2000, | |
"Life expectancy at birth": 70.2, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "San Marino", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2015, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 69.4, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2014, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 69.2, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2013, | |
"Life expectancy at birth": 67.1, | |
"Female life expectancy at birth": 69, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2012, | |
"Life expectancy at birth": 66.9, | |
"Female life expectancy at birth": 68.7, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2011, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2010, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 68.1, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2009, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 67.8, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2008, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 67.4, | |
"Male life expectancy at birth": 63.4 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2007, | |
"Life expectancy at birth": 65.1, | |
"Female life expectancy at birth": 67.1, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2006, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 62.7 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2005, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 66.2, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2004, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 65.7, | |
"Male life expectancy at birth": 61.9 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2003, | |
"Life expectancy at birth": 63.4, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2002, | |
"Life expectancy at birth": 63.1, | |
"Female life expectancy at birth": 64.9, | |
"Male life expectancy at birth": 61.2 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2001, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 64.7, | |
"Male life expectancy at birth": 61 | |
}, | |
{ | |
"Country": "Sao Tome and Principe", | |
"Year": 2000, | |
"Life expectancy at birth": 62.6, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 60.8 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2015, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2014, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2011, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2010, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2009, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2008, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2005, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2004, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2003, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2002, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2001, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Saudi Arabia", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2015, | |
"Life expectancy at birth": 66.7, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2014, | |
"Life expectancy at birth": 66.4, | |
"Female life expectancy at birth": 68.3, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2013, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 64 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2012, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 67.4, | |
"Male life expectancy at birth": 63.6 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2011, | |
"Life expectancy at birth": 64.9, | |
"Female life expectancy at birth": 66.7, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2010, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 65.8, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2009, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 64.9, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2008, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 61.4 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2007, | |
"Life expectancy at birth": 62.1, | |
"Female life expectancy at birth": 63.3, | |
"Male life expectancy at birth": 60.7 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2006, | |
"Life expectancy at birth": 61.3, | |
"Female life expectancy at birth": 62.6, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2005, | |
"Life expectancy at birth": 60.5, | |
"Female life expectancy at birth": 61.9, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2004, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2003, | |
"Life expectancy at birth": 59, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 57.3 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2002, | |
"Life expectancy at birth": 58.4, | |
"Female life expectancy at birth": 60, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2001, | |
"Life expectancy at birth": 57.9, | |
"Female life expectancy at birth": 59.4, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Senegal", | |
"Year": 2000, | |
"Life expectancy at birth": 57.5, | |
"Female life expectancy at birth": 59, | |
"Male life expectancy at birth": 56 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2015, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 78.4, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2014, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2013, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2011, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2010, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2009, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2008, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2005, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2004, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2003, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2002, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2001, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Serbia", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2015, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2014, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2013, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 68.8 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2012, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2011, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2010, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2009, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2008, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2007, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2006, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2005, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2004, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2003, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2002, | |
"Life expectancy at birth": 72.1, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2001, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Seychelles", | |
"Year": 2000, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2015, | |
"Life expectancy at birth": 50.1, | |
"Female life expectancy at birth": 50.8, | |
"Male life expectancy at birth": 49.3 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2014, | |
"Life expectancy at birth": 48.1, | |
"Female life expectancy at birth": 48.8, | |
"Male life expectancy at birth": 47.4 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2013, | |
"Life expectancy at birth": 50.4, | |
"Female life expectancy at birth": 51, | |
"Male life expectancy at birth": 49.8 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2012, | |
"Life expectancy at birth": 49.7, | |
"Female life expectancy at birth": 50.3, | |
"Male life expectancy at birth": 49.2 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2011, | |
"Life expectancy at birth": 48.9, | |
"Female life expectancy at birth": 49.5, | |
"Male life expectancy at birth": 48.3 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2010, | |
"Life expectancy at birth": 48.1, | |
"Female life expectancy at birth": 48.7, | |
"Male life expectancy at birth": 47.4 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2009, | |
"Life expectancy at birth": 47.1, | |
"Female life expectancy at birth": 47.8, | |
"Male life expectancy at birth": 46.4 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2008, | |
"Life expectancy at birth": 46.2, | |
"Female life expectancy at birth": 46.9, | |
"Male life expectancy at birth": 45.5 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2007, | |
"Life expectancy at birth": 45.3, | |
"Female life expectancy at birth": 46.2, | |
"Male life expectancy at birth": 44.5 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2006, | |
"Life expectancy at birth": 44.3, | |
"Female life expectancy at birth": 45.4, | |
"Male life expectancy at birth": 43.3 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2005, | |
"Life expectancy at birth": 43.3, | |
"Female life expectancy at birth": 44.5, | |
"Male life expectancy at birth": 42 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2004, | |
"Life expectancy at birth": 42.3, | |
"Female life expectancy at birth": 43.8, | |
"Male life expectancy at birth": 40.9 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2003, | |
"Life expectancy at birth": 41.5, | |
"Female life expectancy at birth": 43, | |
"Male life expectancy at birth": 40 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2002, | |
"Life expectancy at birth": 40.8, | |
"Female life expectancy at birth": 42.2, | |
"Male life expectancy at birth": 39.5 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2001, | |
"Life expectancy at birth": 40.1, | |
"Female life expectancy at birth": 41, | |
"Male life expectancy at birth": 39.1 | |
}, | |
{ | |
"Country": "Sierra Leone", | |
"Year": 2000, | |
"Life expectancy at birth": 39, | |
"Female life expectancy at birth": 39.5, | |
"Male life expectancy at birth": 38.4 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2015, | |
"Life expectancy at birth": 83.1, | |
"Female life expectancy at birth": 86.1, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2014, | |
"Life expectancy at birth": 82.9, | |
"Female life expectancy at birth": 85.9, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2013, | |
"Life expectancy at birth": 82.7, | |
"Female life expectancy at birth": 85.7, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2012, | |
"Life expectancy at birth": 82.5, | |
"Female life expectancy at birth": 85.5, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2011, | |
"Life expectancy at birth": 82.2, | |
"Female life expectancy at birth": 85.1, | |
"Male life expectancy at birth": 79.3 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2010, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84.7, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2009, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 84.2, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2008, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.8, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2007, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 78.7 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2006, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 83.1, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2005, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 77.8 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2004, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 77.2 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2003, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2002, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2001, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Singapore", | |
"Year": 2000, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2015, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2014, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2013, | |
"Life expectancy at birth": 76.1, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2012, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2011, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2010, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2009, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2008, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2007, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2006, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2005, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2004, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2003, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2002, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2001, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 69.2 | |
}, | |
{ | |
"Country": "Slovakia", | |
"Year": 2000, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2015, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2014, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2013, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2012, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2011, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 76.6 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2010, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2009, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2008, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 82.3, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2007, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 74.6 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2006, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 81.8, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2005, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2004, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 80.8, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2003, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2002, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2001, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Slovenia", | |
"Year": 2000, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2015, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2014, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2013, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2012, | |
"Life expectancy at birth": 68.7, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 67.3 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2011, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 70, | |
"Male life expectancy at birth": 67.2 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2010, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 67 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2009, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 69.5, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2008, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 69.4, | |
"Male life expectancy at birth": 66.7 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2007, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 69, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2006, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 69.1, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2005, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 68.9, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2004, | |
"Life expectancy at birth": 67.1, | |
"Female life expectancy at birth": 68.7, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2003, | |
"Life expectancy at birth": 66.8, | |
"Female life expectancy at birth": 68.5, | |
"Male life expectancy at birth": 65.4 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2002, | |
"Life expectancy at birth": 66.5, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2001, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 67.7, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Solomon Islands", | |
"Year": 2000, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2015, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56.6, | |
"Male life expectancy at birth": 53.5 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2014, | |
"Life expectancy at birth": 54.3, | |
"Female life expectancy at birth": 56, | |
"Male life expectancy at birth": 52.7 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2013, | |
"Life expectancy at birth": 54.2, | |
"Female life expectancy at birth": 55.7, | |
"Male life expectancy at birth": 52.7 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2012, | |
"Life expectancy at birth": 53.1, | |
"Female life expectancy at birth": 54.9, | |
"Male life expectancy at birth": 51.3 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2011, | |
"Life expectancy at birth": 53.1, | |
"Female life expectancy at birth": 54.7, | |
"Male life expectancy at birth": 51.5 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2010, | |
"Life expectancy at birth": 52.4, | |
"Female life expectancy at birth": 54.1, | |
"Male life expectancy at birth": 50.8 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2009, | |
"Life expectancy at birth": 52.2, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 50.7 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2008, | |
"Life expectancy at birth": 51.9, | |
"Female life expectancy at birth": 53.5, | |
"Male life expectancy at birth": 50.4 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2007, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 53.1, | |
"Male life expectancy at birth": 50 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2006, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 50.1 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2005, | |
"Life expectancy at birth": 51.6, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2004, | |
"Life expectancy at birth": 51.2, | |
"Female life expectancy at birth": 52.6, | |
"Male life expectancy at birth": 49.8 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2003, | |
"Life expectancy at birth": 51.1, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 49.7 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2002, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 52.3, | |
"Male life expectancy at birth": 49.4 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2001, | |
"Life expectancy at birth": 50.7, | |
"Female life expectancy at birth": 52.1, | |
"Male life expectancy at birth": 49.3 | |
}, | |
{ | |
"Country": "Somalia", | |
"Year": 2000, | |
"Life expectancy at birth": 50.5, | |
"Female life expectancy at birth": 51.8, | |
"Male life expectancy at birth": 49.1 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2015, | |
"Life expectancy at birth": 62.9, | |
"Female life expectancy at birth": 66.2, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2014, | |
"Life expectancy at birth": 62, | |
"Female life expectancy at birth": 65.5, | |
"Male life expectancy at birth": 58.4 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2013, | |
"Life expectancy at birth": 60.9, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 57.4 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2012, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 62.1, | |
"Male life expectancy at birth": 56.2 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2011, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 61.4, | |
"Male life expectancy at birth": 56.1 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2010, | |
"Life expectancy at birth": 58, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 55.5 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2009, | |
"Life expectancy at birth": 56.5, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 54.2 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2008, | |
"Life expectancy at birth": 55.3, | |
"Female life expectancy at birth": 57.2, | |
"Male life expectancy at birth": 53.2 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2007, | |
"Life expectancy at birth": 54.5, | |
"Female life expectancy at birth": 56.3, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2006, | |
"Life expectancy at birth": 54, | |
"Female life expectancy at birth": 55.7, | |
"Male life expectancy at birth": 52.2 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2005, | |
"Life expectancy at birth": 53.8, | |
"Female life expectancy at birth": 55.5, | |
"Male life expectancy at birth": 51.9 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2004, | |
"Life expectancy at birth": 53.7, | |
"Female life expectancy at birth": 55.4, | |
"Male life expectancy at birth": 51.8 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2003, | |
"Life expectancy at birth": 54, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 52 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2002, | |
"Life expectancy at birth": 54.9, | |
"Female life expectancy at birth": 57.1, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2001, | |
"Life expectancy at birth": 56, | |
"Female life expectancy at birth": 58.5, | |
"Male life expectancy at birth": 53.5 | |
}, | |
{ | |
"Country": "South Africa", | |
"Year": 2000, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 60.1, | |
"Male life expectancy at birth": 54.6 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2015, | |
"Life expectancy at birth": 57.3, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 56.1 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2014, | |
"Life expectancy at birth": 56.6, | |
"Female life expectancy at birth": 58, | |
"Male life expectancy at birth": 55.3 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2013, | |
"Life expectancy at birth": 56.4, | |
"Female life expectancy at birth": 57.5, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2012, | |
"Life expectancy at birth": 56, | |
"Female life expectancy at birth": 57.1, | |
"Male life expectancy at birth": 55 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2011, | |
"Life expectancy at birth": 55.4, | |
"Female life expectancy at birth": 56.5, | |
"Male life expectancy at birth": 54.4 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2010, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56, | |
"Male life expectancy at birth": 54.1 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2009, | |
"Life expectancy at birth": 54.3, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 53.3 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2008, | |
"Life expectancy at birth": 53.6, | |
"Female life expectancy at birth": 54.7, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2007, | |
"Life expectancy at birth": 53.1, | |
"Female life expectancy at birth": 54.1, | |
"Male life expectancy at birth": 52 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2006, | |
"Life expectancy at birth": 52.5, | |
"Female life expectancy at birth": 53.6, | |
"Male life expectancy at birth": 51.4 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2005, | |
"Life expectancy at birth": 51.9, | |
"Female life expectancy at birth": 53, | |
"Male life expectancy at birth": 50.9 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2004, | |
"Life expectancy at birth": 51.4, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 50.3 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2003, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 52, | |
"Male life expectancy at birth": 49.6 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2002, | |
"Life expectancy at birth": 50.2, | |
"Female life expectancy at birth": 51.4, | |
"Male life expectancy at birth": 49 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2001, | |
"Life expectancy at birth": 49.6, | |
"Female life expectancy at birth": 50.8, | |
"Male life expectancy at birth": 48.4 | |
}, | |
{ | |
"Country": "South Sudan", | |
"Year": 2000, | |
"Life expectancy at birth": 48.9, | |
"Female life expectancy at birth": 50.2, | |
"Male life expectancy at birth": 47.7 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2015, | |
"Life expectancy at birth": 82.8, | |
"Female life expectancy at birth": 85.5, | |
"Male life expectancy at birth": 80.1 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2014, | |
"Life expectancy at birth": 82.6, | |
"Female life expectancy at birth": 85.3, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2013, | |
"Life expectancy at birth": 82.4, | |
"Female life expectancy at birth": 85.1, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2012, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84.8, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2011, | |
"Life expectancy at birth": 82.1, | |
"Female life expectancy at birth": 85, | |
"Male life expectancy at birth": 79.1 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2010, | |
"Life expectancy at birth": 81.9, | |
"Female life expectancy at birth": 85, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2009, | |
"Life expectancy at birth": 81.6, | |
"Female life expectancy at birth": 84.7, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2008, | |
"Life expectancy at birth": 81.3, | |
"Female life expectancy at birth": 84.4, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2007, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 84.2, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2006, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 84.1, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2005, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2004, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 76.7 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2003, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2002, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2001, | |
"Life expectancy at birth": 79.4, | |
"Female life expectancy at birth": 82.8, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "Spain", | |
"Year": 2000, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2015, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2014, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2013, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2012, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2011, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 71 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2010, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2009, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2008, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2007, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2006, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2005, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2004, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2003, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2002, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2001, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Sri Lanka", | |
"Year": 2000, | |
"Life expectancy at birth": 71.5, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2015, | |
"Life expectancy at birth": 64.1, | |
"Female life expectancy at birth": 65.9, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2014, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 65.6, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2013, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 65.3, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2012, | |
"Life expectancy at birth": 63.2, | |
"Female life expectancy at birth": 65, | |
"Male life expectancy at birth": 61.4 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2011, | |
"Life expectancy at birth": 62.7, | |
"Female life expectancy at birth": 64.6, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2010, | |
"Life expectancy at birth": 62.5, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 60.7 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2009, | |
"Life expectancy at birth": 62, | |
"Female life expectancy at birth": 63.9, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2008, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 63.5, | |
"Male life expectancy at birth": 60.1 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2007, | |
"Life expectancy at birth": 61.4, | |
"Female life expectancy at birth": 63.2, | |
"Male life expectancy at birth": 59.7 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2006, | |
"Life expectancy at birth": 61, | |
"Female life expectancy at birth": 62.8, | |
"Male life expectancy at birth": 59.2 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2005, | |
"Life expectancy at birth": 60.7, | |
"Female life expectancy at birth": 62.5, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2004, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 61.8, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2003, | |
"Life expectancy at birth": 59.6, | |
"Female life expectancy at birth": 61.5, | |
"Male life expectancy at birth": 57.7 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2002, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 61.2, | |
"Male life expectancy at birth": 57.6 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2001, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 60.8, | |
"Male life expectancy at birth": 57.1 | |
}, | |
{ | |
"Country": "Sudan", | |
"Year": 2000, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2015, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 68.6 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2014, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2013, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2012, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2011, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2010, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2009, | |
"Life expectancy at birth": 70, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2008, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2007, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2006, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2005, | |
"Life expectancy at birth": 68.9, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2004, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 64.9 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2003, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2002, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2001, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Suriname", | |
"Year": 2000, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 70.8, | |
"Male life expectancy at birth": 64.2 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2015, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2014, | |
"Life expectancy at birth": 58.4, | |
"Female life expectancy at birth": 60.7, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2013, | |
"Life expectancy at birth": 57.6, | |
"Female life expectancy at birth": 60.1, | |
"Male life expectancy at birth": 55 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2012, | |
"Life expectancy at birth": 56.5, | |
"Female life expectancy at birth": 59.1, | |
"Male life expectancy at birth": 53.8 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2011, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 57.5, | |
"Male life expectancy at birth": 52.6 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2010, | |
"Life expectancy at birth": 53.6, | |
"Female life expectancy at birth": 55.7, | |
"Male life expectancy at birth": 51.5 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2009, | |
"Life expectancy at birth": 52.6, | |
"Female life expectancy at birth": 54.6, | |
"Male life expectancy at birth": 50.4 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2008, | |
"Life expectancy at birth": 51.4, | |
"Female life expectancy at birth": 53.5, | |
"Male life expectancy at birth": 49.2 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2007, | |
"Life expectancy at birth": 50, | |
"Female life expectancy at birth": 51.2, | |
"Male life expectancy at birth": 48.7 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2006, | |
"Life expectancy at birth": 47.8, | |
"Female life expectancy at birth": 48.6, | |
"Male life expectancy at birth": 46.9 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2005, | |
"Life expectancy at birth": 46, | |
"Female life expectancy at birth": 46.7, | |
"Male life expectancy at birth": 45.2 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2004, | |
"Life expectancy at birth": 45.6, | |
"Female life expectancy at birth": 46.4, | |
"Male life expectancy at birth": 44.8 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2003, | |
"Life expectancy at birth": 45.9, | |
"Female life expectancy at birth": 46.8, | |
"Male life expectancy at birth": 44.9 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2002, | |
"Life expectancy at birth": 46.4, | |
"Female life expectancy at birth": 47.5, | |
"Male life expectancy at birth": 45.3 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2001, | |
"Life expectancy at birth": 47.1, | |
"Female life expectancy at birth": 48.4, | |
"Male life expectancy at birth": 45.9 | |
}, | |
{ | |
"Country": "Swaziland", | |
"Year": 2000, | |
"Life expectancy at birth": 48.4, | |
"Female life expectancy at birth": 49.8, | |
"Male life expectancy at birth": 47 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2015, | |
"Life expectancy at birth": 82.4, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 80.7 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2014, | |
"Life expectancy at birth": 82.3, | |
"Female life expectancy at birth": 84.1, | |
"Male life expectancy at birth": 80.6 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2013, | |
"Life expectancy at birth": 81.9, | |
"Female life expectancy at birth": 83.7, | |
"Male life expectancy at birth": 80.2 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2012, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2011, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 79.8 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2010, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2009, | |
"Life expectancy at birth": 81.4, | |
"Female life expectancy at birth": 83.4, | |
"Male life expectancy at birth": 79.3 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2008, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.2, | |
"Male life expectancy at birth": 79 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2007, | |
"Life expectancy at birth": 80.9, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2006, | |
"Life expectancy at birth": 80.8, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2005, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 82.7, | |
"Male life expectancy at birth": 78.3 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2004, | |
"Life expectancy at birth": 80.3, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2003, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2002, | |
"Life expectancy at birth": 79.9, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 77.7 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2001, | |
"Life expectancy at birth": 79.8, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "Sweden", | |
"Year": 2000, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 81.9, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2015, | |
"Life expectancy at birth": 83.4, | |
"Female life expectancy at birth": 85.3, | |
"Male life expectancy at birth": 81.3 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2014, | |
"Life expectancy at birth": 83.2, | |
"Female life expectancy at birth": 85.1, | |
"Male life expectancy at birth": 81.1 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2013, | |
"Life expectancy at birth": 83, | |
"Female life expectancy at birth": 85, | |
"Male life expectancy at birth": 80.8 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2012, | |
"Life expectancy at birth": 82.7, | |
"Female life expectancy at birth": 84.7, | |
"Male life expectancy at birth": 80.5 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2011, | |
"Life expectancy at birth": 82.6, | |
"Female life expectancy at birth": 84.8, | |
"Male life expectancy at birth": 80.3 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2010, | |
"Life expectancy at birth": 82.3, | |
"Female life expectancy at birth": 84.5, | |
"Male life expectancy at birth": 80 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2009, | |
"Life expectancy at birth": 82.1, | |
"Female life expectancy at birth": 84.3, | |
"Male life expectancy at birth": 79.6 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2008, | |
"Life expectancy at birth": 82, | |
"Female life expectancy at birth": 84.3, | |
"Male life expectancy at birth": 79.5 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2007, | |
"Life expectancy at birth": 81.7, | |
"Female life expectancy at birth": 84, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2006, | |
"Life expectancy at birth": 81.5, | |
"Female life expectancy at birth": 83.9, | |
"Male life expectancy at birth": 78.9 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2005, | |
"Life expectancy at birth": 81.1, | |
"Female life expectancy at birth": 83.6, | |
"Male life expectancy at birth": 78.5 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2004, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 83.5, | |
"Male life expectancy at birth": 78.4 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2003, | |
"Life expectancy at birth": 80.5, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 77.8 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2002, | |
"Life expectancy at birth": 80.4, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.6 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2001, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 77.3 | |
}, | |
{ | |
"Country": "Switzerland", | |
"Year": 2000, | |
"Life expectancy at birth": 79.7, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2015, | |
"Life expectancy at birth": 64.5, | |
"Female life expectancy at birth": 69.9, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2014, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2013, | |
"Life expectancy at birth": 63.6, | |
"Female life expectancy at birth": 69.1, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2012, | |
"Life expectancy at birth": 62.8, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2011, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2010, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2009, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2008, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2007, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2006, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2005, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2004, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2003, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2002, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 75.2, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2001, | |
"Life expectancy at birth": 72.7, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Syrian Arab Republic", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2015, | |
"Life expectancy at birth": 69.7, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2014, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2013, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2012, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2011, | |
"Life expectancy at birth": 68.1, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2010, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 71.4, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2009, | |
"Life expectancy at birth": 66.7, | |
"Female life expectancy at birth": 71, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2008, | |
"Life expectancy at birth": 66.4, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 62.9 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2007, | |
"Life expectancy at birth": 66.1, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 62.6 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2006, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2005, | |
"Life expectancy at birth": 65.5, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2004, | |
"Life expectancy at birth": 65.9, | |
"Female life expectancy at birth": 70.2, | |
"Male life expectancy at birth": 62.3 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2003, | |
"Life expectancy at birth": 65.2, | |
"Female life expectancy at birth": 69.4, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2002, | |
"Life expectancy at birth": 64.3, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2001, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 60.6 | |
}, | |
{ | |
"Country": "Tajikistan", | |
"Year": 2000, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 67.6, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2015, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 78, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2014, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2013, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2012, | |
"Life expectancy at birth": 74.3, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2011, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2010, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2009, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2008, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2007, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.5, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2006, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2005, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2004, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2003, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2002, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 68.2 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2001, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 68 | |
}, | |
{ | |
"Country": "Thailand", | |
"Year": 2000, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2015, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 73.5 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2014, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2013, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2012, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2011, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2010, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2009, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 76.7, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2008, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2007, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2006, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2005, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2004, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2003, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2002, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2001, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "The former Yugoslav republic of Macedonia", | |
"Year": 2000, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2015, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 66.6 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2014, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2013, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 69.5, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2012, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 69.2, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2011, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 68.8, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2010, | |
"Life expectancy at birth": 66.9, | |
"Female life expectancy at birth": 68.4, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2009, | |
"Life expectancy at birth": 66.6, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2008, | |
"Life expectancy at birth": 66.2, | |
"Female life expectancy at birth": 67.4, | |
"Male life expectancy at birth": 65.1 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2007, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 66.8, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2006, | |
"Life expectancy at birth": 64.9, | |
"Female life expectancy at birth": 66, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2005, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 65, | |
"Male life expectancy at birth": 62.4 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2004, | |
"Life expectancy at birth": 62.3, | |
"Female life expectancy at birth": 63.8, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2003, | |
"Life expectancy at birth": 61, | |
"Female life expectancy at birth": 62.7, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2002, | |
"Life expectancy at birth": 60.2, | |
"Female life expectancy at birth": 61.8, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2001, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 61, | |
"Male life expectancy at birth": 57.9 | |
}, | |
{ | |
"Country": "Timor-Leste", | |
"Year": 2000, | |
"Life expectancy at birth": 58.7, | |
"Female life expectancy at birth": 60.1, | |
"Male life expectancy at birth": 57.3 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2015, | |
"Life expectancy at birth": 59.9, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 58.6 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2014, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 60.9, | |
"Male life expectancy at birth": 58.4 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2013, | |
"Life expectancy at birth": 59.4, | |
"Female life expectancy at birth": 60.5, | |
"Male life expectancy at birth": 58.3 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2012, | |
"Life expectancy at birth": 58.9, | |
"Female life expectancy at birth": 59.9, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2011, | |
"Life expectancy at birth": 58.3, | |
"Female life expectancy at birth": 59.2, | |
"Male life expectancy at birth": 57.4 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2010, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 58.2, | |
"Male life expectancy at birth": 56.6 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2009, | |
"Life expectancy at birth": 56.7, | |
"Female life expectancy at birth": 57.4, | |
"Male life expectancy at birth": 55.9 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2008, | |
"Life expectancy at birth": 56.2, | |
"Female life expectancy at birth": 56.9, | |
"Male life expectancy at birth": 55.3 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2007, | |
"Life expectancy at birth": 55.9, | |
"Female life expectancy at birth": 56.8, | |
"Male life expectancy at birth": 55 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2006, | |
"Life expectancy at birth": 55.7, | |
"Female life expectancy at birth": 56.6, | |
"Male life expectancy at birth": 54.7 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2005, | |
"Life expectancy at birth": 55, | |
"Female life expectancy at birth": 56.1, | |
"Male life expectancy at birth": 53.9 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2004, | |
"Life expectancy at birth": 54.9, | |
"Female life expectancy at birth": 56, | |
"Male life expectancy at birth": 53.8 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2003, | |
"Life expectancy at birth": 54.7, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 53.5 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2002, | |
"Life expectancy at birth": 54.7, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 53.4 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2001, | |
"Life expectancy at birth": 54.6, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 53.3 | |
}, | |
{ | |
"Country": "Togo", | |
"Year": 2000, | |
"Life expectancy at birth": 54.6, | |
"Female life expectancy at birth": 55.9, | |
"Male life expectancy at birth": 53.3 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2015, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2014, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2013, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76, | |
"Male life expectancy at birth": 70.4 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2012, | |
"Life expectancy at birth": 73, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2011, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 70.2 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2010, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2009, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2008, | |
"Life expectancy at birth": 72.6, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2007, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 75.3, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2006, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 75.1, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2005, | |
"Life expectancy at birth": 72.3, | |
"Female life expectancy at birth": 74.9, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2004, | |
"Life expectancy at birth": 72.2, | |
"Female life expectancy at birth": 74.7, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2003, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2002, | |
"Life expectancy at birth": 71.9, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2001, | |
"Life expectancy at birth": 71.8, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Tonga", | |
"Year": 2000, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2015, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2014, | |
"Life expectancy at birth": 71.1, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2013, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 74.5, | |
"Male life expectancy at birth": 67.7 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2012, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 74.4, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2011, | |
"Life expectancy at birth": 70.6, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 67.4 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2010, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 73.9, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2009, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 66.8 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2008, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 66.5 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2007, | |
"Life expectancy at birth": 69.7, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 66.4 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2006, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 66.2 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2005, | |
"Life expectancy at birth": 69.5, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2004, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2003, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2002, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 73, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2001, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Trinidad and Tobago", | |
"Year": 2000, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 72.8, | |
"Male life expectancy at birth": 65.6 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2015, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 73 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2014, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2013, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2012, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2011, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.4, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2010, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 72.5 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2009, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 72.4 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2008, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2007, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2006, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 72.1 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2005, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2004, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2003, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 71.4 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2002, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2001, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Tunisia", | |
"Year": 2000, | |
"Life expectancy at birth": 72.9, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2015, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2014, | |
"Life expectancy at birth": 75.5, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 72.3 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2013, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 72 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2012, | |
"Life expectancy at birth": 74.8, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 71.6 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2011, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2010, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2009, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 70.6 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2008, | |
"Life expectancy at birth": 73.5, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2007, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2006, | |
"Life expectancy at birth": 72.8, | |
"Female life expectancy at birth": 76.3, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2005, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2004, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 75.4, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2003, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 75, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2002, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2001, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 74.2, | |
"Male life expectancy at birth": 67.5 | |
}, | |
{ | |
"Country": "Turkey", | |
"Year": 2000, | |
"Life expectancy at birth": 70.4, | |
"Female life expectancy at birth": 73.8, | |
"Male life expectancy at birth": 67.1 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2015, | |
"Life expectancy at birth": 66.3, | |
"Female life expectancy at birth": 70.5, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2014, | |
"Life expectancy at birth": 66, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2013, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 61.2 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2012, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 69.7, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2011, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2010, | |
"Life expectancy at birth": 65.8, | |
"Female life expectancy at birth": 70.1, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2009, | |
"Life expectancy at birth": 65.6, | |
"Female life expectancy at birth": 69.8, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2008, | |
"Life expectancy at birth": 64.5, | |
"Female life expectancy at birth": 68.8, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2007, | |
"Life expectancy at birth": 64.1, | |
"Female life expectancy at birth": 68.6, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2006, | |
"Life expectancy at birth": 63.7, | |
"Female life expectancy at birth": 68.2, | |
"Male life expectancy at birth": 59.6 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2005, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 67.7, | |
"Male life expectancy at birth": 59.1 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2004, | |
"Life expectancy at birth": 63.5, | |
"Female life expectancy at birth": 67.7, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2003, | |
"Life expectancy at birth": 63.4, | |
"Female life expectancy at birth": 67.7, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2002, | |
"Life expectancy at birth": 63.3, | |
"Female life expectancy at birth": 67.4, | |
"Male life expectancy at birth": 59.4 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2001, | |
"Life expectancy at birth": 64, | |
"Female life expectancy at birth": 68.1, | |
"Male life expectancy at birth": 60.1 | |
}, | |
{ | |
"Country": "Turkmenistan", | |
"Year": 2000, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 67.9, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "Tuvalu", | |
"Year": 2013, | |
"Life expectancy at birth": "", | |
"Female life expectancy at birth": "", | |
"Male life expectancy at birth": "" | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2015, | |
"Life expectancy at birth": 62.3, | |
"Female life expectancy at birth": 64.3, | |
"Male life expectancy at birth": 60.3 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2014, | |
"Life expectancy at birth": 61.5, | |
"Female life expectancy at birth": 63.7, | |
"Male life expectancy at birth": 59.3 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2013, | |
"Life expectancy at birth": 60.7, | |
"Female life expectancy at birth": 62.4, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2012, | |
"Life expectancy at birth": 60, | |
"Female life expectancy at birth": 61.1, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2011, | |
"Life expectancy at birth": 59.3, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 58.1 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2010, | |
"Life expectancy at birth": 58.4, | |
"Female life expectancy at birth": 59.5, | |
"Male life expectancy at birth": 57.2 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2009, | |
"Life expectancy at birth": 57.5, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 56.3 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2008, | |
"Life expectancy at birth": 56.3, | |
"Female life expectancy at birth": 57.4, | |
"Male life expectancy at birth": 55.1 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2007, | |
"Life expectancy at birth": 55.5, | |
"Female life expectancy at birth": 56.6, | |
"Male life expectancy at birth": 54.3 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2006, | |
"Life expectancy at birth": 54.9, | |
"Female life expectancy at birth": 56.2, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2005, | |
"Life expectancy at birth": 53.2, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 51.9 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2004, | |
"Life expectancy at birth": 51.3, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 49.9 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2003, | |
"Life expectancy at birth": 50.1, | |
"Female life expectancy at birth": 51.3, | |
"Male life expectancy at birth": 48.8 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2002, | |
"Life expectancy at birth": 48.8, | |
"Female life expectancy at birth": 50.1, | |
"Male life expectancy at birth": 47.4 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2001, | |
"Life expectancy at birth": 47.7, | |
"Female life expectancy at birth": 49, | |
"Male life expectancy at birth": 46.4 | |
}, | |
{ | |
"Country": "Uganda", | |
"Year": 2000, | |
"Life expectancy at birth": 46.6, | |
"Female life expectancy at birth": 48, | |
"Male life expectancy at birth": 45.1 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2015, | |
"Life expectancy at birth": 71.3, | |
"Female life expectancy at birth": 76.1, | |
"Male life expectancy at birth": 66.3 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2014, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2013, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 75.8, | |
"Male life expectancy at birth": 66 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2012, | |
"Life expectancy at birth": 70.7, | |
"Female life expectancy at birth": 75.6, | |
"Male life expectancy at birth": 65.7 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2011, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 75.5, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2010, | |
"Life expectancy at birth": 69.8, | |
"Female life expectancy at birth": 74.8, | |
"Male life expectancy at birth": 64.7 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2009, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 74.6, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2008, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 73.8, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2007, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 61.6 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2006, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2005, | |
"Life expectancy at birth": 67, | |
"Female life expectancy at birth": 73.1, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2004, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 61.8 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2003, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 73.3, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2002, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2001, | |
"Life expectancy at birth": 67.7, | |
"Female life expectancy at birth": 73.5, | |
"Male life expectancy at birth": 62.2 | |
}, | |
{ | |
"Country": "Ukraine", | |
"Year": 2000, | |
"Life expectancy at birth": 67.5, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 62 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2015, | |
"Life expectancy at birth": 77.1, | |
"Female life expectancy at birth": 78.6, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2014, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2013, | |
"Life expectancy at birth": 76.7, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 76.1 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2012, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 75.9 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2011, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2010, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2009, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 77.5, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2008, | |
"Life expectancy at birth": 75.8, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 75.1 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2007, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 77.2, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2006, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 77, | |
"Male life expectancy at birth": 74.7 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2005, | |
"Life expectancy at birth": 75.3, | |
"Female life expectancy at birth": 76.8, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2004, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 76.6, | |
"Male life expectancy at birth": 74.3 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2003, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 76.4, | |
"Male life expectancy at birth": 74.1 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2002, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 76.2, | |
"Male life expectancy at birth": 73.9 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2001, | |
"Life expectancy at birth": 74.5, | |
"Female life expectancy at birth": 75.9, | |
"Male life expectancy at birth": 73.6 | |
}, | |
{ | |
"Country": "United Arab Emirates", | |
"Year": 2000, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 75.7, | |
"Male life expectancy at birth": 73.4 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2015, | |
"Life expectancy at birth": 81.2, | |
"Female life expectancy at birth": 83, | |
"Male life expectancy at birth": 79.4 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2014, | |
"Life expectancy at birth": 81, | |
"Female life expectancy at birth": 82.9, | |
"Male life expectancy at birth": 79.2 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2013, | |
"Life expectancy at birth": 80.7, | |
"Female life expectancy at birth": 82.6, | |
"Male life expectancy at birth": 78.8 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2012, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.4, | |
"Male life expectancy at birth": 78.7 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2011, | |
"Life expectancy at birth": 80.6, | |
"Female life expectancy at birth": 82.5, | |
"Male life expectancy at birth": 78.6 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2010, | |
"Life expectancy at birth": 80.2, | |
"Female life expectancy at birth": 82.2, | |
"Male life expectancy at birth": 78.1 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2009, | |
"Life expectancy at birth": 80.1, | |
"Female life expectancy at birth": 82.1, | |
"Male life expectancy at birth": 77.9 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2008, | |
"Life expectancy at birth": 79.6, | |
"Female life expectancy at birth": 81.7, | |
"Male life expectancy at birth": 77.5 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2007, | |
"Life expectancy at birth": 79.5, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 77.4 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2006, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 77.1 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2005, | |
"Life expectancy at birth": 79, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2004, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2003, | |
"Life expectancy at birth": 78.3, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2002, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 75.8 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2001, | |
"Life expectancy at birth": 78, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 75.6 | |
}, | |
{ | |
"Country": "United Kingdom of Great Britain and Northern Ireland", | |
"Year": 2000, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 75.3 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2015, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 63.8, | |
"Male life expectancy at birth": 59.9 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2014, | |
"Life expectancy at birth": 60.7, | |
"Female life expectancy at birth": 62.8, | |
"Male life expectancy at birth": 58.7 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2013, | |
"Life expectancy at birth": 59.7, | |
"Female life expectancy at birth": 61.7, | |
"Male life expectancy at birth": 57.8 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2012, | |
"Life expectancy at birth": 58.6, | |
"Female life expectancy at birth": 60.3, | |
"Male life expectancy at birth": 56.9 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2011, | |
"Life expectancy at birth": 58.3, | |
"Female life expectancy at birth": 59.8, | |
"Male life expectancy at birth": 56.8 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2010, | |
"Life expectancy at birth": 57.5, | |
"Female life expectancy at birth": 58.6, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2009, | |
"Life expectancy at birth": 56.9, | |
"Female life expectancy at birth": 57.9, | |
"Male life expectancy at birth": 55.8 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2008, | |
"Life expectancy at birth": 56.2, | |
"Female life expectancy at birth": 57.2, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2007, | |
"Life expectancy at birth": 54.5, | |
"Female life expectancy at birth": 55.3, | |
"Male life expectancy at birth": 53.7 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2006, | |
"Life expectancy at birth": 53.1, | |
"Female life expectancy at birth": 53.8, | |
"Male life expectancy at birth": 52.4 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2005, | |
"Life expectancy at birth": 52.2, | |
"Female life expectancy at birth": 52.9, | |
"Male life expectancy at birth": 51.6 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2004, | |
"Life expectancy at birth": 51.5, | |
"Female life expectancy at birth": 52.2, | |
"Male life expectancy at birth": 50.8 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2003, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 51.5, | |
"Male life expectancy at birth": 50.1 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2002, | |
"Life expectancy at birth": 50.2, | |
"Female life expectancy at birth": 50.9, | |
"Male life expectancy at birth": 49.5 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2001, | |
"Life expectancy at birth": 49.6, | |
"Female life expectancy at birth": 50.4, | |
"Male life expectancy at birth": 48.9 | |
}, | |
{ | |
"Country": "United Republic of Tanzania", | |
"Year": 2000, | |
"Life expectancy at birth": 49.2, | |
"Female life expectancy at birth": 50, | |
"Male life expectancy at birth": 48.4 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2015, | |
"Life expectancy at birth": 79.3, | |
"Female life expectancy at birth": 81.6, | |
"Male life expectancy at birth": 76.9 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2014, | |
"Life expectancy at birth": 79.1, | |
"Female life expectancy at birth": 81.5, | |
"Male life expectancy at birth": 76.8 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2013, | |
"Life expectancy at birth": 78.9, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 76.5 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2012, | |
"Life expectancy at birth": 78.8, | |
"Female life expectancy at birth": 81.2, | |
"Male life expectancy at birth": 76.4 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2011, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 76.3 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2010, | |
"Life expectancy at birth": 78.7, | |
"Female life expectancy at birth": 81.1, | |
"Male life expectancy at birth": 76.2 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2009, | |
"Life expectancy at birth": 78.5, | |
"Female life expectancy at birth": 80.9, | |
"Male life expectancy at birth": 76 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2008, | |
"Life expectancy at birth": 78.2, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 75.7 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2007, | |
"Life expectancy at birth": 78.1, | |
"Female life expectancy at birth": 80.6, | |
"Male life expectancy at birth": 75.5 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2006, | |
"Life expectancy at birth": 77.8, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 75.2 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2005, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2004, | |
"Life expectancy at birth": 77.5, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 74.9 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2003, | |
"Life expectancy at birth": 77.2, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 74.5 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2002, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 74.4 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2001, | |
"Life expectancy at birth": 76.9, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 74.2 | |
}, | |
{ | |
"Country": "United States of America", | |
"Year": 2000, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 74 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2015, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2014, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 73.2 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2013, | |
"Life expectancy at birth": 76.8, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 73.1 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2012, | |
"Life expectancy at birth": 76.5, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 72.8 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2011, | |
"Life expectancy at birth": 77, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 73.3 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2010, | |
"Life expectancy at birth": 76.3, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 72.7 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2009, | |
"Life expectancy at birth": 76.6, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2008, | |
"Life expectancy at birth": 76.4, | |
"Female life expectancy at birth": 79.6, | |
"Male life expectancy at birth": 72.9 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2007, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 71.9 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2006, | |
"Life expectancy at birth": 76.2, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 72.6 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2005, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 72.2 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2004, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 71.8 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2003, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 79, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2002, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 71.7 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2001, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 78.8, | |
"Male life expectancy at birth": 71.5 | |
}, | |
{ | |
"Country": "Uruguay", | |
"Year": 2000, | |
"Life expectancy at birth": 75.1, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 71.2 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2015, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 66.1 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2014, | |
"Life expectancy at birth": 69.2, | |
"Female life expectancy at birth": 72.6, | |
"Male life expectancy at birth": 65.9 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2013, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 72.4, | |
"Male life expectancy at birth": 65.8 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2012, | |
"Life expectancy at birth": 68.8, | |
"Female life expectancy at birth": 72.1, | |
"Male life expectancy at birth": 65.5 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2011, | |
"Life expectancy at birth": 68.5, | |
"Female life expectancy at birth": 71.8, | |
"Male life expectancy at birth": 65.3 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2010, | |
"Life expectancy at birth": 68.3, | |
"Female life expectancy at birth": 71.6, | |
"Male life expectancy at birth": 65 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2009, | |
"Life expectancy at birth": 68, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 64.8 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2008, | |
"Life expectancy at birth": 67.9, | |
"Female life expectancy at birth": 71.2, | |
"Male life expectancy at birth": 64.6 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2007, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2006, | |
"Life expectancy at birth": 67.6, | |
"Female life expectancy at birth": 70.9, | |
"Male life expectancy at birth": 64.4 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2005, | |
"Life expectancy at birth": 67.3, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 64 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2004, | |
"Life expectancy at birth": 67.8, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 64.5 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2003, | |
"Life expectancy at birth": 67.2, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2002, | |
"Life expectancy at birth": 67.1, | |
"Female life expectancy at birth": 70.3, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2001, | |
"Life expectancy at birth": 67.4, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 64.1 | |
}, | |
{ | |
"Country": "Uzbekistan", | |
"Year": 2000, | |
"Life expectancy at birth": 67.1, | |
"Female life expectancy at birth": 70.4, | |
"Male life expectancy at birth": 63.8 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2015, | |
"Life expectancy at birth": 72, | |
"Female life expectancy at birth": 74, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2014, | |
"Life expectancy at birth": 71.7, | |
"Female life expectancy at birth": 73.7, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2013, | |
"Life expectancy at birth": 71.6, | |
"Female life expectancy at birth": 73.6, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2012, | |
"Life expectancy at birth": 71.4, | |
"Female life expectancy at birth": 73.4, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2011, | |
"Life expectancy at birth": 71.2, | |
"Female life expectancy at birth": 73.2, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2010, | |
"Life expectancy at birth": 71, | |
"Female life expectancy at birth": 72.9, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2009, | |
"Life expectancy at birth": 70.8, | |
"Female life expectancy at birth": 72.7, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2008, | |
"Life expectancy at birth": 70.5, | |
"Female life expectancy at birth": 72.5, | |
"Male life expectancy at birth": 68.9 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2007, | |
"Life expectancy at birth": 70.3, | |
"Female life expectancy at birth": 72.2, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2006, | |
"Life expectancy at birth": 70.1, | |
"Female life expectancy at birth": 72, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2005, | |
"Life expectancy at birth": 69.9, | |
"Female life expectancy at birth": 71.7, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2004, | |
"Life expectancy at birth": 69.6, | |
"Female life expectancy at birth": 71.5, | |
"Male life expectancy at birth": 68.1 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2003, | |
"Life expectancy at birth": 69.4, | |
"Female life expectancy at birth": 71.3, | |
"Male life expectancy at birth": 67.9 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2002, | |
"Life expectancy at birth": 69.3, | |
"Female life expectancy at birth": 71.1, | |
"Male life expectancy at birth": 67.8 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2001, | |
"Life expectancy at birth": 69.1, | |
"Female life expectancy at birth": 70.9, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Vanuatu", | |
"Year": 2000, | |
"Life expectancy at birth": 69, | |
"Female life expectancy at birth": 70.7, | |
"Male life expectancy at birth": 67.6 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2015, | |
"Life expectancy at birth": 74.1, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 70 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2014, | |
"Life expectancy at birth": 73.9, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2013, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2012, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 78.3, | |
"Male life expectancy at birth": 69.5 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2011, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 77.9, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2010, | |
"Life expectancy at birth": 73.7, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2009, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 78.1, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2008, | |
"Life expectancy at birth": 73.2, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2007, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2006, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.8, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2005, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 77.7, | |
"Male life expectancy at birth": 69.8 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2004, | |
"Life expectancy at birth": 73.3, | |
"Female life expectancy at birth": 77.6, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2003, | |
"Life expectancy at birth": 72.4, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 68.3 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2002, | |
"Life expectancy at birth": 73.1, | |
"Female life expectancy at birth": 77.3, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2001, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 76.9, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Venezuela (Bolivarian Republic of)", | |
"Year": 2000, | |
"Life expectancy at birth": 72.5, | |
"Female life expectancy at birth": 77.1, | |
"Male life expectancy at birth": 68.4 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2015, | |
"Life expectancy at birth": 76, | |
"Female life expectancy at birth": 80.7, | |
"Male life expectancy at birth": 71.3 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2014, | |
"Life expectancy at birth": 75.9, | |
"Female life expectancy at birth": 80.5, | |
"Male life expectancy at birth": 71.1 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2013, | |
"Life expectancy at birth": 75.7, | |
"Female life expectancy at birth": 80.4, | |
"Male life expectancy at birth": 70.9 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2012, | |
"Life expectancy at birth": 75.6, | |
"Female life expectancy at birth": 80.3, | |
"Male life expectancy at birth": 70.7 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2011, | |
"Life expectancy at birth": 75.4, | |
"Female life expectancy at birth": 80.2, | |
"Male life expectancy at birth": 70.5 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2010, | |
"Life expectancy at birth": 75.2, | |
"Female life expectancy at birth": 80.1, | |
"Male life expectancy at birth": 70.3 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2009, | |
"Life expectancy at birth": 75, | |
"Female life expectancy at birth": 80, | |
"Male life expectancy at birth": 70.1 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2008, | |
"Life expectancy at birth": 74.9, | |
"Female life expectancy at birth": 79.8, | |
"Male life expectancy at birth": 69.9 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2007, | |
"Life expectancy at birth": 74.7, | |
"Female life expectancy at birth": 79.7, | |
"Male life expectancy at birth": 69.7 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2006, | |
"Life expectancy at birth": 74.6, | |
"Female life expectancy at birth": 79.5, | |
"Male life expectancy at birth": 69.6 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2005, | |
"Life expectancy at birth": 74.4, | |
"Female life expectancy at birth": 79.3, | |
"Male life expectancy at birth": 69.4 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2004, | |
"Life expectancy at birth": 74.2, | |
"Female life expectancy at birth": 79.1, | |
"Male life expectancy at birth": 69.3 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2003, | |
"Life expectancy at birth": 74, | |
"Female life expectancy at birth": 78.9, | |
"Male life expectancy at birth": 69.1 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2002, | |
"Life expectancy at birth": 73.8, | |
"Female life expectancy at birth": 78.7, | |
"Male life expectancy at birth": 69 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2001, | |
"Life expectancy at birth": 73.6, | |
"Female life expectancy at birth": 78.5, | |
"Male life expectancy at birth": 68.7 | |
}, | |
{ | |
"Country": "Viet Nam", | |
"Year": 2000, | |
"Life expectancy at birth": 73.4, | |
"Female life expectancy at birth": 78.2, | |
"Male life expectancy at birth": 68.5 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2015, | |
"Life expectancy at birth": 65.7, | |
"Female life expectancy at birth": 67.2, | |
"Male life expectancy at birth": 64.3 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2014, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 66.9, | |
"Male life expectancy at birth": 63.9 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2013, | |
"Life expectancy at birth": 65.4, | |
"Female life expectancy at birth": 66.8, | |
"Male life expectancy at birth": 64 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2012, | |
"Life expectancy at birth": 64.7, | |
"Female life expectancy at birth": 66.3, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2011, | |
"Life expectancy at birth": 64.6, | |
"Female life expectancy at birth": 66.1, | |
"Male life expectancy at birth": 63.2 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2010, | |
"Life expectancy at birth": 64.4, | |
"Female life expectancy at birth": 65.8, | |
"Male life expectancy at birth": 63.1 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2009, | |
"Life expectancy at birth": 64.1, | |
"Female life expectancy at birth": 65.5, | |
"Male life expectancy at birth": 62.8 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2008, | |
"Life expectancy at birth": 63.8, | |
"Female life expectancy at birth": 65.1, | |
"Male life expectancy at birth": 62.5 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2007, | |
"Life expectancy at birth": 63.4, | |
"Female life expectancy at birth": 64.8, | |
"Male life expectancy at birth": 62.1 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2006, | |
"Life expectancy at birth": 63, | |
"Female life expectancy at birth": 64.4, | |
"Male life expectancy at birth": 61.7 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2005, | |
"Life expectancy at birth": 62.6, | |
"Female life expectancy at birth": 64.1, | |
"Male life expectancy at birth": 61.3 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2004, | |
"Life expectancy at birth": 62.2, | |
"Female life expectancy at birth": 63.7, | |
"Male life expectancy at birth": 60.9 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2003, | |
"Life expectancy at birth": 61.9, | |
"Female life expectancy at birth": 63.3, | |
"Male life expectancy at birth": 60.5 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2002, | |
"Life expectancy at birth": 61.5, | |
"Female life expectancy at birth": 62.9, | |
"Male life expectancy at birth": 60.2 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2001, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 62.6, | |
"Male life expectancy at birth": 59.8 | |
}, | |
{ | |
"Country": "Yemen", | |
"Year": 2000, | |
"Life expectancy at birth": 60.8, | |
"Female life expectancy at birth": 62.2, | |
"Male life expectancy at birth": 59.5 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2015, | |
"Life expectancy at birth": 61.8, | |
"Female life expectancy at birth": 64.7, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2014, | |
"Life expectancy at birth": 61.1, | |
"Female life expectancy at birth": 64, | |
"Male life expectancy at birth": 58.5 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2013, | |
"Life expectancy at birth": 60.3, | |
"Female life expectancy at birth": 62.7, | |
"Male life expectancy at birth": 58 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2012, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 61.6, | |
"Male life expectancy at birth": 57 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2011, | |
"Life expectancy at birth": 58.2, | |
"Female life expectancy at birth": 60.4, | |
"Male life expectancy at birth": 56.1 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2010, | |
"Life expectancy at birth": 58, | |
"Female life expectancy at birth": 60, | |
"Male life expectancy at birth": 56.1 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2009, | |
"Life expectancy at birth": 57.4, | |
"Female life expectancy at birth": 59.5, | |
"Male life expectancy at birth": 55.4 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2008, | |
"Life expectancy at birth": 55.7, | |
"Female life expectancy at birth": 57.8, | |
"Male life expectancy at birth": 53.6 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2007, | |
"Life expectancy at birth": 52.6, | |
"Female life expectancy at birth": 54.4, | |
"Male life expectancy at birth": 50.7 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2006, | |
"Life expectancy at birth": 50.8, | |
"Female life expectancy at birth": 52.5, | |
"Male life expectancy at birth": 49.1 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2005, | |
"Life expectancy at birth": 49.3, | |
"Female life expectancy at birth": 51, | |
"Male life expectancy at birth": 47.6 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2004, | |
"Life expectancy at birth": 47.9, | |
"Female life expectancy at birth": 49.6, | |
"Male life expectancy at birth": 46.3 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2003, | |
"Life expectancy at birth": 46.4, | |
"Female life expectancy at birth": 48, | |
"Male life expectancy at birth": 44.8 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2002, | |
"Life expectancy at birth": 45.5, | |
"Female life expectancy at birth": 47.1, | |
"Male life expectancy at birth": 43.9 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2001, | |
"Life expectancy at birth": 44.6, | |
"Female life expectancy at birth": 46.3, | |
"Male life expectancy at birth": 43 | |
}, | |
{ | |
"Country": "Zambia", | |
"Year": 2000, | |
"Life expectancy at birth": 43.8, | |
"Female life expectancy at birth": 45.6, | |
"Male life expectancy at birth": 42.1 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2015, | |
"Life expectancy at birth": 60.7, | |
"Female life expectancy at birth": 62.3, | |
"Male life expectancy at birth": 59 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2014, | |
"Life expectancy at birth": 59.2, | |
"Female life expectancy at birth": 60.9, | |
"Male life expectancy at birth": 57.5 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2013, | |
"Life expectancy at birth": 58, | |
"Female life expectancy at birth": 59.6, | |
"Male life expectancy at birth": 56.4 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2012, | |
"Life expectancy at birth": 56.6, | |
"Female life expectancy at birth": 58.1, | |
"Male life expectancy at birth": 55.2 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2011, | |
"Life expectancy at birth": 54.9, | |
"Female life expectancy at birth": 56.3, | |
"Male life expectancy at birth": 53.5 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2010, | |
"Life expectancy at birth": 52.4, | |
"Female life expectancy at birth": 53.5, | |
"Male life expectancy at birth": 51.4 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2009, | |
"Life expectancy at birth": 50, | |
"Female life expectancy at birth": 50.8, | |
"Male life expectancy at birth": 49.2 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2008, | |
"Life expectancy at birth": 48.2, | |
"Female life expectancy at birth": 48.5, | |
"Male life expectancy at birth": 47.9 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2007, | |
"Life expectancy at birth": 46.6, | |
"Female life expectancy at birth": 46.2, | |
"Male life expectancy at birth": 47.1 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2006, | |
"Life expectancy at birth": 45.4, | |
"Female life expectancy at birth": 44.9, | |
"Male life expectancy at birth": 45.9 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2005, | |
"Life expectancy at birth": 44.6, | |
"Female life expectancy at birth": 44.1, | |
"Male life expectancy at birth": 45.1 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2004, | |
"Life expectancy at birth": 44.3, | |
"Female life expectancy at birth": 43.8, | |
"Male life expectancy at birth": 44.8 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2003, | |
"Life expectancy at birth": 44.5, | |
"Female life expectancy at birth": 44.1, | |
"Male life expectancy at birth": 44.9 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2002, | |
"Life expectancy at birth": 44.8, | |
"Female life expectancy at birth": 44.5, | |
"Male life expectancy at birth": 45.1 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2001, | |
"Life expectancy at birth": 45.3, | |
"Female life expectancy at birth": 45.2, | |
"Male life expectancy at birth": 45.5 | |
}, | |
{ | |
"Country": "Zimbabwe", | |
"Year": 2000, | |
"Life expectancy at birth": 46, | |
"Female life expectancy at birth": 46, | |
"Male life expectancy at birth": 46 | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment