Skip to content

Instantly share code, notes, and snippets.

@dougdowson
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dougdowson/98ea0996d7fb09a72bf9 to your computer and use it in GitHub Desktop.
Save dougdowson/98ea0996d7fb09a72bf9 to your computer and use it in GitHub Desktop.
Scatterplot: CO2 Emissions
var margin = {top: 35, right: 45, bottom: 40, left: 25},
width = 565 - margin.left - margin.right,
height = 460 - margin.top - margin.bottom;
var parseYear = d3.time.format("%Y").parse,
parseDate = d3.time.format("%Y%m").parse,
parseMonth = d3.time.format("%m-%Y").parse,
numberFormat = d3.format(",.0f"),
numberFormatDetailed = d3.format(",.1f");
var x = d3.scale.linear()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.tickFormat(numberFormatDetailed);
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.tickFormat(numberFormatDetailed)
.tickSize(-width);
var svg = d3.select("#chart").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var group;
var selectedGDP;
var selectedCO2pc;
var selectedCO2;
var selectedGDP2;
var selectedCO2pc2;
var selectedClass;
var duration = 250;
var year = 1980;
var count = 0;
var timerWidth = 200;
var timerHeight = 5;
var timerMargin = 2;
var radius = 7;
var buffer = 12;
var increment = (timerWidth-2*timerMargin-5)/30;
var slidersvg = d3.select("#slider").append("svg")
.attr("width", 250)
.attr("height", 23);
var rect = slidersvg.append("rect")
.attr("width", timerWidth)
.attr("height", timerHeight)
.attr("x", buffer-5)
.attr("y", buffer);
var timerCircle = slidersvg.append("circle")
.attr("class", "timerCircle")
.attr("cx", buffer+(count*increment)+timerMargin)
.attr("cy", buffer+timerMargin)
.attr("r", radius);
d3.select("#play").on("click", function(){
setup();
});
function setup(){
d3.select("#play")
.html("Play<span class='fa fa-caret-right'></span>")
.on('click', null);
year = 1980;
count = 0;
updateScatter();
startTimer();
};
function startTimer() {
if (year==2010) {
d3.select("#play").on("click", function(){
setup();
});
setTimeout(function(){
d3.select("#play").html("Replay<span class='fa fa-repeat'></span>");
}, 500);
} else {
setTimeout(updateKnob, duration);
setTimeout(updateScatter, duration);
setTimeout(startTimer, duration);
year = year + 1;
count = count + 1;
}
}
function updateKnob() {
timerCircle
.transition()
.duration(duration)
.ease("linear")
.attr("cx", buffer+(count*increment)+timerMargin-5);
}
d3.csv("data.csv", function(error, data) {
selectedCO2 = "co2" + year;
selectedGDP = "loggdppc" + year;
selectedCO2pc = "logco2pc" + year;
selectedGDP2 = "gdppc" + year;
selectedCO2pc2 = "co2pc" + year;
data.forEach(function(d) {
d.loggdppc1980 = +d.loggdppc1980;
d.logco2pc1980 = +d.logco2pc1980;
});
x.domain([5.3,11.5]);
y.domain([-1.3,4.3]);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height + ")")
.call(xAxis)
.append("text")
.attr("dy", "2.8em")
.attr("dx", width/1.6)
.style("text-anchor","end")
.attr("class", "xlabel")
.text("GDP per capita, log");
svg.append("g")
.attr("class", "left axis")
.call(yAxis);
svg.append("text")
.attr("id", "year")
.attr("dy", height-20)
.attr("dx", width/2-20)
.text("1980");
svg.append("text")
.attr("class", "left label")
.text("Metric tons CO2 emissions per capita, log")
.attr("x", -margin.left + 5)
.attr("y", -12);
group = svg.selectAll(".group")
.data(data)
.enter().append("g")
.attr("class", "group");
group.append("circle")
.attr("class", function(d) { return d.region; })
.classed("scatter", true)
.attr("id", function(d) { return d.country; })
.attr("r", function(d) { return 20*(Math.pow((d.co21980/1000000/3.14),0.5));})
.attr("cx", function(d) { return x(d.loggdppc1980); })
.attr("cy", function(d) { return y(d.logco2pc1980); });
var legend = svg.append("g")
.attr("class", "legend")
.attr("transform", "translate(" + (width - 50) + "," + (height - 20) + ")")
.selectAll("g")
.data([1e6, 5e6, 1e7])
.enter().append("g");
legend.append("circle")
.attr("cy", function(d) { return -20*(Math.pow(((d)/1000000/3.14),0.5));})
.attr("r", function(d) { return 20*(Math.pow(((d)/1000000/3.14),0.5));});
legend.append("text")
.attr("y", function(d) { return -40*(Math.pow(((d)/1000000/3.14),0.5));})
.attr("dy", "1.3em")
.text(d3.format(".1s"));
legend.append("text")
.attr("dy", "-80px")
.text("Total emissions");
d3.selectAll(".scatter")
.on("mouseover", function(d) {
d3.select(this)
.style("fill","#006E9B")
.style("opacity",1);
tooltip
.html(
"<p><strong>" + d.country + ", " + year + "</strong></p>" +
"<p>CO<sub>2</sub> emissions: <strong>" + numberFormatDetailed(d[selectedCO2]/1000000) + " million kilotons</strong></p>" +
"<p>GDP per capita: <strong>$" + numberFormat(d[selectedGDP2]) + "</strong></p>" +
"<p>CO<sub>2</sub> per capita: <strong>" + numberFormatDetailed(d[selectedCO2pc2]) + " metric tons</strong></p>"
)
.style("left", (d3.event.pageX - 15) + "px")
.style("top", (d3.event.pageY - 100) + "px")
.transition()
.duration(250)
.style("opacity", 1);
})
.on("mouseout", function(d) {
tooltip
.transition()
.duration(250)
.style("opacity", 0);
d3.selectAll(".scatter")
.style("fill","#00a1ce")
.style("opacity",0.6);
});
d3.selectAll("#countrybuttons .button").on("click", function(){
selectedClass = d3.select(this).attr("id");
if (d3.select(this).classed("selected")) {
d3.select(this).classed("selected", false);
d3.selectAll("." + selectedClass)
.style("opacity", 0)
.style("display", "none");
} else {
d3.select(this).classed("selected", true);
d3.selectAll("." + selectedClass)
.style("opacity", 0.6)
.style("display", "inline");
}
});
});
function updateScatter() {
selectedCO2 = "co2" + year;
selectedGDP = "loggdppc" + year;
selectedCO2pc = "logco2pc" + year;
selectedGDP2 = "gdppc" + year;
selectedCO2pc2 = "co2pc" + year;
d3.selectAll(".scatter")
.transition()
.duration(duration)
.ease("linear")
.attr("r", function(d) { return 20*(Math.pow((d[selectedCO2]/1000000/3.14),0.5));})
.attr("cx", function(d) { return x(d[selectedGDP]); })
.attr("cy", function(d) { return y(d[selectedCO2pc]); });
d3.select("#year")
.text(year);
d3.selectAll(".scatter")
.on("mouseover", function(d) {
d3.select(this)
.style("fill","#006E9B")
.style("opacity",1);
tooltip
.html(
"<p><strong>" + d.country + ", " + year + "</strong></p>" +
"<p>CO<sub>2</sub> emissions: <strong>" + numberFormatDetailed(d[selectedCO2]/1000000) + " million kilotons</strong></p>" +
"<p>GDP per capita: <strong>$" + numberFormat(d[selectedGDP2]) + "</strong></p>" +
"<p>CO<sub>2</sub> per capita: <strong>" + numberFormatDetailed(d[selectedCO2pc2]) + " metric tons</strong></p>"
)
.style("left", (d3.event.pageX - 15) + "px")
.style("top", (d3.event.pageY - 100) + "px")
.transition()
.duration(250)
.style("opacity", 1);
})
.on("mouseout", function(d) {
tooltip
.transition()
.duration(250)
.style("opacity", 0);
d3.selectAll(".scatter")
.style("fill","#00a1ce")
.style("opacity",0.6);
});
}
d3.select(self.frameElement).style("height", "625px");
country code region incomegroup co2pc1980 co2pc1981 co2pc1982 co2pc1983 co2pc1984 co2pc1985 co2pc1986 co2pc1987 co2pc1988 co2pc1989 co2pc1990 co2pc1991 co2pc1992 co2pc1993 co2pc1994 co2pc1995 co2pc1996 co2pc1997 co2pc1998 co2pc1999 co2pc2000 co2pc2001 co2pc2002 co2pc2003 co2pc2004 co2pc2005 co2pc2006 co2pc2007 co2pc2008 co2pc2009 co2pc2010 gdppc1980 gdppc1981 gdppc1982 gdppc1983 gdppc1984 gdppc1985 gdppc1986 gdppc1987 gdppc1988 gdppc1989 gdppc1990 gdppc1991 gdppc1992 gdppc1993 gdppc1994 gdppc1995 gdppc1996 gdppc1997 gdppc1998 gdppc1999 gdppc2000 gdppc2001 gdppc2002 gdppc2003 gdppc2004 gdppc2005 gdppc2006 gdppc2007 gdppc2008 gdppc2009 gdppc2010 logco2pc1980 logco2pc1981 logco2pc1982 logco2pc1983 logco2pc1984 logco2pc1985 logco2pc1986 logco2pc1987 logco2pc1988 logco2pc1989 logco2pc1990 logco2pc1991 logco2pc1992 logco2pc1993 logco2pc1994 logco2pc1995 logco2pc1996 logco2pc1997 logco2pc1998 logco2pc1999 logco2pc2000 logco2pc2001 logco2pc2002 logco2pc2003 logco2pc2004 logco2pc2005 logco2pc2006 logco2pc2007 logco2pc2008 logco2pc2009 logco2pc2010 loggdppc1980 loggdppc1981 loggdppc1982 loggdppc1983 loggdppc1984 loggdppc1985 loggdppc1986 loggdppc1987 loggdppc1988 loggdppc1989 loggdppc1990 loggdppc1991 loggdppc1992 loggdppc1993 loggdppc1994 loggdppc1995 loggdppc1996 loggdppc1997 loggdppc1998 loggdppc1999 loggdppc2000 loggdppc2001 loggdppc2002 loggdppc2003 loggdppc2004 loggdppc2005 loggdppc2006 loggdppc2007 loggdppc2008 loggdppc2009 loggdppc2010 co21980 co21981 co21982 co21983 co21984 co21985 co21986 co21987 co21988 co21989 co21990 co21991 co21992 co21993 co21994 co21995 co21996 co21997 co21998 co21999 co22000 co22001 co22002 co22003 co22004 co22005 co22006 co22007 co22008 co22009 co22010
China CHN asia Upper middle income 1.49525 1.46043 1.56674 1.62906 1.75045 1.87105 1.93943 2.03841 2.15091 2.15308 2.1677 2.2459 2.31421 2.4428 2.56599 2.75575 2.84431 2.82057 2.67675 2.64865 2.69686 2.74212 2.88523 3.51225 4.08014 4.44115 4.89273 5.15356 5.31115 5.77814 6.19486 253.038 287.072 327.451 372.517 438.626 506.517 553.542 623.123 706.661 752.854 799.126 889.916 1027.86 1185.65 1354.05 1517.24 1681.95 1851.07 1999.37 2164.67 2382.38 2620.94 2884.25 3217.46 3614.1 4102.5 4739.55 5525.77 6145.18 6730.24 7487.38 0.4022939 0.3787321 0.4489968 0.4880006 0.5598718 0.6265023 0.6623963 0.7121704 0.7658888 0.7668984 0.7736682 0.8091069 0.8390672 0.8931453 0.9423459 1.013691 1.04532 1.036938 0.9846019 0.9740498 0.992089 1.008732 1.059603 1.256256 1.406131 1.490914 1.58775 1.639688 1.669809 1.754082 1.82372 5.53354 5.659733 5.791338 5.920283 6.083647 6.227558 6.316338 6.434744 6.560551 6.623871 6.683518 6.791127 6.935234 7.078046 7.210855 7.324648 7.427709 7.523519 7.600587 7.680023 7.775855 7.871288 7.96702 8.076347 8.192598 8.319352 8.463697 8.617178 8.723423 8.814366 8.920974 1467192 1451501 1580261 1667029 1814908 1966553 2068969 2209709 2369502 2408541 2460744 2584538 2695982 2878694 3058241 3320285 3463089 3469510 3324345 3318056 3405180 3487566 3694242 4525177 5288166 5790017 6414463 6791805 7035444 7692211 8286892
United States USA northamerica High income: OECD 20.7775 19.7493 18.5639 18.5418 18.9561 18.8567 18.7029 19.3341 19.9946 20.0596 19.1014 19.0793 19.1888 19.3513 19.4643 19.3639 19.622 19.8764 19.7789 19.824 20.2492 19.6562 19.6469 19.5847 19.7768 19.716 19.2292 19.3496 18.6023 17.3153 17.5642 12575.6 13965.7 14410.2 15531.2 17099.3 18231.8 19078.4 20062.6 21442.1 22879 23913.7 24365.5 25466.7 26441.7 27755.5 28762.7 30047.2 31553.4 32928.9 34619.9 36450.1 37253.4 38123.2 39597.4 41845.6 44224.1 46358.4 47963.6 48307.8 46906.9 48294.1 3.033871 2.983118 2.921221 2.920028 2.942127 2.936868 2.928677 2.961869 2.995463 2.998707 2.949759 2.948605 2.954327 2.962759 2.968581 2.963408 2.976651 2.989533 2.984616 2.986894 3.008115 2.978392 2.977921 2.974746 2.984512 2.981429 2.956431 2.962671 2.923284 2.85159 2.86586 9.439511 9.544356 9.575688 9.650605 9.746796 9.810925 9.856313 9.90661 9.973113 10.03797 10.0822 10.10092 10.14513 10.1827 10.23119 10.26683 10.31053 10.35944 10.40211 10.45218 10.5037 10.5255 10.54858 10.58652 10.64174 10.69703 10.74416 10.7782 10.78535 10.75592 10.78507 4721171 4531793 4300599 4334926 4470326 4486461 4491177 4684431 4888665 4951085 4768138 4826704 4922196 5029767 5121560 5156169 5286047 5419441 5456093 5531692 5713560 5601405 5650950 5681665 5790765 5826394 5737616 5828697 5656839 5311840 5433057
India IND asia Lower middle income 0.49871 0.52415 0.544703 0.57798 0.584649 0.627404 0.658199 0.68791 0.727121 0.778677 0.79478 0.832462 0.867092 0.884042 0.921657 0.962589 1.02988 1.05399 1.06367 1.11646 1.13855 1.13624 1.13939 1.172 1.2142 1.25195 1.31582 1.39023 1.54197 1.66557 1.66621 427.266 486.21 525.511 576.348 606.264 644.652 674.62 703.833 781.837 842.833 899.314 920.796 973.565 1021.93 1091.37 1175.52 1262.99 1311.4 1381.27 1497.47 1560.96 1643.69 1706.29 1848.64 2042.07 2260.22 2509.47 2789.08 2913.51 3141.3 3457.13 -0.6957299 -0.6459773 -0.6075147 -0.5482163 -0.5367436 -0.466164 -0.4182484 -0.3740973 -0.318662 -0.2501589 -0.2296902 -0.1833676 -0.14261 -0.1232508 -0.0815819 -0.0381289 0.0294412 0.0525876 0.061727 0.1101647 0.1297522 0.1277211 0.1304958 0.1587082 0.1940872 0.2247026 0.2744612 0.3294664 0.433058 0.5101697 0.5105511 6.057407 6.186641 6.264371 6.356712 6.407316 6.46871 6.51415 6.556541 6.661646 6.736769 6.801632 6.825239 6.880965 6.929448 6.995189 7.069466 7.141237 7.178851 7.230759 7.311532 7.353056 7.404699 7.442077 7.522205 7.621719 7.723217 7.827827 7.933467 7.977114 8.052392 8.148194 348581 374822 398420 432321 447110 490465 525862 561561 606298 662946 690577 737852 783634 814298 864932 920047 1002224 1043940 1071912 1144390 1186663 1203843 1226791 1281914 1348525 1411128 1504365 1611405 1811289 1982263 2008823
Russia RUS europe High income: nonOECD 14.3906 13.2234 11.6125 11.2226 11.0145 10.5414 10.3388 10.453 10.6285 10.673 10.7124 11.0942 11.1455 11.2895 11.7177 11.7341 12.0857 11.0942 12.2258 7875.52 7371.41 6567.79 6438.61 6319.61 6538.58 6268.97 6789.98 7673.2 8248.51 8839.07 9683.02 10719.5 11799.3 13208.7 14757.8 15835.5 14723.1 15550.1 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.666574 2.581988 2.452084 2.417929 2.399211 2.355312 2.335908 2.346888 2.363544 2.367721 2.371399 2.406424 2.411038 2.423875 2.461097 2.462503 2.492021 2.406421 2.503548 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.971515 8.905364 8.789932 8.770068 8.751412 8.785476 8.743367 8.823203 8.945489 9.017788 9.086937 9.178129 9.279816 9.375792 9.488627 9.599524 9.670012 9.597173 9.651823 0 0 0 0 0 0 0 0 0 0 0 0 2139720 1963939 1722555 1662526 1631907 1559238 1526745 1538835 1558112 1558013 1557665 1604973 1602963 1615688 1669618 1667598 1715639 1574368 1740776
Japan JPN asia High income: OECD 8.11402 7.90159 7.5999 7.41109 7.83325 7.58068 7.53405 7.41846 8.06669 8.32995 8.8624 8.88086 9.04436 8.90155 9.39515 9.43842 9.58652 9.52988 9.1691 9.45947 9.6129 9.45557 9.54726 9.68876 9.85946 9.69047 9.63792 9.79204 9.45088 8.62863 9.18565 8610.66 9736.59 10614.8 11293.8 12136.9 13235.4 13808.9 14671.5 16199.7 17664.4 19271.9 20499.1 21057.4 21525.1 22112.3 22954.7 23927.5 24667.5 24375.9 24628 25708.5 26320 26748.8 27701.2 29009.5 30440.8 31888.7 33418.1 33694.5 32080.7 33980.5 2.093593 2.067064 2.028135 2.002977 2.058377 2.025602 2.019433 2.003971 2.087744 2.119857 2.181818 2.183899 2.202142 2.186225 2.240193 2.244789 2.260358 2.254432 2.215839 2.247016 2.263106 2.246604 2.256254 2.270967 2.288432 2.271143 2.265705 2.28157 2.246108 2.155085 2.217643 9.060757 9.183646 9.270001 9.332008 9.404006 9.490649 9.533071 9.593663 9.692746 9.779307 9.866403 9.928137 9.955008 9.976975 10.00389 10.04128 10.08278 10.11324 10.10135 10.11164 10.15458 10.17808 10.19425 10.22923 10.27538 10.32354 10.37001 10.41685 10.42509 10.37601 10.43354 947571 929607 900201 883839 940131 915397 915327 905727 989082 1025550 1094834 1100525 1123573 1108563 1174027 1183946 1205611 1201632 1159065 1198042 1219589 1202266 1216751 1237429 1259655 1238181 1231302 1251136 1206916 1100650 1170715
Germany DEU europe High income: OECD 11.6226 11.0633 10.8142 10.6284 10.5795 10.8602 10.5111 10.4253 10.0178 10.0956 10.3663 10.0471 10.0977 10.0089 9.78185 9.81906 9.53021 9.54035 8.94051 9.11484 9957.02 10878.1 11470.2 12150.7 12990 13733.4 14339.1 14918.3 15920.5 17016.6 18305.1 19607.7 20202.2 20382.3 21289.8 22044.5 22576.3 23360.6 24011.1 24740.3 26106.5 27082.1 27474.6 27917 29079.4 30230.6 32419 34447.8 35496.9 34034.3 35797 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.452955 2.403635 2.380865 2.363529 2.358915 2.385108 2.352433 2.344233 2.304359 2.312104 2.338559 2.307286 2.312309 2.303474 2.280528 2.284326 2.254467 2.25553 2.190593 2.209904 9.206033 9.294508 9.347507 9.405144 9.471936 9.527585 9.570745 9.610347 9.675366 9.741946 9.814938 9.883677 9.913547 9.922421 9.965981 10.00082 10.02466 10.05881 10.08627 10.11619 10.16994 10.20663 10.22102 10.23699 10.27778 10.31661 10.3865 10.4472 10.4772 10.43513 10.48562 0 0 0 0 0 0 0 0 0 0 0 929973 891976 877645 865559 864110 889614 862277 855364 822460 829978 853663 828771 833406 825896 806703 808860 784016 783359 732249 745384
Iran IRN mena Upper middle income 3.11176 2.79395 3.28137 3.41859 3.30207 3.38574 3.00499 3.10915 3.31046 3.48289 3.74606 3.96776 3.92872 4.03117 4.45542 4.5235 4.50395 4.31673 4.85347 5.90073 5.65463 5.96531 5.9382 6.11088 6.45323 6.69013 7.1839 7.517 7.85256 7.85232 7.67653 3033.67 3359.52 3925.22 4327.12 4450.43 4599.21 4114.08 4027.58 3496.23 3764.56 4557.13 5174.61 5004.88 5089.56 5105.08 5165.51 5776.66 6231.91 6376.62 6490.45 6865.12 7198.63 7776.5 8360.06 9043.42 9869.19 10634.9 11484.8 11629.5 12012 12677.4 1.135187 1.027458 1.18826 1.229227 1.194548 1.219571 1.100273 1.134351 1.197089 1.247863 1.320704 1.378201 1.368314 1.394057 1.494122 1.509287 1.504954 1.462498 1.579693 1.775076 1.732475 1.785961 1.781406 1.810072 1.86458 1.900633 1.971843 2.017167 2.06084 2.060809 2.038167 8.017529 8.119554 8.275178 8.372658 8.400756 8.43364 8.32217 8.300921 8.159441 8.233386 8.424448 8.551519 8.518168 8.534946 8.537992 8.549759 8.661581 8.737438 8.760393 8.778088 8.834208 8.881646 8.958861 9.03122 9.109793 9.197173 9.271896 9.348784 9.361298 9.39366 9.447577 121015 112988 138147 149914 150813 160930 148569 159742 176284 191344 211135 228036 229074 237768 265825 273529 276727 269979 309231 382714 372703 398827 402178 418859 447480 469328 509889 539790 570574 577483 571612
Korea KOR asia High income: OECD 3.53765 3.60874 3.60841 3.78108 4.05661 4.37031 4.42697 4.62885 5.28083 5.556 5.76037 6.03946 6.49814 7.28486 7.70668 8.31107 8.86812 9.35742 7.88183 8.57732 9.52093 9.50631 9.77763 9.74137 10.0392 9.61647 9.73304 10.2029 10.3793 10.3569 11.4868 2322.18 2684.74 3040.38 3493.52 3925.42 4311 4887.37 5571.69 6376.47 7002.04 7858.36 8820.82 9443.39 10176.2 11191.3 12320.5 13319.4 14194.8 13431.6 14978.5 16527.8 17448.5 18877.8 19696.8 21138.1 22783.2 24580.2 26397.6 27334.3 27501.9 29457.5 1.263463 1.283358 1.283267 1.330009 1.400348 1.474833 1.487715 1.532308 1.664083 1.714878 1.751002 1.798315 1.871516 1.985798 2.042087 2.117589 2.182463 2.23617 2.06456 2.149121 2.253493 2.251956 2.280097 2.276381 2.306496 2.263477 2.275526 2.322672 2.339811 2.337657 2.441199 7.750262 7.895339 8.019738 8.158665 8.275229 8.368925 8.49441 8.625454 8.76037 8.853957 8.969334 9.08487 9.15307 9.227807 9.322889 9.419021 9.496976 9.560633 9.505368 9.614374 9.712801 9.767007 9.845744 9.888212 9.958833 10.03378 10.1097 10.18103 10.2159 10.22201 10.2907 134869 139742 141906 150904 163911 178334 182452 192661 221960 235847 246943 261483 284281 321952 344038 374771 403718 430007 364823 399846 447561 450194 465632 466215 482277 462918 470806 495837 508052 509376 567567
Canada CAN northamerica High income: OECD 17.4256 16.7109 15.8831 15.602 15.8242 15.4905 14.7772 15.5086 16.1495 16.0842 16.195 15.9399 16.3975 16.5752 15.6119 15.6636 15.7686 16.1147 17.0993 16.8993 17.3705 16.9131 16.5539 17.4639 17.2636 17.4261 16.8936 17.0519 16.3923 15.2828 14.6782 11578 12936.6 13187.7 13940.2 15130.5 16211.1 16772.8 17705.7 18986.1 19896.2 20359.7 20336.1 20732 21473.7 22739.5 23602.8 24183.7 25388.2 26498.2 27993.9 29821.4 30694.7 31694.8 32645.3 34291.4 36095.5 37798 39196 40003.9 38772.1 40114.7 2.85794 2.816062 2.765256 2.747401 2.761542 2.740229 2.693082 2.741393 2.781891 2.777839 2.784705 2.768825 2.797126 2.807909 2.748032 2.751342 2.758019 2.77973 2.83904 2.827272 2.854771 2.828086 2.806621 2.860134 2.848601 2.857968 2.826935 2.836262 2.796812 2.726725 2.686366 9.356866 9.467815 9.48704 9.542534 9.624469 9.693454 9.72751 9.781639 9.851462 9.898283 9.921314 9.920153 9.939436 9.974586 10.03186 10.06912 10.09343 10.14204 10.18483 10.23974 10.30298 10.33185 10.36391 10.39346 10.44265 10.49392 10.54001 10.57633 10.59673 10.56546 10.5995 428548 416102 400286 397165 406714 401856 387221 411753 434341 440370 450077 449054 467649 477920 454492 459790 467884 483234 517219 515415 534484 525690 519163 553185 552349 563072 550233 560802 544975 513937 499137
United Kingdom GBR europe High income: OECD 10.2868 9.9553 9.74046 9.6878 9.3817 9.90014 10.0346 10.0677 10.0207 10.1919 9.97511 10.1759 10.0392 9.67763 9.59529 9.57734 9.82281 9.3553 9.32325 9.12625 9.23143 9.31251 8.95965 9.06391 9.00864 8.9731 8.90829 8.625 8.4532 7.62903 7.86257 7963.51 8593.36 9342.45 10079.1 10726.3 11468.1 12174.8 13101.4 14287.2 15185.1 15988.6 16249.8 16792.7 17752.8 18980.1 20004.4 21030.3 22263.3 23243.4 24181.8 25721.6 26782.2 27721.4 29277.2 30925.5 32665.7 34398.1 36280.5 36458.2 34617.2 35348.9 2.330857 2.298105 2.276289 2.270867 2.238761 2.292549 2.306043 2.309337 2.304657 2.321596 2.300093 2.320024 2.306499 2.269817 2.261273 2.2594 2.284707 2.235943 2.232511 2.211155 2.222614 2.231358 2.192731 2.204301 2.198184 2.194232 2.186983 2.154665 2.134545 2.031961 2.062113 8.982625 9.058745 9.142323 9.218215 9.280449 9.347328 9.407126 9.480472 9.567121 9.62807 9.679629 9.695836 9.728702 9.784296 9.851144 9.903706 9.953719 10.0107 10.05378 10.09336 10.15508 10.19549 10.22996 10.28456 10.33934 10.39408 10.44576 10.49904 10.50392 10.45211 10.47302 579291 560820 548521 545741 529335 559856 568777 571869 570464 581722 571051 584351 578062 558579 555239 555668 571363 545573 545290 535551 543662 550552 531939 540641 540409 541986 542041 528906 522467 475108 493505
Saudi Arabia SAU mena High income: nonOECD 17.2102 16.7378 14.1499 13.5507 12.3654 13.0071 14.7201 13.1264 13.4073 13.0059 13.4485 15.9958 16.5397 17.6718 16.9818 12.7242 13.728 11.3447 10.7702 11.5419 14.7402 14.2265 14.9555 14.3212 16.6043 16.1053 17.0558 15.1852 15.8626 16.0853 17.0399 16428.2 17908.2 16102.7 14630.8 13982.5 13147.9 13392.7 12588 13428.3 14037 15017.1 16122.6 16234.3 16309 16365.2 16339.2 16788.3 17098.5 17348.1 17045.7 17843.1 17911.9 17774.2 19049.3 20110.5 21903.4 23052.8 24258.7 25937.1 25742.7 27074.6 2.845501 2.81767 2.649708 2.606436 2.514903 2.565495 2.689213 2.574628 2.595797 2.565403 2.598871 2.772326 2.805762 2.871972 2.832143 2.543502 2.61944 2.428749 2.376779 2.44598 2.690579 2.655106 2.705079 2.66174 2.809663 2.779151 2.836491 2.720324 2.763966 2.777903 2.835558 9.706752 9.793015 9.686742 9.590886 9.54556 9.484015 9.502467 9.440501 9.505116 9.549456 9.616944 9.68798 9.694883 9.699475 9.70291 9.701322 9.728436 9.746744 9.761236 9.743655 9.789372 9.793222 9.785501 9.854786 9.908996 9.994399 10.04554 10.09653 10.16343 10.15591 10.20635 169404 175492 158092 161051 155715 172653 204879 190706 202554 203739 217948 267768 285535 313818 309018 236254 258751 216239 207681 226459 296935 297214 326407 327272 395834 397642 432739 393535 418240 431027 464481
South Africa ZAF africa Upper middle income 8.28453 9.10888 9.69042 9.83147 10.3572 10.3557 10.3002 9.99072 10.1711 9.8899 9.47482 9.63839 8.85379 9.14103 9.37564 9.03524 8.96594 9.07314 8.88357 8.64409 8.37751 8.07716 7.58996 8.20549 9.08416 8.31487 8.80145 9.07066 9.3828 10.0341 9.04053 4039.4 4538.2 4681.23 4657.01 4944.28 4921.3 4907.23 5025.47 5303.66 5521.02 5583.77 5586.28 5469.97 5548.74 5731.57 5907.89 6153.28 6308.96 6305.27 6449.6 6780.69 6925.17 7187.98 7450.16 7904.89 8517.15 9149.89 9784.11 10200.7 9988.97 10289.5 2.114389 2.20925 2.271137 2.285588 2.337677 2.337534 2.332161 2.301657 2.319548 2.291514 2.248638 2.265754 2.180846 2.212773 2.238115 2.201132 2.193433 2.205318 2.184204 2.156876 2.125551 2.089041 2.026827 2.104804 2.206532 2.118045 2.174917 2.205045 2.238878 2.305986 2.201718 8.303851 8.420286 8.451316 8.446129 8.505986 8.501328 8.498465 8.522274 8.576153 8.616318 8.62762 8.628069 8.607028 8.621326 8.653745 8.684044 8.724741 8.749726 8.749141 8.771773 8.821835 8.842917 8.880165 8.915991 8.975237 9.049837 9.121497 9.188515 9.230215 9.209237 9.238876 228454 257368 280749 292231 315949 324214 330855 329025 343055 341108 333514 346337 324852 342549 358930 353458 358640 371328 372219 371034 368611 362743 347687 380811 427132 396117 424844 443648 465023 503941 460124
Mexico MEX latam Upper middle income 3.81581 3.9564 4.15221 3.7185 3.63616 3.70542 3.70934 3.79457 3.71593 4.29137 3.65273 3.7131 3.65953 3.60415 3.7201 3.43883 3.50627 3.62118 3.70893 3.73202 3.67291 3.74787 3.66602 3.7539 3.75515 3.92882 3.94051 4.0152 4.10065 3.8329 3.76357 5155.51 5974.61 6170.25 6055.57 6347.48 6555.03 6348.54 6492.96 6673.74 7082.29 7579.02 8008.85 8328.99 8588.87 9023.02 8528.54 9052.77 9706.68 10130.4 10403.5 11045.5 11031.3 11083.4 11343.7 12124 12514.4 13362 13919.8 14157.8 13376.4 14021.2 1.339153 1.375336 1.423641 1.313321 1.290928 1.309795 1.310853 1.333571 1.312629 1.456606 1.295474 1.311867 1.297334 1.282087 1.313749 1.23513 1.254552 1.286801 1.310743 1.31695 1.300984 1.321188 1.299105 1.322795 1.323129 1.368339 1.371309 1.390087 1.411147 1.343623 1.325369 8.547821 8.695274 8.727494 8.708734 8.755814 8.787988 8.75598 8.778474 8.805936 8.865353 8.933139 8.988302 9.027497 9.058223 9.107534 9.051173 9.110826 9.18057 9.2233 9.249903 9.309778 9.30849 9.313201 9.336419 9.402943 9.434632 9.500173 9.541068 9.558018 9.501248 9.548326 268454 284530 304838 278443 277625 288501 294559 307357 307067 361878 314416 326345 328472 330334 347984 328039 340815 358383 373411 381848 381518 394800 391251 405633 410744 435046 441797 455845 471444 446237 443674
Indonesia IDN asia Lower middle income 0.651465 0.672794 0.692195 0.674104 0.70513 0.746316 0.734386 0.729846 0.767203 0.746418 0.837279 0.988692 1.0955 1.16265 1.15871 1.15882 1.2851 1.39294 1.03557 1.17501 1.26075 1.39127 1.42643 1.4522 1.52573 1.52348 1.51561 1.62593 1.76051 1.90792 1.80321 735.884 848.988 904.05 960.161 1042.97 1081.47 1145.46 1208.65 1297.63 1420.52 1549.13 1684.01 1803.74 1961.81 2119.48 2303.37 2499.91 2631.79 2284.74 2309.04 2432.57 2542.67 2659.99 2802.89 2978.67 3185.05 3414.84 3675.48 3916.76 4071.55 4315.77 -0.4285309 -0.3963163 -0.367888 -0.3943703 -0.3493735 -0.2926059 -0.3087201 -0.3149213 -0.2650036 -0.2924699 -0.1775975 -0.0113725 0.0912092 0.1507031 0.1473099 0.1474005 0.2508374 0.3314192 0.0349495 0.1612742 0.2317048 0.3302152 0.3551753 0.373083 0.4224752 0.420996 0.4158193 0.4860778 0.5656015 0.6460126 0.5895666 6.601072 6.744045 6.806885 6.867101 6.949828 6.986076 7.043561 7.09726 7.168295 7.258778 7.345449 7.428933 7.497618 7.581623 7.658926 7.742128 7.82401 7.87542 7.734007 7.744587 7.796704 7.84097 7.886077 7.938406 7.999232 8.066223 8.135886 8.209439 8.27302 8.311779 8.370031 94785 100160 105408 104957 112185 121246 121741 123373 132162 130967 149566 179731 202576 218601 221413 224941 253291 278659 210211 241989 263419 294907 306737 316792 337635 341992 345120 375545 412387 453106 433989
Brazil BRA latam Upper middle income 1.5368 1.37874 1.35014 1.27731 1.26576 1.33053 1.43058 1.46388 1.44936 1.45517 1.39585 1.44151 1.42761 1.46957 1.51885 1.59581 1.73234 1.80049 1.84271 1.8614 1.87951 1.90675 1.85217 1.76955 1.83591 1.86582 1.84798 1.91168 2.02161 1.89749 2.15027 3793.09 3872.67 4041.9 3966.36 4227.3 4603.98 4946.47 5150.22 5241.51 5514.77 5383.37 5525.61 5534.14 5836.27 6180.3 6486.6 6644.61 6881.6 6855.25 6867.61 7218.02 7371.6 7574.93 7708.42 8253.15 8640.96 9150 9855.06 10457.1 10400.5 11215.7 0.4297004 0.3211724 0.3002053 0.2447553 0.2356699 0.2855771 0.3580765 0.3810875 0.3711213 0.3751228 0.3335052 0.3656901 0.3560022 0.384969 0.4179507 0.4673834 0.5494707 0.5880579 0.6112394 0.6213303 0.6310114 0.6453989 0.6163553 0.5707273 0.6075395 0.6237026 0.6140926 0.6479805 0.7038944 0.6405327 0.7655925 8.240936 8.2617 8.30447 8.285604 8.349319 8.434676 8.50643 8.546795 8.564364 8.615185 8.59107 8.617149 8.618691 8.671847 8.729122 8.777493 8.801561 8.836606 8.83277 8.834572 8.884336 8.90539 8.932599 8.950068 9.018351 9.064269 9.12151 9.195741 9.255033 9.249613 9.325068 187090 171806 172177 166632 168807 181249 198883 207530 209364 214024 208887 219331 220706 230739 242154 258347 284783 300547 312289 320173 327984 337434 332267 321622 337826 347309 347668 363213 387675 367147 419754
Italy ITA europe High income: OECD 6.89249 6.69042 6.53799 6.38859 6.49825 6.57562 6.4749 6.77841 6.88301 7.21536 7.3617 7.46676 7.40417 7.24801 7.16667 7.56994 7.60173 7.67551 7.82519 7.73328 7.92806 7.90443 7.93271 8.17175 8.19564 8.16603 8.07215 7.91735 7.60177 6.79565 6.85433 9111.6 10023.9 10708.5 11225.1 11998.1 12723.1 13348.7 14127 15231 16347.8 17286.7 18102.5 18660 18924.9 19736.1 20728.7 21346.4 22104 22657.4 23312.6 24707.1 25726.9 26227.9 26672.8 27529.8 28364.1 29781.3 31001.1 31012.5 29360.2 30130.9 1.930432 1.900677 1.87763 1.854513 1.871533 1.883369 1.867933 1.913742 1.929056 1.976212 1.996292 2.010462 2.002043 1.980727 1.969442 2.024185 2.028376 2.038035 2.057347 2.045534 2.070409 2.067424 2.070995 2.100683 2.103602 2.099983 2.088419 2.069056 2.02838 1.916283 1.924881 9.117304 9.212727 9.278791 9.325911 9.392501 9.451178 9.499171 9.555846 9.631086 9.701846 9.757692 9.803803 9.834139 9.848236 9.890205 9.939274 9.968637 10.00351 10.02824 10.05675 10.11485 10.15529 10.17458 10.1914 10.22303 10.25288 10.30163 10.34178 10.34215 10.28739 10.31331 388970 378020 369681 361365 367650 372135 366454 383671 389780 408907 417550 423803 420535 411918 407378 430308 432237 436663 445306 440150 451441 450348 452632 468349 472768 473380 469347 462676 447187 401592 406307
Australia AUS asia High income: OECD 15.0249 15.4325 15.4249 14.6401 15.221 15.3084 14.9806 15.747 15.7962 16.5199 16.8374 16.2885 16.8309 17.1006 17.0237 17.0116 17.9815 18.0172 18.5406 17.1998 17.209 16.7341 17.3525 17.4149 17.3275 17.7832 17.9349 18.1123 18.2423 18.214 16.9337 9957.59 11157.6 11663.6 11915 12958.6 13904.9 14318 15161.4 16073 17228.9 18022.3 18174.4 18898.8 19947.5 21121.3 21926.6 23016.3 24124.9 25336.8 26467.6 27581.5 28585.7 29832.7 31006.5 32600.6 34098.4 35536.3 37429.1 38346.4 38538.6 39329.4 2.70971 2.736476 2.735985 2.683763 2.722674 2.728402 2.706754 2.756647 2.759767 2.804564 2.823601 2.790459 2.823216 2.839115 2.834605 2.833896 2.889345 2.891324 2.919962 2.844897 2.845434 2.81745 2.853739 2.857327 2.852294 2.878254 2.886747 2.89659 2.903745 2.902193 2.829308 9.20609 9.319874 9.364231 9.385551 9.469518 9.539994 9.569273 9.626511 9.684896 9.754343 9.799365 9.80777 9.846854 9.90086 9.958037 9.995455 10.04396 10.091 10.14001 10.18367 10.2249 10.26066 10.30336 10.34195 10.39209 10.43701 10.47831 10.5302 10.55441 10.55941 10.57973 220746 230361 234120 225003 236595 241230 239965 256107 261145 277772 287331 281530 294456 302117 303958 307434 329260 333624 346913 325523 329605 324860 341002 346477 348757 362685 371214 377235 387635 395094 373081
France FRA europe High income: OECD 9.15105 8.19203 7.8273 7.52635 7.1755 7.05462 6.7468 6.56704 6.43916 6.72216 6.8316 7.30343 6.74669 6.58328 6.2276 6.60539 6.83033 6.3286 6.79726 6.13781 6.00153 6.28836 6.16214 6.22711 6.22152 6.206 6.01374 5.87201 5.78775 5.51635 5.55607 10081.2 11069.1 11972.2 12525.5 13105.2 13676.8 14202 14839.8 15994.6 17218.8 18224.2 18938.2 19563.3 19805.6 20611.3 21402.5 21956.1 22748.8 23697.9 24743.8 26076.1 26975.7 27450.6 28055.7 29329.3 30548.4 32034.8 33421.3 33860.4 32872.3 33682.6 2.213869 2.103161 2.057618 2.01841 1.970672 1.953683 1.909068 1.882064 1.862397 1.90541 1.921559 1.988344 1.909051 1.884533 1.828992 1.887885 1.921373 1.845079 1.916519 1.814467 1.792015 1.838701 1.818424 1.828913 1.828015 1.825517 1.794046 1.770196 1.755743 1.707716 1.71489 9.218429 9.311909 9.390339 9.435519 9.480761 9.523457 9.561136 9.605064 9.680007 9.753759 9.810506 9.848935 9.881409 9.893718 9.933598 9.971263 9.996799 10.03227 10.07314 10.11633 10.16877 10.20269 10.22014 10.24195 10.28634 10.32707 10.37458 10.41695 10.43 10.40038 10.42474 505364 454701 436894 422603 405343 400880 385614 377492 372208 390649 399028 427668 397037 389105 369458 393289 408126 379487 409094 371309 365560 385827 380840 387591 390103 392072 382582 375882 372564 356924 361273
Poland POL europe High income: OECD 13.0594 11.4228 11.6535 11.5482 11.7573 11.9859 12.104 12.3541 11.7907 11.1636 9.62387 9.45432 9.31306 9.16554 8.7218 8.98598 9.29007 9.08285 8.45591 8.20308 7.88558 7.9169 7.76691 7.97957 7.9877 7.95479 8.38998 8.27997 8.29163 7.83158 8.30863 4245.31 4140.24 4145.92 4487.13 4589.67 4882.79 5123.61 5347.95 5711.61 6153.7 5867.58 5623.4 5853.23 6230.78 6682.88 7281.38 7870.99 8566.36 9085.82 9630.8 10377.5 10745.8 11071.8 11737.1 12697.7 13568.4 14862.9 16306.1 17481.4 17893.3 18796.2 2.569506 2.435611 2.455605 2.446532 2.464477 2.483735 2.493537 2.513985 2.46731 2.41266 2.264247 2.246472 2.231418 2.215451 2.165825 2.195666 2.228946 2.206388 2.134866 2.104509 2.065036 2.069 2.049872 2.076885 2.077903 2.073775 2.127038 2.113839 2.115247 2.058164 2.117295 8.35357 8.328509 8.32988 8.408969 8.431563 8.493472 8.541615 8.584469 8.650256 8.724809 8.677197 8.634692 8.674749 8.737257 8.807304 8.893076 8.970939 9.055598 9.11447 9.172722 9.2474 9.282267 9.31216 9.370513 9.449175 9.515496 9.606624 9.699297 9.768891 9.792183 9.841408 464576 410062 422211 422339 433894 445900 453370 465353 445977 423788 366773 361592 357283 352520 336161 346814 358823 351049 326935 317133 301691 302806 296932 304856 304988 303598 320004 315637 316125 298787 317254
Ukraine UKR europe Lower middle income 12.3045 10.4661 8.60944 8.65704 8.07596 6.74379 6.55386 6.69472 6.52301 6.60693 6.61136 7.36745 7.23097 7.08775 6.9779 7.04364 6.99246 5.685 6.64487 5163.36 4489.85 3552.11 3211.7 2972.87 2955.26 2958.12 3020.21 3300.7 3722.04 4010.6 4518.54 5244.36 5583.95 6227.95 6921.12 7261.3 6265.31 6627.22 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.509962 2.348139 2.152859 2.158372 2.088892 1.908622 1.880055 1.901319 1.875336 1.888119 1.88879 1.997071 1.978373 1.958367 1.942748 1.952125 1.944833 1.73783 1.893845 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.549343 8.409575 8.175297 8.074555 7.997283 7.991342 7.992309 8.013082 8.10189 8.222027 8.296696 8.415944 8.564908 8.627652 8.736802 8.842333 8.890314 8.742784 8.798941 0 0 0 0 0 0 0 0 0 0 0 0 641681 546112 447011 445944 412336 341196 328637 332549 320775 321651 318684 352259 343121 333869 326480 327595 323459 261813 304805
Turkey TUR europe Upper middle income 1.7256 1.77749 1.89114 1.92345 1.99004 2.17001 2.32893 2.53882 2.42318 2.62536 2.70129 2.70641 2.74306 2.80593 2.72237 2.93856 3.16605 3.28838 3.27211 3.16124 3.42144 3.0349 3.1632 3.31385 3.37205 3.50395 3.81152 4.09601 4.05429 3.90007 4.13103 2781.41 3104.02 3320.56 3408.76 3683.96 3874.78 4134.81 4565.93 4906.33 5037.87 5578.97 5703.27 6062.64 6596.38 6264.51 6727.25 7194.7 7725.2 7684.01 7424.51 7995.56 7608.36 8092.77 8576.78 9725.4 10899.4 11865.4 12600.1 12770.7 12085.7 13177.8 0.5455756 0.5752 0.6371802 0.6541216 0.6881525 0.7747328 0.8454102 0.9317003 0.8850815 0.9652169 0.9937283 0.9956243 1.009075 1.031736 1.001502 1.077919 1.152484 1.190396 1.185434 1.150964 1.230061 1.110179 1.151583 1.198109 1.215521 1.253892 1.338029 1.410013 1.399776 1.360994 1.418527 7.930713 8.040453 8.107889 8.134104 8.211743 8.262244 8.327197 8.426377 8.498281 8.524738 8.62676 8.648795 8.709901 8.794276 8.742656 8.813922 8.8811 8.952243 8.946897 8.912542 8.986642 8.937003 8.998726 9.056814 9.182496 9.29646 9.381379 9.441458 9.45491 9.399776 9.486286 75764 79875 86989 90542 95797 106717 116882 129907 126310 139317 145855 148613 153105 159133 156845 171971 188198 198528 200607 196768 216148 194538 205678 218509 225407 237369 261571 284658 285274 277845 298002
Thailand THA asia Upper middle income 0.846901 0.787441 0.769701 0.846186 0.899696 0.935357 0.937726 1.05467 1.2192 1.41299 1.69369 1.84029 1.99767 2.25136 2.48704 2.84121 3.139 3.20722 2.80882 2.9666 3.02126 3.20494 3.38531 3.60062 3.87701 3.90743 3.96472 3.96818 3.95614 4.17318 4.44686 1099.5 1236.5 1356.04 1468.1 1574.08 1659.83 1747.53 1929.91 2218.04 2569.81 2921.08 3225.46 3514.57 3858.59 4239.69 4698.95 5011.81 4969.79 4448.18 4697.45 5014.73 5152.71 5464.57 5919.62 6350.11 6835.04 7387.38 7910.28 8192.77 7996.1 8673.68 -0.1661712 -0.2389672 -0.2617536 -0.1670158 -0.1056978 -0.066827 -0.0642974 0.0532278 0.1981975 0.3457069 0.5269073 0.6099215 0.6919829 0.8115367 0.9110938 1.044229 1.143905 1.165404 1.032764 1.087415 1.105673 1.164692 1.219445 1.281106 1.355065 1.362881 1.377435 1.378308 1.375269 1.428678 1.492197 7.002611 7.12004 7.212324 7.291724 7.361426 7.414471 7.465959 7.565228 7.704379 7.851587 7.979709 8.078831 8.164673 8.258058 8.352245 8.455094 8.519552 8.511133 8.40025 8.454775 8.520135 8.547278 8.606041 8.686028 8.756227 8.829818 8.907529 8.975919 9.011007 8.98671 9.068048 40117 38049 37906 42449 45966 48668 49703 56945 67003 78892 95833 105236 115188 130736 145470 167586 186966 193097 171066 182811 188355 202132 215975 232198 252345 256169 261211 262205 261838 276587 295282
Spain ESP europe High income: OECD 5.74276 5.49245 5.53218 5.37395 5.1975 5.2379 4.94264 4.94109 5.14089 5.84334 5.63352 5.80029 5.99106 5.59865 5.94373 6.13736 5.91271 6.37072 6.585 7.07265 7.31274 7.30764 7.59128 7.61117 7.90805 8.09706 7.8842 7.92089 7.16553 6.21697 5.78988 7347.24 7925.16 8475.77 8914.12 9349.96 9842.28 10355.4 11199.7 12178.6 13258.7 14253.1 15059.5 15482.6 15594.3 16254.3 17237.1 17935.2 18897.3 19886.3 21018.9 22393.8 23480.7 24072.1 24848 25921.4 27130.4 28645.9 29840.4 30196 29019.8 29188.9 1.747941 1.703375 1.710582 1.681563 1.648179 1.655921 1.597899 1.597586 1.637225 1.765303 1.728735 1.757908 1.790269 1.722525 1.782336 1.814395 1.777104 1.851713 1.884794 1.956236 1.989618 1.98892 2.027 2.029616 2.067881 2.091501 2.06486 2.069504 1.969282 1.827283 1.756112 8.90208 8.977798 9.044967 9.095392 9.143127 9.194443 9.245261 9.323643 9.407434 9.492413 9.564731 9.619761 9.647471 9.654662 9.696111 9.754818 9.794518 9.846775 9.897786 9.953179 10.01654 10.06394 10.08881 10.12053 10.16282 10.20841 10.26276 10.30362 10.31547 10.27573 10.28154 215004 207288 209906 204868 198953 201234 190468 190878 199034 226672 218865 225858 234057 219408 233559 241732 233423 252169 261563 282385 294434 297830 314519 321097 339429 353462 350037 358237 329286 288237 269675
Kazakhstan KAZ asia Upper middle income 15.8954 13.5395 12.3943 10.5422 9.0315 8.45072 8.29809 7.80345 8.58455 9.95458 10.2259 10.317 11.4673 11.682 12.5772 14.2283 14.7019 13.3033 15.2393 4412.09 4137.53 3951.21 3732.24 3867.52 4077.6 4106.49 4293.03 4832.52 5616 6254.52 6933.51 7734.58 8657.79 9766.28 10797.8 11218.8 11144.1 11929 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.766033 2.60561 2.517236 2.355384 2.200719 2.134251 2.116026 2.054566 2.149965 2.298033 2.324922 2.333791 2.439499 2.458048 2.531882 2.655231 2.687978 2.588016 2.723876 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.392104 8.327854 8.281777 8.224764 8.260368 8.313264 8.320324 8.364748 8.483124 8.633375 8.741059 8.844121 8.953457 9.066215 9.186691 9.287101 9.325342 9.318665 9.386724 0 0 0 0 0 0 0 0 0 0 0 0 261307 221105 199488 166731 140692 129581 125063 116493 127769 147908 151946 153816 172158 176947 192532 220313 230438 214087 248729
Malaysia MYS asia Upper middle income 2.02386 2.17381 2.10208 2.54384 2.26285 2.29869 2.4649 2.44035 2.48367 2.81708 3.1076 3.66603 3.92074 4.65564 4.6525 5.84462 5.89726 5.7242 5.10787 4.71411 5.4056 5.71421 5.53494 6.43881 6.59696 6.86335 6.48182 7.6568 7.80964 7.33642 7.66747 2350.98 2682.62 2943.18 3171.62 3452.9 3421.78 3436.76 3619.99 4019.39 4446.33 4817.24 5370.53 5817.86 6367.43 6911.49 7546.9 8237.87 8766.57 8002.12 8397.99 9101.78 9114.59 9515.48 10027.1 10717.9 11840.3 12715.5 13737.7 14416.7 14062.3 15018.4 0.7050064 0.7764805 0.7429274 0.9336733 0.8166263 0.8323384 0.9021496 0.8921411 0.9097384 1.035701 1.133851 1.299109 1.366279 1.538079 1.537404 1.765522 1.774488 1.744703 1.630782 1.55056 1.687435 1.742956 1.711081 1.862344 1.886609 1.926196 1.869001 2.035594 2.055358 1.992851 2.036986 7.762588 7.894549 7.987246 8.061997 8.14697 8.137917 8.142284 8.194226 8.298885 8.399835 8.479957 8.588682 8.668688 8.758951 8.84094 8.928892 9.016497 9.078701 8.987462 9.035748 9.116225 9.117632 9.160675 9.213048 9.279671 9.379261 9.450575 9.527898 9.576142 9.55125 9.617029 27998 30825 30572 37972 34697 36237 39985 40762 42724 49882 56593 68591 75298 91723 94011 121132 125375 124821 114187 107934 126603 136717 135129 160266 167333 177373 170648 205308 213221 203882 216804
Egypt EGY mena Lower middle income 1.00685 1.10954 1.20284 1.18763 1.29779 1.26995 1.4466 1.41749 1.37993 1.30746 1.34803 1.37165 1.39221 1.57073 1.41641 1.56492 1.64238 1.71493 1.90753 1.92623 2.13688 1.86672 1.8622 2.13104 2.13782 2.32952 2.4471 2.59171 2.60686 2.57729 2.62279 1305.04 1417.96 1572.82 1732.75 1885.81 2031.9 2116.68 2214.78 2336.01 2445.43 2572.22 2658.63 2672.08 2757.95 2875.07 3004.49 3136.92 3311.18 3522.48 3711.6 3918.13 4059.32 4169.24 4303.62 4513.88 4762.12 5148.8 5483.21 5862.9 6047.45 6288.52 0.0068271 0.1039473 0.1846858 0.1719589 0.2606623 0.2389808 0.3692128 0.3488852 0.3220338 0.2680857 0.2986459 0.3160161 0.3308936 0.4515401 0.3481224 0.4478318 0.4961471 0.5393746 0.6458101 0.6555629 0.7593485 0.6241856 0.6217576 0.7566105 0.7597883 0.8456642 0.8949049 0.9523194 0.9581465 0.9467375 0.9642391 7.173989 7.256975 7.360625 7.457465 7.542113 7.616726 7.657604 7.702909 7.7562 7.801976 7.852525 7.885566 7.890613 7.922243 7.963832 8.007863 8.050997 8.10506 8.166921 8.219218 8.27337 8.308771 8.335489 8.367212 8.414912 8.468449 8.546519 8.609446 8.676399 8.707392 8.746481 45240 50979 56523 57092 63839 63938 74565 74810 74532 72181 75944 78716 81264 93156 85313 95723 102031 108202 122243 125393 141326 125452 127194 147963 150912 167208 178616 192382 196797 197871 204776
Venezuela VEN latam Upper middle income 6.01482 5.91454 5.84138 5.66786 5.52643 5.84658 6.15567 6.07254 6.18657 5.65302 6.18833 5.70957 5.11673 5.87683 6.00869 6.03096 5.44193 5.81936 7.12531 7.20888 6.24459 6.93695 7.62867 7.44666 6.40743 6.79604 6.3192 6.35614 6.6433 6.48431 6.94644 5801.49 6075.33 6431.81 5861.33 6212.01 6290.89 6726.36 7052.16 7584.36 6620.7 7073.53 7831.33 8299.94 8329.37 8124.2 8436.01 8392.47 8896.57 8842.68 8268.14 8597.31 8914.7 8092.83 7467.65 8898.53 9973.18 11145 12237.8 12922.5 12404 12173.4 1.794226 1.777415 1.764967 1.734812 1.709543 1.765857 1.817374 1.803777 1.82238 1.73219 1.822665 1.742145 1.632516 1.771018 1.793206 1.796906 1.694134 1.761191 1.963653 1.975314 1.831716 1.936862 2.031914 2.007766 1.857458 1.91634 1.843593 1.849421 1.893609 1.869385 1.938229 8.66587 8.711991 8.769011 8.676132 8.73424 8.746858 8.813789 8.86109 8.933844 8.797956 8.864115 8.965888 9.024004 9.027543 9.002603 9.040265 9.03509 9.093421 9.087345 9.020164 9.059205 9.095457 8.998734 8.918336 9.093641 9.207655 9.318743 9.412283 9.466725 9.425772 9.407005 90802 91968 93406 93101 93219 101279 109530 110982 116097 108855 122162 115441 105874 124355 129947 133237 122753 133963 167322 172617 152415 172525 193262 192103 168268 181630 171825 175785 186812 185341 201747
Netherlands NLD europe High income: OECD 12.5449 11.5782 9.38483 9.62318 10.0564 10.2093 9.95698 10.4036 9.95351 10.984 10.9342 10.8882 10.5597 10.8341 10.7787 10.741 11.5312 10.9794 10.7216 10.3103 10.3836 10.4245 10.6734 10.7881 10.8651 10.5533 10.2288 10.4852 10.5709 10.2629 10.9584 10699.5 11559 12062.8 12711.4 13519.5 14255.4 14915 15479.8 16393.2 17676.7 18965.8 19917.8 20563.9 21170.3 22126.5 23177.6 24293 25632.2 26762.3 28227.4 29791.8 30828.6 31126.6 31706.2 33110.4 35021 37263.3 39664.7 41008.7 39606.6 40490.3 2.529318 2.44912 2.239095 2.264175 2.308208 2.323295 2.298274 2.342152 2.297925 2.396442 2.391892 2.387683 2.357041 2.382695 2.377572 2.37407 2.445056 2.396021 2.372264 2.333144 2.340223 2.344162 2.367753 2.378446 2.385557 2.356436 2.325204 2.349968 2.358107 2.328538 2.394103 9.277947 9.355217 9.397879 9.450255 9.511891 9.564893 9.610124 9.647294 9.70462 9.780001 9.850395 9.899369 9.931291 9.960355 10.00453 10.05094 10.09794 10.1516 10.19475 10.24805 10.30199 10.3362 10.34582 10.36427 10.4076 10.4637 10.52576 10.58822 10.62154 10.58675 10.60882 177508 164956 134322 138257 145056 147949 145096 152569 146915 163101 163482 164084 160340 165657 165807 166045 179085 171396 168407 163027 165363 167274 172364 175041 176903 172228 167201 171766 173845 169650 182078
Argentina ARG latam Upper middle income 3.86689 3.57412 3.56769 3.57439 3.56423 3.3156 3.38391 3.67761 3.83037 3.63971 3.45177 3.53804 3.62304 3.49241 3.58584 3.51813 3.66429 3.77347 3.81269 3.98439 3.8229 3.55835 3.27596 3.50607 4.07662 4.16458 4.4689 4.58709 4.79021 4.48832 4.47096 4936.03 4997.47 5055.14 5374.7 5581.67 5269.77 5687.09 5912.36 5927.2 5656.08 5667.68 6384.74 7105.87 7616.39 8155.48 8013.63 8530.86 9293.46 9665.35 9383.52 9432.55 9137.48 8174.81 8983.49 9938.22 11051.1 12217.1 13474.5 14502.3 14573.6 15921.6 1.352451 1.273719 1.271919 1.273794 1.270949 1.19864 1.219031 1.302263 1.342961 1.291904 1.238887 1.263572 1.287315 1.250593 1.276993 1.257928 1.298634 1.327994 1.338336 1.382384 1.34101 1.269297 1.18661 1.254495 1.405267 1.426615 1.497142 1.523245 1.566575 1.501479 1.497604 8.504316 8.516687 8.528161 8.589458 8.627243 8.569742 8.645954 8.6848 8.687307 8.640487 8.642535 8.761666 8.868676 8.938058 9.006445 8.988899 9.051446 9.137066 9.176303 9.14671 9.151921 9.12014 9.008813 9.103144 9.204144 9.310285 9.410594 9.508551 9.58206 9.586965 9.675434 108738 102042 103424 105214 106523 100597 104212 114942 121473 117091 112614 117021 121447 118609 123351 122547 129218 134678 137674 145488 141077 132632 123266 133127 156170 160952 174238 180416 190057 179639 180512
United Arab Emirates ARE mena High income: nonOECD 36.3656 33.7933 31.9024 29.0794 36.3226 37.0587 33.1026 31.4847 30.0576 31.9187 28.79 29.8799 28.8809 31.106 32.7624 30.1074 16.6178 15.9625 29.597 27.0851 37.194 32.3791 26.2732 31.7108 30.9514 27.9951 25.4069 24.0463 23.3775 21.067 19.8538 35442.6 38435.9 35619.7 33922.3 33888.9 32361.9 25542.5 26480.2 22364.6 25877.4 33445.3 33769.2 34129.5 33724.4 34540.6 34760.1 36796.4 38469.8 35681.9 35085.5 40818 40215.3 39554 41398.2 44088.5 44477.2 41248.7 35214.8 28538 26954.3 27520 3.593622 3.520263 3.462682 3.370031 3.592441 3.612504 3.499613 3.449503 3.403114 3.463192 3.360028 3.397185 3.363181 3.437402 3.489283 3.40477 2.810474 2.770244 3.387675 3.298984 3.616148 3.477512 3.26855 3.456657 3.432419 3.332031 3.235021 3.179981 3.151774 3.04771 2.988395 10.47567 10.55675 10.48065 10.43183 10.43084 10.38474 10.1481 10.18415 10.01523 10.16113 10.41767 10.4273 10.43792 10.42598 10.44989 10.45623 10.51315 10.55763 10.4824 10.46554 10.61688 10.602 10.58542 10.63099 10.69396 10.70273 10.62737 10.46922 10.25899 10.2019 10.22267 36905 36857 36872 35343 46395 49926 47235 47693 48368 54488 52009 57011 58137 65980 73131 70641 41059 41646 81495 78375 112562 101415 84704 106842 113241 116149 123875 139405 158935 162602 167597
Pakistan PAK mena Lower middle income 0.400928 0.415797 0.436733 0.455016 0.467642 0.497723 0.504632 0.528589 0.556624 0.565117 0.617202 0.597421 0.620591 0.648248 0.687234 0.666858 0.72605 0.70893 0.712146 0.714069 0.740095 0.737335 0.762117 0.78005 0.848212 0.864942 0.907829 0.969294 0.938136 0.928252 0.932118 619.551 702.876 772.444 833.422 882.084 953.314 998.996 1062.37 1153.22 1225.97 1290.64 1375.38 1469.77 1497.64 1556.83 1629.1 1725.99 1743.42 1781.8 1840.5 1921.65 1963.91 2015.79 2100.73 2245.15 2404.58 2574.75 2740.05 2817.31 2789.61 2836.37 -0.9139743 -0.8775593 -0.8284321 -0.7874225 -0.7600513 -0.6977106 -0.6839258 -0.6375436 -0.5858661 -0.570723 -0.4825582 -0.5151337 -0.4770831 -0.4334813 -0.37508 -0.4051775 -0.3201366 -0.3439985 -0.3394722 -0.3367755 -0.3009769 -0.3047132 -0.2716558 -0.2483977 -0.1646245 -0.145093 -0.0966993 -0.0311871 -0.0638607 -0.0744525 -0.0702954 6.428995 6.555181 6.649559 6.72554 6.782287 6.859944 6.906751 6.968257 7.050313 7.111487 7.162893 7.226485 7.292861 7.311646 7.350407 7.395783 7.453556 7.463604 7.485379 7.517793 7.560939 7.582693 7.608767 7.65004 7.716527 7.785131 7.853508 7.915731 7.943538 7.933657 7.95028 32068 34400 37385 40304 42856 47176 49453 53535 58214 60957 68566 68243 72790 78008 84840 84484 94447 94711 97663 100384 106449 108283 114084 118895 131601 136636 146075 158895 156676 157890 161396
Vietnam VNM asia Lower middle income 0.313231 0.323933 0.330107 0.340972 0.304206 0.359549 0.383261 0.420562 0.366451 0.270323 0.324281 0.319024 0.31377 0.330346 0.370353 0.404057 0.473884 0.606948 0.62968 0.622651 0.69102 0.777653 0.890209 0.978858 1.11188 1.18871 1.22977 1.34944 1.4939 1.6281 1.72812 302.073 342.283 385.55 421.205 463.901 495.991 512.591 527.128 562.575 617.641 660.153 708.592 773.897 841.635 919.893 1011.95 1108.78 1200.81 1264.25 1323.52 1426.13 1538.55 1650.96 1781.4 2123.93 2353.89 2566.92 2792.5 2976.42 3127.93 3333.98 -1.160813 -1.127218 -1.108338 -1.075956 -1.19005 -1.022905 -0.9590387 -0.8661637 -1.003891 -1.308136 -1.126146 -1.142488 -1.159094 -1.107616 -0.9932993 -0.9061984 -0.7467919 -0.4993119 -0.4625437 -0.4737693 -0.3695858 -0.2514743 -0.1162985 -0.0213684 0.1060553 0.172868 0.2068287 0.2996898 0.4013903 0.4874144 0.5470332 5.710669 5.835638 5.954671 6.043119 6.139671 6.206558 6.239478 6.267443 6.332524 6.425907 6.492472 6.56328 6.651439 6.735346 6.824257 6.919634 7.011015 7.090752 7.142234 7.18805 7.26272 7.338596 7.409112 7.485155 7.661024 7.763824 7.850462 7.934692 7.998477 8.048127 8.111922 16821 17726 18383 19318 17550 21166 23091 25970 23183 17510 21408 21452 21478 23007 26230 29090 34668 45100 47513 47693 53645 61140 70806 78767 90549 97942 102456 113651 127164 140057 150230
Algeria DZA mena Upper middle income 3.41559 2.30994 1.89102 2.45301 3.21 3.18575 3.24041 3.47238 3.37076 3.12969 3.00672 3.02892 2.98752 2.92904 3.00321 3.23014 3.23559 2.90637 3.47432 2.94532 2.77215 2.62186 2.78923 2.80374 2.67452 3.15444 3.01279 3.2008 3.20835 3.42427 3.33151 2482.49 2711.43 2968.64 3149.09 3336.31 3467.98 3437.92 3411.19 3362.95 3572.44 3702.7 3688.48 3741.3 3662.95 3626.08 3766.91 3910.9 3955.26 4136.18 4263.34 4445.64 4616.08 4877.03 5253.92 5621.1 6068.01 6265.3 6548.96 6689.62 6719.65 6907.87 1.228351 0.8372218 0.637114 0.8973161 1.166272 1.158689 1.1757 1.24484 1.215139 1.140936 1.10085 1.108206 1.094444 1.074673 1.099681 1.172524 1.17421 1.066903 1.245399 1.080218 1.019622 0.9638841 1.025766 1.030954 0.983771 1.148812 1.102868 1.1634 1.165756 1.230889 1.203426 7.817018 7.905231 7.995859 8.054869 8.11262 8.151327 8.142622 8.134816 8.120574 8.181005 8.216818 8.21297 8.227188 8.206024 8.195908 8.234011 8.271523 8.282802 8.327528 8.357808 8.399679 8.437301 8.492291 8.56673 8.634283 8.710786 8.742782 8.787062 8.808312 8.812791 8.840417 66519 46439 39270 52625 71103 72786 76277 84121 83949 80047 78896 81459 82262 82475 86351 94693 96567 88195 107080 92119 87931 84293 90854 92533 89493 107128 103963 112339 114619 124586 123475
Iraq IRQ mena Upper middle income 3.33682 2.28707 2.12131 2.6142 2.64457 2.86813 2.99549 3.24391 4.07412 4.29039 3.00016 2.63309 3.32514 3.49309 3.80327 3.82563 3.30686 3.1488 3.23274 3.13034 3.04377 3.48096 3.45745 3.50999 4.27705 4.19219 3.54704 2.18624 3.20911 3.5358 3.70343 2208.41 3518.77 4718.88 5201.96 5261.02 5562.5 5775.02 6083.37 1.205019 0.8272713 0.7520361 0.9609592 0.9725082 1.053659 1.097107 1.176779 1.404656 1.456378 1.098667 0.9681591 1.201513 1.250788 1.335862 1.341722 1.195999 1.147022 1.17333 1.141141 1.113097 1.247307 1.24053 1.255612 1.453263 1.433223 1.266113 0.7821852 1.165994 1.262939 1.30926 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 7.700028 8.165867 8.459327 8.55679 8.56808 8.623803 8.661297 8.713314 45559 32123 30623 38749 40205 44675 47752 52882 67928 73252 52555 47422 61672 66802 75045 77902 69501 68309 72372 72284 72445 85342 87260 91118 114084 114770 99544 62834 94444 106651 114667
Czech Republic CZE europe High income: OECD 13.4735 12.7601 12.1782 12.1089 12.3925 12.54 11.9332 10.9377 12.1548 12.1769 11.7872 12.005 12.0337 11.8239 11.9899 12.0352 11.268 10.3526 10.669 12940.5 13790.7 13923.5 14055 14508.6 15476.7 16394.9 17056.1 18067.4 19506.5 21224.6 23356.3 25275.5 26338.6 25144.9 25987.3 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.600722 2.546326 2.499644 2.493943 2.517092 2.528926 2.479322 2.392214 2.497728 2.499541 2.467016 2.485322 2.487711 2.470119 2.484068 2.487834 2.421969 2.337234 2.367345 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.468117 9.531746 9.541335 9.550735 9.582496 9.647088 9.704726 9.744265 9.801865 9.878504 9.962918 10.05862 10.13759 10.17879 10.13241 10.16536 0 0 0 0 0 0 0 0 0 0 0 0 139034 131810 125844 125052 127832 129214 122845 112482 124649 124407 120193 122379 122709 120736 122764 123948 117014 108121 111752
Belgium BEL europe High income: OECD 13.7226 12.5788 11.9267 10.3113 10.6962 10.5948 10.4308 10.4472 10.1351 10.8135 10.8825 11.7526 11.386 10.8012 11.2012 11.1452 11.778 11.4225 11.6813 11.3279 11.2873 11.1569 10.4068 11.0673 10.6785 10.3568 10.1284 9.71372 9.6996 9.65074 9.97654 10083.5 10984.9 11746.4 12243.9 12997.7 13628.6 14155.2 14842.4 16069.8 17183.4 18340.8 19222.9 19892.3 20077.1 21098.4 21987.1 22679.4 23865.2 24536.3 25713.4 27195.5 27976.4 28663.3 29340.9 30934.4 32319.5 33987.9 35648 36419 35385.6 36352.5 2.619041 2.532014 2.478778 2.333244 2.369891 2.360367 2.344763 2.346331 2.316009 2.380797 2.387155 2.464074 2.432381 2.379658 2.416019 2.411007 2.466233 2.435585 2.457993 2.427272 2.423675 2.412057 2.342458 2.403995 2.368235 2.337643 2.315347 2.273539 2.272084 2.267035 2.300237 9.218658 9.304277 9.3713 9.412781 9.472529 9.519927 9.557835 9.605241 9.684696 9.751698 9.816886 9.863857 9.898087 9.907333 9.956951 9.99821 10.02921 10.08018 10.10791 10.15477 10.2108 10.23912 10.26337 10.28674 10.33962 10.38343 10.43376 10.48145 10.50285 10.47406 10.50102 135294 124014 117553 101624 105415 104447 102867 103116 100355 107461 108470 117579 114374 108925 113307 112977 119625 116295 119185 115844 115709 114766 107531 114836 111282 108525 106834 103215 103882 104194 108947
Uzbekistan UZB asia Lower middle income 5.3156 5.40206 4.95964 4.42889 4.44303 4.30056 4.88842 4.82982 4.8661 4.88846 5.02199 4.79837 4.61275 4.2759 4.39931 4.35255 4.39659 4.19942 3.65668 1287.96 1258.64 1195.08 1187.33 1206.13 1250.73 1298.97 1354.5 1419.16 1494.45 1558.83 1638.85 1790.71 1952.03 2134.56 2363.35 2589.56 2775.84 2994.77 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.670646 1.686781 1.601332 1.488148 1.491337 1.458744 1.586869 1.57481 1.582292 1.586878 1.613825 1.568277 1.528825 1.452995 1.481447 1.470762 1.480829 1.434946 1.296555 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.160815 7.137787 7.085968 7.079463 7.095172 7.131483 7.169327 7.211188 7.257821 7.309514 7.351691 7.40175 7.490367 7.576625 7.666016 7.767836 7.859243 7.928709 8.004622 0 0 0 0 0 0 0 0 0 0 0 0 114014 118532 110982 100912 103189 101781 117571 117421 119951 122038 126915 122683 119306 111888 116530 116944 120039 116607 104443
Kuwait KWT mena High income: nonOECD 17.9915 17.5153 14.047 13.7094 17.1886 16.8512 19.3903 16.3909 16.3967 17.4266 23.4554 5.09619 34.5633 31.6378 33.5701 30.0458 29.7086 28.9477 27.8311 25.7556 29.1336 28.9258 31.1573 30.5153 29.4474 29.5901 28.7251 31.3197 25499.4 21626 19882.6 20794.7 22179.5 20625.4 21574.5 22667.2 20048 24972.2 18834.7 17980.9 26541.9 35351.1 38172.4 37600.4 35708.2 28644.8 29196.7 29290.6 31894.5 31391.9 31331.8 35631.6 36008.4 36955.6 38488.7 39208.9 40463.7 37421.4 35973.6 2.8899 2.863073 2.642406 2.61808 2.844248 2.824421 2.964772 2.796726 2.797081 2.857998 3.155099 1.628492 1.628492 1.628492 1.628492 3.542793 3.454351 3.513636 3.402721 3.391436 3.365491 3.326153 3.248652 3.371891 3.364733 3.439047 3.418228 3.382607 3.387439 3.357771 3.444249 10.14641 9.981653 9.897599 9.942454 10.00692 9.93428 9.979265 10.02867 9.905883 10.12552 9.843455 9.797067 10.18648 10.47309 10.54987 10.53477 10.48314 10.26273 10.28181 10.28502 10.37019 10.35431 10.35239 10.48099 10.49151 10.51747 10.55812 10.57666 10.60816 10.53 10.49054 24675 25214 21170 21610 28368 29160 35321 31470 32915 35885 48313 10191 21085 33274 38907 54822 50154 54921 51745 54022 55181 55122 52753 61657 63534 71547 73769 75236 79959 81869 93696
Greece GRC europe High income: OECD 5.33364 5.21329 5.32697 5.64092 5.76556 6.10016 5.93249 6.34683 6.77393 7.35254 7.16005 6.59262 7.28105 7.22816 7.42571 7.44615 7.50714 7.84782 8.10438 7.96103 8.39171 8.56534 8.52806 8.68898 8.78728 8.89535 8.74245 8.80106 8.74361 8.48317 7.77492 8587.23 9162.29 9554.76 9771.93 10275.3 10825.2 11058.4 11045.6 11878.6 12745.9 13130.9 13870.8 14143.8 14095.7 14530.7 15004.4 15512.7 16373 17006.2 17752.1 18894.8 20081 21026.6 22659 24068.6 24826.6 26906.6 28516.2 28911.1 28199 27146.9 1.674034 1.651212 1.672782 1.730047 1.751903 1.808315 1.780444 1.847956 1.913082 1.995045 1.968517 1.885951 1.985275 1.977985 2.004948 2.007697 2.015855 2.060235 2.092405 2.074558 2.127244 2.147723 2.143362 2.162056 2.173306 2.185528 2.16819 2.174872 2.168324 2.138084 2.050903 9.058031 9.122851 9.164795 9.187269 9.237494 9.289635 9.310943 9.309788 9.382497 9.452967 9.482727 9.537541 9.557031 9.553627 9.584021 9.616098 9.649415 9.703387 9.741335 9.78426 9.846641 9.907532 9.953542 10.02831 10.08866 10.11967 10.20013 10.25823 10.27198 10.24704 10.20902 51430 50722 52148 55544 57055 60601 59130 63472 67990 74183 72724 67616 75504 75647 78364 79185 80395 84572 87810 86637 91616 93806 93670 95738 97150 98675 97286 98246 97810 94902 86717
Philippines PHL asia Lower middle income 0.780617 0.71155 0.699008 0.688312 0.586192 0.516317 0.523326 0.570108 0.64093 0.647927 0.674162 0.692078 0.750083 0.743907 0.805275 0.8722 0.873263 0.977703 0.930735 0.909779 0.944047 0.896013 0.881218 0.865958 0.879317 0.871958 0.774814 0.783898 0.840351 0.813883 0.873148 1345.17 1483.64 1592.86 1645.3 1540.75 1438.28 1481.37 1546.02 1670.38 1800.06 1879.56 1884.91 1892.33 1933.34 2011.87 2121.77 2234.53 2335.91 2238 2290.55 2445.62 2515.06 2594.99 2720.06 2904.91 3061.02 3255.24 3492.86 3635.6 3685.31 3945.23 -0.2476704 -0.3403102 -0.3580936 -0.3735132 -0.5341085 -0.6610348 -0.6475512 -0.561929 -0.4448353 -0.4339772 -0.3942845 -0.3680564 -0.2875716 -0.2958398 -0.2165708 -0.136736 -0.1355184 -0.0225493 -0.0717809 -0.0945531 -0.0575793 -0.1098007 -0.1264502 -0.1439191 -0.1286094 -0.1370143 -0.2551326 -0.2434768 -0.1739361 -0.2059384 -0.1356499 7.204276 7.302254 7.373286 7.405678 7.340024 7.271203 7.300723 7.343439 7.420806 7.495575 7.538793 7.541636 7.545564 7.567004 7.60682 7.660006 7.711786 7.756157 7.713338 7.736547 7.802054 7.830052 7.861338 7.908409 7.974158 8.026504 8.088021 8.158476 8.198529 8.21211 8.280263 37000 34664 34998 35416 30993 28049 29208 32684 37730 39142 41763 43931 48753 49482 54800 60711 62163 71158 69240 69160 73307 71052 71338 71532 74066 74832 67693 69669 75944 74785 81591
Nigeria NGA africa Lower middle income 0.924785 0.870972 0.843983 0.751666 0.851423 0.833036 0.853538 0.671203 0.779383 0.455484 0.474553 0.461303 0.645019 0.582306 0.441207 0.32204 0.363612 0.35261 0.343834 0.373763 0.644398 0.661489 0.759339 0.702663 0.713586 0.750051 0.687395 0.646863 0.612541 0.46157 0.494091 700.15 899.533 920.054 884.184 873.224 949.581 859.245 764.12 826.208 887.764 1008.8 1006.98 1006.69 1024.01 1027.04 1017.25 1058.41 1077.04 1088.33 1079.39 1131.48 1218.35 1458.89 1597.86 1773.31 1795.5 1912.98 2044.44 2149.96 2255.28 2398.68 -0.0781945 -0.1381456 -0.169623 -0.2854638 -0.1608458 -0.1826786 -0.1583654 -0.3986829 -0.2492525 -0.7863955 -0.7453828 -0.7736993 -0.4384756 -0.5407594 -0.8182404 -1.133078 -1.011669 -1.042392 -1.067596 -0.9841331 -0.4394386 -0.413262 -0.2753075 -0.3528773 -0.3374524 -0.2876143 -0.3748461 -0.4356214 -0.4901401 -0.773122 -0.7050356 6.551295 6.801876 6.824432 6.784665 6.772192 6.856021 6.756054 6.638725 6.716846 6.788706 6.916517 6.914711 6.914423 6.931481 6.934436 6.924858 6.964523 6.981972 6.9924 6.984151 7.031282 7.105253 7.285431 7.37642 7.480603 7.493039 7.556417 7.622879 7.673204 7.721029 7.782674 68155 65958 65603 59930 69625 69893 73505 59343 70747 42442 45375 45247 64884 60062 46659 34917 40421 40190 40183 44789 79182 83351 98125 93138 97047 104697 98514 95210 92621 71719 78910
Romania ROU europe Upper middle income 8.83965 8.84016 8.69511 8.87887 8.3542 8.54054 8.84311 9.2449 9.22807 9.24561 6.84695 5.9793 5.40761 5.30237 5.07761 5.60308 5.60109 5.07436 4.54217 3.98895 4.00947 4.3228 4.24168 4.44694 4.44722 4.48767 4.84083 4.83455 4.60833 3.94292 3.88925 3664.78 3987.16 4378.91 4805.42 5253.17 5391.36 5602.49 5758.61 5899.48 5752.55 5623.84 5067.46 4746.83 4961.23 5298.37 5829.63 6204.9 5960.73 5763.99 5806.61 6139.62 6639.52 7088.98 7828.21 8769.02 9409.56 10479 11449.4 12551.1 11833.8 11860.1 2.179247 2.179305 2.162761 2.183674 2.122764 2.144825 2.179639 2.224072 2.22225 2.224149 1.923803 1.788304 1.687807 1.668154 1.624841 1.723317 1.722962 1.624201 1.513406 1.383528 1.38866 1.463903 1.444958 1.492216 1.492279 1.501333 1.577086 1.575788 1.527865 1.371921 1.358217 8.206524 8.290834 8.384555 8.4775 8.566586 8.592553 8.630966 8.658451 8.682619 8.657398 8.63477 8.530595 8.465232 8.509409 8.575154 8.670709 8.733094 8.692948 8.659386 8.666752 8.722518 8.800795 8.866297 8.965489 9.07898 9.149482 9.257133 9.345691 9.437564 9.378712 9.380937 196617 198154 195774 200563 189272 194344 202147 212165 212778 214142 158862 137531 123263 120699 115415 127102 126691 114447 102232 89640 89985 95672 92174 95940 95401 95676 102595 100960 94645 80307 78745
Colombia COL latam Upper middle income 1.64681 1.61374 1.62971 1.7168 1.66384 1.60852 1.59844 1.6098 1.63846 1.63008 1.72148 1.68214 1.79291 1.81569 1.88141 1.62997 1.6255 1.71259 1.71066 1.44038 1.4518 1.38747 1.35047 1.37136 1.29495 1.4113 1.43564 1.42565 1.47141 1.54686 1.62945 2463.61 2694.92 2827.23 2922 3062.11 3280.47 3469.54 3672.18 3874.1 4077.53 4321.43 4478.11 4685.87 4976.37 5249.04 5543.05 5667.99 5885.51 5891.68 5652.51 5864.04 6020.64 6187.24 6476.72 6897.61 7339.52 7975.69 8648.63 9022.59 9133.84 9498.86 0.4988374 0.4785521 0.4883996 0.5404627 0.5091271 0.4753153 0.4690291 0.4761087 0.4937554 0.4886261 0.543184 0.520066 0.5838395 0.596467 0.6320238 0.4885628 0.4858184 0.5380081 0.5368767 0.3649088 0.3728048 0.3274797 0.3004529 0.3158012 0.2584695 0.34451 0.3616101 0.3546273 0.3862223 0.4362264 0.4882435 7.809383 7.899124 7.947052 7.980023 8.026859 8.095742 8.151777 8.208541 8.262069 8.313247 8.371342 8.406957 8.452307 8.512456 8.565801 8.6203 8.64259 8.680248 8.681296 8.639855 8.676594 8.702949 8.730245 8.77597 8.83893 8.901029 8.984154 9.065156 9.107487 9.119741 9.158927 44356 44459 45915 49449 48980 48379 49101 50487 52445 53234 57337 57121 62049 64022 67572 59614 60528 64910 65977 56512 57924 56274 55661 57422 55071 60946 62940 63439 66439 70850 75680
Chile CHL latam High income: OECD 2.25739 2.16085 1.78597 1.77635 1.86138 1.77318 1.80411 1.80787 2.11073 2.49494 2.5839 2.39153 2.43058 2.54145 2.73772 2.94018 3.30903 3.77685 3.82918 3.98828 3.79788 3.37337 3.49952 3.44333 3.71389 3.77838 3.90151 4.2687 4.23168 3.95883 4.21312 2946.75 3366.09 3039.53 3022.39 3262.25 3380.24 3577.72 3843.27 4195.66 4740.94 5013.54 5490.63 6189.27 6656.96 7060.43 7829.09 8440.89 9028.45 9298.5 9240.86 9744.62 10185.8 10450.1 10899.7 11812.5 12705.8 13719.7 14669.4 15277.1 15106.2 16002.1 0.8142114 0.7705024 0.5799594 0.5745625 0.6213179 0.5727751 0.5900646 0.5921504 0.7470338 0.9142661 0.9492987 0.8719341 0.8881295 0.9327358 1.007125 1.078471 1.196655 1.328892 1.34265 1.38336 1.334444 1.215913 1.252625 1.236439 1.312081 1.329296 1.361363 1.451309 1.442598 1.37595 1.438204 7.988458 8.121507 8.019458 8.013803 8.090173 8.125702 8.182481 8.254079 8.341806 8.463991 8.519897 8.610798 8.730573 8.803418 8.862261 8.965602 9.040843 9.108136 9.137609 9.131391 9.18447 9.228753 9.254369 9.296487 9.37691 9.449814 9.526586 9.593522 9.634111 9.622858 9.680474 25266 24554 20616 20840 22200 21503 22248 22673 26927 32387 34143 32182 33315 35475 38889 42457 48518 56171 57715 60883 58694 52757 55361 55078 60047 61730 64393 71154 71224 67267 72258
Israel ISR mena High income: OECD 5.45322 5.36238 5.974 5.83147 5.70902 5.87517 6.19355 6.26806 6.76521 7.02882 7.19629 6.93388 8.10061 8.58166 8.72772 9.78087 9.55726 10.864 10.514 10.1479 9.96836 10.2111 9.61122 9.7347 9.28194 8.69326 9.35348 9.25113 9.70585 8.9544 9.26803 7689.25 8641.28 9144.53 9586.67 9979.63 10582 11000.8 11933.8 12568 12962.5 13964.7 14632.5 15485.1 15862 16736.9 18146.3 18931.9 19361.4 19927.9 20427.7 22239 22277.6 22208.3 22589.1 23895.7 25335.6 26994.5 28991.1 30209.1 30158.1 31557.9 1.696206 1.679409 1.787416 1.763269 1.742048 1.770735 1.823509 1.835467 1.911793 1.950019 1.973566 1.93642 2.09194 2.149627 2.166504 2.280429 2.257301 2.385457 2.352707 2.317263 2.299416 2.323476 2.262932 2.275697 2.228071 2.162548 2.235749 2.224746 2.272729 2.192146 2.226571 8.947578 9.064306 9.120912 9.168129 9.208302 9.266905 9.305726 9.387134 9.43891 9.469817 9.544287 9.590997 9.647633 9.67168 9.725373 9.806221 9.848606 9.871038 9.899875 9.924646 10.0096 10.01134 10.00822 10.02522 10.08145 10.13997 10.20339 10.27475 10.3159 10.31421 10.35958 21148 21214 24081 23938 23744 24870 26626 27385 30051 31756 33535 34316 41499 45148 47121 54235 54400 63402 62779 62156 62691 65749 63146 65122 63201 60245 65977 66424 70938 67029 70656
Qatar QAT mena High income: nonOECD 58.5404 51.8394 44.5603 36.4381 36.1382 33.4356 33.3846 27.1668 26.7943 30.9385 24.71 36.4335 54.7422 62.4439 61.0443 61.5076 62.1022 68.5349 58.8727 54.894 58.4985 49.6279 45.2272 54.763 61.6237 63.1799 58.6355 58.3464 50.0305 42.2738 40.3101 47616.4 46185.6 41808.2 38399.8 43237.6 36739.8 37008.4 36741.8 38264.4 40289.1 30517 30458 34364.9 34548 35559.1 36723.5 38167.1 48849.1 52835.6 53758 57238.7 59030.6 62413.2 62979.5 71582.5 71960.4 79419.9 80761.7 71861.4 77198.3 90887.4 4.069716 3.948151 3.796844 3.595614 3.58735 3.50962 3.508094 3.301996 3.28819 3.432001 3.207208 3.595488 4.002635 4.134268 4.1116 4.119162 4.128782 4.227344 4.075378 4.005404 4.069001 3.904554 3.811698 4.003015 4.121047 4.145986 4.07134 4.066397 3.912633 3.744167 3.696602 10.77093 10.74042 10.64085 10.55581 10.67447 10.51161 10.5189 10.51167 10.55227 10.60384 10.32604 10.3241 10.44479 10.4501 10.47895 10.51117 10.54973 10.79649 10.87494 10.89225 10.95498 10.98581 11.04153 11.05056 11.17861 11.18387 11.28251 11.29926 11.18249 11.25413 11.41738 13099 12860 12354 11269 12332 12405 13297 11500 11929 14327 11775 17675 26802 30722 30223 30825 31826 36289 32402 31408 34730 30363 28482 36157 44393 51881 56736 67242 67997 66120 70531
Austria AUT europe High income: OECD 6.92848 7.41616 7.11212 6.87437 7.21428 7.23077 7.1443 7.62342 7.03203 7.10245 7.90918 8.45952 7.72152 7.62517 7.69938 7.7665 7.91866 8.01968 8.21959 7.98247 7.95048 8.17134 8.31227 8.90446 8.7942 9.02284 8.65501 8.32948 8.18869 7.44291 7.97365 10420.1 11358.7 12278.2 13159.6 13670.4 14414.5 15033.6 15655.3 16338.5 17554.2 18850.4 19948 20601.8 21029.4 21908.2 22926.9 23889 24830.7 26021.6 27274.4 28847.7 29647.6 30462.3 31200.9 32558 34128.2 36280 38469.6 39614.3 38272.1 39304.6 1.93564 2.003661 1.961801 1.927801 1.976062 1.978345 1.966316 2.031225 1.950475 1.96044 2.068024 2.135292 2.044011 2.031455 2.04114 2.049819 2.069222 2.081898 2.106521 2.077248 2.073232 2.100633 2.117733 2.186553 2.174092 2.199759 2.158138 2.119802 2.102754 2.007262 2.076142 9.251492 9.337739 9.415581 9.484903 9.522985 9.575988 9.618041 9.658568 9.701277 9.773046 9.84429 9.900883 9.933134 9.953678 9.994617 10.04007 10.08117 10.11983 10.16668 10.2137 10.26978 10.29714 10.32425 10.3482 10.39078 10.43788 10.49902 10.55762 10.58695 10.55247 10.5791 52306 56131 53868 51983 54550 54701 54081 57744 53340 54118 60726 65603 60542 60282 61103 61730 63025 63901 65566 63798 63696 65716 67179 72317 71866 74238 71565 69141 68269 62262 66897
Belarus BLR europe Upper middle income 8.56375 7.27133 6.44513 6.09368 5.92098 5.88308 5.72029 5.56244 5.34418 5.29772 5.31074 5.48347 5.96481 6.11243 6.43787 6.30563 6.59275 6.34194 6.55655 4373.5 4128.01 3726.99 3399.98 3566.77 4060.12 4475.94 4700.77 5097.63 5478.3 5876.73 6457.23 7436.85 8610.04 9828.66 11024.5 12444.8 12595.4 13755 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 2.147538 1.983939 1.863325 1.807252 1.778502 1.77208 1.744019 1.716037 1.676008 1.667277 1.669731 1.701738 1.785877 1.810324 1.862197 1.841443 1.88597 1.847185 1.880464 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.383319 8.325551 8.223356 8.131525 8.179416 8.308968 8.406471 8.455482 8.536531 8.60855 8.678756 8.772956 8.914203 9.060684 9.193058 9.307875 9.429056 9.441091 9.529155 0 0 0 0 0 0 0 0 0 0 0 0 87487 74451 65914 62119 60157 59519 57598 55819 53469 52596 52390 53722 58038 59064 61829 60282 62816 60293 62222
Syria SYR mena Lower middle income 2.32275 2.87122 2.54726 2.80706 3.2085 2.77966 2.84494 3.18489 3.14968 2.85938 3.00775 3.36968 3.36949 3.47402 3.48014 3.06848 3.00073 2.70084 3.22501 3.27458 3.11818 2.92113 2.29885 3.13821 2.89153 2.78708 2.84976 2.93582 3.32743 2.95326 2.87278 1614.11 1850.35 1950.88 1993.97 1868.36 2000.32 1881.3 1889.34 2132.32 2013.35 2227.44 2474.28 2784.69 2978.16 3125.18 3278.29 3353.81 3294.71 3433.03 3291.85 3356.26 3465.05 3623.74 3517.3 3841 3998.8 4224.81 4472.03 4648.07 4840.62 4996.53 0.8427508 1.054736 0.9350166 1.032137 1.165802 1.02233 1.045542 1.158417 1.147302 1.050605 1.101191 1.214818 1.214762 1.245313 1.247071 1.121184 1.098856 0.9935621 1.170935 1.18619 1.137248 1.071971 0.8324091 1.143653 1.061784 1.024995 1.047236 1.076985 1.202201 1.08291 1.055281 7.386539 7.52313 7.576036 7.597883 7.532816 7.601062 7.539718 7.543983 7.664966 7.607555 7.708608 7.813705 7.931892 7.999061 8.047247 8.095078 8.117852 8.100074 8.141198 8.099205 8.118583 8.150482 8.195262 8.165449 8.253488 8.29375 8.348729 8.405598 8.444207 8.484798 8.516499 20803 26637 24488 27961 33091 29651 31353 36226 36945 34565 37451 43194 44437 47117 48533 43997 44250 40968 50282 52379 51048 48786 39068 54286 51111 50634 53590 57429 67700 62112 61859
Finland FIN europe High income: OECD 12.1867 10.7314 8.92566 8.56225 8.65558 10.1313 10.8433 11.6899 10.5499 10.5924 10.3772 10.72 9.49189 9.98095 11.3001 10.3424 11.9586 11.672 11.0583 10.7295 10.0732 10.8759 11.7443 13.2147 12.8327 10.4164 12.5699 12.0978 10.651 9.95863 11.5308 8683.28 9567.77 10406.7 11079.3 11771.9 12506.3 13055.3 13819.5 15001.4 16307.2 16918.3 16330.4 16037.3 16213.8 17087.5 18071.5 19003.4 20467.9 21676.7 22792.8 24505.2 25570.8 26382.2 27380.4 29165.1 30459.2 32647.6 35145.4 35762.7 32806.3 34167.8 2.500343 2.373174 2.188931 2.147362 2.158204 2.315632 2.38355 2.458729 2.35612 2.36014 2.339608 2.37211 2.250437 2.300678 2.42481 2.336252 2.481454 2.457192 2.40318 2.372998 2.30988 2.386547 2.463371 2.581328 2.551995 2.343385 2.531308 2.493023 2.36565 2.298439 2.445025 9.069155 9.166156 9.2502 9.312838 9.37347 9.43399 9.476948 9.533834 9.6159 9.699361 9.736148 9.700783 9.682671 9.693616 9.746105 9.80209 9.852374 9.926612 9.983992 10.0342 10.10664 10.14921 10.18044 10.21758 10.28073 10.32414 10.39353 10.46725 10.48466 10.39838 10.43904 58247 51510 43084 41576 42255 49666 53329 57656 52185 52585 51745 53747 47858 50568 57499 52827 61283 59992 56989 55423 52141 56424 61078 68888 67091 54646 66197 63982 56593 53168 61844
<!DOCTYPE HTML>
<meta charset="utf-8">
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<script src="http://d3js.org/d3.v3.min.js"></script>
<style>
body, h1, h2, h3, p {
margin: 0px;
padding: 0px;
font-family: Arial, sans-serif;
font-size: 14px;
line-height: 1.5em;
color: #4a4a4a;
}
#content {
margin: 5px;
padding: 0px 0px 150px 0px;
width: 575px;
text-align: left;
}
#container {
padding: 15px;
border: 1px solid #ccc;
height: 550px;
clear: both;
}
#header h1 {
margin: 0px 0px 0px 10px;
padding: 4px 0px 0px 7px;
font-family: Georgia, "Times New Roman", serif;
font-size: 18px;
font-weight: normal;
color: #fff;
}
p {
margin: 0px;
padding: 0px 0px 15px 0px;
color: #4a4a4a;
font-weight: normal;
line-height: 1.5rem;
}
p.body {
padding: 15px 0px 15px 0px;
}
#slides {
margin: 0px;
padding: 0px;
background: #fff;
height: 400px;
width: 300px;
float: right;
}
#slides p {
margin: 0px;
padding: 0px 0px 13px 0px;
color: #4a4a4a;
font-weight: normal;
}
g.y.axis path.domain {
stroke-width: 0px;
}
g.x.axis path.domain, g.x.axis g.tick.major line, g.x.axis g.tick line {
stroke: #333;
stroke-width: 1px;
shape-rendering: crispEdges;
}
.axis path, .axis line {
fill: none;
shape-rendering: crispEdges;
border-width: 2px;
}
.axis line {
stroke: #eee;
stroke-width: 1;
shape-rendering: crispEdges;
}
g.group text, g.tick text, .x.axis text {
color: #4a4a4a;
font-size: 12px;
}
#buttons, #countrybuttons {
margin: 0px 0px 0px 5px;
padding: 0px;
}
#countrybuttons{
margin: 5px 0px 0px 5px;
padding: 0px;
}
.button {
display: inline-block;
margin: 0px 0px 3px 0px;
padding: 4px 6px;
line-height: 20px;
background:#ff0000;
min-width: 70px;
border-radius: 3px;
text-align: center;
color: #fff;
font-family: Arial, sans-serif;
font-size: 12px;
font-weight: bold;
text-transform: uppercase;
}
#countrybuttons .button {
min-width: 0px;
background:#f4f4f4;
color: #747474;
}
#countrybuttons .selected {
background:#ff0000;
color: #fff;
}
.button:hover {
background:#e3120b;
color: #fff;
cursor: pointer;
}
.button span {
margin: 0px;
padding: 0px 3px;
}
#play {
float: left;
}
.regLine {
fill: none;
stroke: #00a1ce;
stroke-width: 2.5;
opacity: 0;
}
#header {
margin: 0px;
padding: 0px;
height: 34px;
background: #747474;
}
#block {
float: left;
margin: 0px;
padding: 0px;
height: 100%;
width: 10px;
background: #ff0000;
}
.left.label {
font-size: 12px;
fill: #4a4a4a;
}
.right.label {
font-size: 12px;
fill: #772210;
}
#source {
margin: 0px 0px 20px 0px;
padding: 0px;
font-size: 11px;
}
g.group text {
opacity: 0;
}
circle {
fill: #00a1ce;
stroke: #fff;
stroke-width: 1.5;
}
.scatter {
opacity: 0.6;
}
.timerCircle {
stroke: #ccc;
stroke-width: 2;
fill: #fff;
}
rect {
fill: #ccc;
}
#year {
font-family: Arial, sans-serif;
font-size: 14px;
color: #4a4a4a;
font-weight: bold;
}
div.tooltip {
position: absolute;
pointer-events: none;
margin: 0px;
padding: 7px;
width: 255px;
height: 75px;
background: #fff;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
border: 1px solid #ccc;
opacity: 0;
}
div.tooltip p {
margin: 0px;
padding: 0px;
line-height: 1.2rem;
color: #4a4a4a;
text-align: left;
}
.legend circle {
fill: none;
stroke: #ccc;
stroke-width: 1;
}
.legend text {
fill: #747474;
font: 10px Arial, sans-serif;
text-anchor: middle;
}
</style>
</head>
<body>
<div id="content">
<div id="header">
<div id="block"></div>
<h1>CO<sub>2</sub> emissions and GDP per capita</h1>
</div>
<div id="container">
<div id="buttons">
<div class="button" id="play">Play<span class="fa fa-caret-right"></span></div>
</div>
<div id="slider"></div>
<div id="countrybuttons">
<div class="button selected" id="africa">Africa</span></div>
<div class="button selected" id="asia">Asia</span></div>
<div class="button selected" id="europe">Europe</span></div>
<div class="button selected" id="latam">Latin America</span></div>
<div class="button selected" id="mena">MENA</span></div>
<div class="button selected" id="northamerica">North America</span></div>
</div>
<div id="chart"></div>
<p id="source">Source: World Bank, IMF</p>
</div>
</div>
<script type="text/javascript" src="chart.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment