From 1ef4ebc55dc4f57677910d24c0e9e306b5dff7e7 Mon Sep 17 00:00:00 2001 From: "henry.zhang" <1002527441@qq.com> Date: Wed, 12 Aug 2020 23:01:13 +0800 Subject: [PATCH] fix: json serilize problem. --- .../Demos/Bubble/Bubble_Chart.razor | 178 +- src/AntDesign.Charts.Docs/Demos/DemoData.cs | 46 + .../wwwroot/data/life-expectancy.json | 10775 ++++++++++++++++ .../wwwroot/data/revenue.json | 434 + .../Components/Configs/Label.cs | 3 + .../Components/Plots/Scatter/ScatterConfig.cs | 6 +- 6 files changed, 11419 insertions(+), 23 deletions(-) create mode 100644 src/AntDesign.Charts.Docs/wwwroot/data/life-expectancy.json create mode 100644 src/AntDesign.Charts.Docs/wwwroot/data/revenue.json diff --git a/src/AntDesign.Charts.Docs/Demos/Bubble/Bubble_Chart.razor b/src/AntDesign.Charts.Docs/Demos/Bubble/Bubble_Chart.razor index 31a9e01..de9ef58 100644 --- a/src/AntDesign.Charts.Docs/Demos/Bubble/Bubble_Chart.razor +++ b/src/AntDesign.Charts.Docs/Demos/Bubble/Bubble_Chart.razor @@ -16,17 +16,17 @@ @* - 示例3 - - - - - - 示例4 - - - - *@ + 示例3 + + + + + + 示例4 + + + + *@ @code{ @@ -38,19 +38,26 @@ IChartComponent chart2; SmokingRateItem[] data2; - //IChartComponent chart3; - //RevenueItem[] data3; + IChartComponent chart3; + RevenueItem[] data3; - //IChartComponent chart4; - //SmokingRateItem[] data4; + IChartComponent chart4; + LifeExpectanyItem[] data4; protected override async Task OnInitializedAsync() { data1 = await DemoData.SmokingRateAsync(NavigationManager, HttpClient); - data2 = data1; await chart1.ChangeData(data1); - await chart2.ChangeData(data2); + data2 = data1; + await chart2.ChangeData(data1); + + //var t1 = await DemoData.RevenueItemAsync(NavigationManager, HttpClient); + //data3 = await DemoData.RevenueItemAsync(NavigationManager, HttpClient); + //await chart3.ChangeData(data3); + + //data4 = await DemoData.LifeExpectanyItemAsync(NavigationManager, HttpClient); + //await chart4.ChangeData(data4); await base.OnInitializedAsync(); } @@ -110,10 +117,10 @@ new {fill= "#a3dda1", opacity= 0.1}, new {fill= "white", opacity= 0}, new {fill="#d8d0c0", opacity=0.2} - }, - Label = new + }, + Label = new { - Text = new[] + Text = new [] { "Female decrease,\nmale increase", "Female & male decrease", @@ -125,4 +132,133 @@ }; #endregion 示例2 -} \ No newline at end of file + + #region 示例3 + + //smoking-rate + readonly BubbleConfig config3 = new BubbleConfig + { + XField = "Revenue_per_club", + YField = "UEFA_points", + SizeField = "UEFA_points", + PointSize = new[] { 4, 25 }, + ColorField = new[] { "revenueGroup" }, + Color = new[] { "#72302f", "#beb298", "#d18768", "#e3cda1" }, //#72302f', '#beb298', '#d18768', '#e3cda1'] + PointStyle = new GraphicStyle + { + Stroke = "#777777", + LineWidth = 1, + Opacity = 0.9, + }, + XAxis = new ValueTimeAxis + { + Visible = true, + Max = 230, + Min = -5, + Nice = false, + }, + Trendline = new TrendlineConfig + { + Visible=true, + Type="log", + } + }; + + #endregion 示例3 + + #region 示例4 + + //smoking-rate + readonly BubbleConfig config4 = new BubbleConfig + { + XField = "income", + YField = "lifeExpectancy", + SizeField = "population", + ColorField = "country", + PointSize= new[] {4,80}, + Color = new[]{ + "#5B8FF9", + "#5AD8A6", + "#f03838", + "#35d1d1", + "#E8684A", + "#6DC8EC", + "#9270CA", + "#FF9D4D", + "#F6BD16", + "#FF99C3", + }, + + ForceFit = true, + + PointStyle = new GraphicStyle + { + Stroke = "#777777", + LineWidth = 1, + Opacity = 0.8, + }, + XAxis = new ValueTimeAxis + { + Visible = true, + Max = 100000, + Min = 300, + Nice=false, + Type="log", + Title= new BaseAxisTitle + { + Visible=true, + Text = "人均收入", + } + }, + + YAxis = new ValueTimeAxis + { + Visible = true, + Max = 100, + Min = 0, + Title = new BaseAxisTitle + { + Visible = true, + Text = "人均寿命", + } + }, + + Tooltip = new Charts.Tooltip + { + Visible=true, + ShowTitle = true, + TitleField="country", + Fields = new[] + { + "income", + "liftExpectany", + "population", + } + + }, + + Label = new Label + { + Visible=true, + Field="country", + }, + + Interactions = new Interaction[] + { + new Interaction + { + Type="timeline", + Cfg = new + { + field = "year", + key = "country", + loop = true, + } + } + }, + + + }; + + #endregion 示例4 +} diff --git a/src/AntDesign.Charts.Docs/Demos/DemoData.cs b/src/AntDesign.Charts.Docs/Demos/DemoData.cs index e675516..645705a 100644 --- a/src/AntDesign.Charts.Docs/Demos/DemoData.cs +++ b/src/AntDesign.Charts.Docs/Demos/DemoData.cs @@ -75,6 +75,18 @@ namespace AntDesign.Charts.Docs.Demos { return await HttpClient.GetFromJsonAsync("https://gw.alipayobjects.com/os/antvdemo/assets/data/fertility.json"); } + + public static async Task RevenueItemAsync(NavigationManager NavigationManager, HttpClient HttpClient) + { + var baseUrl = NavigationManager.ToAbsoluteUri(NavigationManager.BaseUri); + return await HttpClient.GetFromJsonAsync(new Uri(baseUrl, "_content/AntDesign.Charts.Docs/data/revenue.json").ToString()); + } + + public static async Task LifeExpectanyItemAsync(NavigationManager NavigationManager, HttpClient HttpClient) + { + var baseUrl = NavigationManager.ToAbsoluteUri(NavigationManager.BaseUri); + return await HttpClient.GetFromJsonAsync(new Uri(baseUrl, "_content/AntDesign.Charts.Docs/data/life-expectancy.json").ToString()); + } } public class FireworksSalesItem @@ -188,5 +200,39 @@ namespace AntDesign.Charts.Docs.Demos public object value { get; set; } } + public class LifeExpectanyItem + { + public long income { get; set; } + public double liftExpectancy { get; set; } + public long population { get; set; } + + public string country { get; set; } + + public int year { get; set; } + + } + + + //"UEFA rank": 9, + //"country": "Belgium", + //"UEFA points*": 38.5, + //"Clubs": "0/5", + //"Revenue per club[€ m]": 19.7, + //"revenueGroup": "€5M to €50M" + public class RevenueItem + { + [JsonPropertyName("UEFA rank")] + public int UEFA_rank { get; set; } + + public string country { get; set; } + [JsonPropertyName("UEFA points*")] + public double UEFA_points { get; set; } + + public string Clubs { get; set; } + [JsonPropertyName("URevenue per club[€ m]")] + public double Revenue_per_club { get; set; } + + public string revenueGroup { get; set; } + } } diff --git a/src/AntDesign.Charts.Docs/wwwroot/data/life-expectancy.json b/src/AntDesign.Charts.Docs/wwwroot/data/life-expectancy.json new file mode 100644 index 0000000..084f907 --- /dev/null +++ b/src/AntDesign.Charts.Docs/wwwroot/data/life-expectancy.json @@ -0,0 +1,10775 @@ +[ + { + "income": 815, + "lifeExpectancy": 34.05, + "population": 351014, + "country": "Australia", + "year": 1800 + }, + { + "income": 1314, + "lifeExpectancy": 39, + "population": 645526, + "country": "Canada", + "year": 1800 + }, + { + "income": 985, + "lifeExpectancy": 32, + "population": 321675013, + "country": "China", + "year": 1800 + }, + { + "income": 864, + "lifeExpectancy": 32.2, + "population": 345043, + "country": "Cuba", + "year": 1800 + }, + { + "income": 1244, + "lifeExpectancy": 36.5731262, + "population": 977662, + "country": "Finland", + "year": 1800 + }, + { + "income": 1803, + "lifeExpectancy": 33.96717024, + "population": 29355111, + "country": "France", + "year": 1800 + }, + { + "income": 1639, + "lifeExpectancy": 38.37, + "population": 22886919, + "country": "Germany", + "year": 1800 + }, + { + "income": 926, + "lifeExpectancy": 42.84559912, + "population": 61428, + "country": "Iceland", + "year": 1800 + }, + { + "income": 1052, + "lifeExpectancy": 25.4424, + "population": 168574895, + "country": "India", + "year": 1800 + }, + { + "income": 1050, + "lifeExpectancy": 36.4, + "population": 30294378, + "country": "Japan", + "year": 1800 + }, + { + "income": 579, + "lifeExpectancy": 26, + "population": 4345000, + "country": "North Korea", + "year": 1800 + }, + { + "income": 576, + "lifeExpectancy": 25.8, + "population": 9395000, + "country": "South Korea", + "year": 1800 + }, + { + "income": 658, + "lifeExpectancy": 34.05, + "population": 100000, + "country": "New Zealand", + "year": 1800 + }, + { + "income": 1278, + "lifeExpectancy": 37.91620899, + "population": 868570, + "country": "Norway", + "year": 1800 + }, + { + "income": 1213, + "lifeExpectancy": 35.9, + "population": 9508747, + "country": "Poland", + "year": 1800 + }, + { + "income": 1430, + "lifeExpectancy": 29.5734572, + "population": 31088398, + "country": "Russia", + "year": 1800 + }, + { + "income": 1221, + "lifeExpectancy": 35, + "population": 9773456, + "country": "Turkey", + "year": 1800 + }, + { + "income": 3431, + "lifeExpectancy": 38.6497603, + "population": 12327466, + "country": "United Kingdom", + "year": 1800 + }, + { + "income": 2128, + "lifeExpectancy": 39.41, + "population": 6801854, + "country": "United States", + "year": 1800 + }, + { + "income": 834, + "lifeExpectancy": 34.05, + "population": 342440, + "country": "Australia", + "year": 1810 + }, + { + "income": 1400, + "lifeExpectancy": 39.01496774, + "population": 727603, + "country": "Canada", + "year": 1810 + }, + { + "income": 985, + "lifeExpectancy": 32, + "population": 350542958, + "country": "China", + "year": 1810 + }, + { + "income": 970, + "lifeExpectancy": 33.64, + "population": 470176, + "country": "Cuba", + "year": 1810 + }, + { + "income": 1267, + "lifeExpectancy": 36.9473378, + "population": 1070625, + "country": "Finland", + "year": 1810 + }, + { + "income": 1839, + "lifeExpectancy": 37.4, + "population": 30293172, + "country": "France", + "year": 1810 + }, + { + "income": 1759, + "lifeExpectancy": 38.37, + "population": 23882461, + "country": "Germany", + "year": 1810 + }, + { + "income": 928, + "lifeExpectancy": 43.13915533, + "population": 61428, + "country": "Iceland", + "year": 1810 + }, + { + "income": 1051, + "lifeExpectancy": 25.4424, + "population": 171940819, + "country": "India", + "year": 1810 + }, + { + "income": 1064, + "lifeExpectancy": 36.40397538, + "population": 30645903, + "country": "Japan", + "year": 1810 + }, + { + "income": 573, + "lifeExpectancy": 26, + "population": 4345000, + "country": "North Korea", + "year": 1810 + }, + { + "income": 570, + "lifeExpectancy": 25.8, + "population": 9395000, + "country": "South Korea", + "year": 1810 + }, + { + "income": 659, + "lifeExpectancy": 34.05, + "population": 100000, + "country": "New Zealand", + "year": 1810 + }, + { + "income": 1299, + "lifeExpectancy": 36.47500606, + "population": 918398, + "country": "Norway", + "year": 1810 + }, + { + "income": 1260, + "lifeExpectancy": 35.9, + "population": 9960687, + "country": "Poland", + "year": 1810 + }, + { + "income": 1447, + "lifeExpectancy": 29.5734572, + "population": 31088398, + "country": "Russia", + "year": 1810 + }, + { + "income": 1223, + "lifeExpectancy": 35, + "population": 9923007, + "country": "Turkey", + "year": 1810 + }, + { + "income": 3575, + "lifeExpectancy": 38.34738144, + "population": 14106058, + "country": "United Kingdom", + "year": 1810 + }, + { + "income": 2283, + "lifeExpectancy": 39.41, + "population": 8294928, + "country": "United States", + "year": 1810 + }, + { + "income": 853, + "lifeExpectancy": 34.05, + "population": 334002, + "country": "Australia", + "year": 1820 + }, + { + "income": 1491, + "lifeExpectancy": 39.02993548, + "population": 879432, + "country": "Canada", + "year": 1820 + }, + { + "income": 985, + "lifeExpectancy": 32, + "population": 380055273, + "country": "China", + "year": 1820 + }, + { + "income": 1090, + "lifeExpectancy": 35.04, + "population": 607664, + "country": "Cuba", + "year": 1820 + }, + { + "income": 1290, + "lifeExpectancy": 37.29122269, + "population": 1190807, + "country": "Finland", + "year": 1820 + }, + { + "income": 1876, + "lifeExpectancy": 39.21, + "population": 31549988, + "country": "France", + "year": 1820 + }, + { + "income": 1887, + "lifeExpectancy": 38.37, + "population": 25507768, + "country": "Germany", + "year": 1820 + }, + { + "income": 929, + "lifeExpectancy": 36.56365268, + "population": 62498, + "country": "Iceland", + "year": 1820 + }, + { + "income": 1050, + "lifeExpectancy": 25.4424, + "population": 176225709, + "country": "India", + "year": 1820 + }, + { + "income": 1079, + "lifeExpectancy": 36.40795077, + "population": 30993147, + "country": "Japan", + "year": 1820 + }, + { + "income": 567, + "lifeExpectancy": 26, + "population": 4353556, + "country": "North Korea", + "year": 1820 + }, + { + "income": 564, + "lifeExpectancy": 25.8, + "population": 9408016, + "country": "South Korea", + "year": 1820 + }, + { + "income": 660, + "lifeExpectancy": 34.05, + "population": 100000, + "country": "New Zealand", + "year": 1820 + }, + { + "income": 1320, + "lifeExpectancy": 46.96239815, + "population": 995904, + "country": "Norway", + "year": 1820 + }, + { + "income": 1309, + "lifeExpectancy": 35.9, + "population": 10508375, + "country": "Poland", + "year": 1820 + }, + { + "income": 1464, + "lifeExpectancy": 29.5734572, + "population": 31861526, + "country": "Russia", + "year": 1820 + }, + { + "income": 1225, + "lifeExpectancy": 35, + "population": 10118315, + "country": "Turkey", + "year": 1820 + }, + { + "income": 3403, + "lifeExpectancy": 41.31247671, + "population": 16221883, + "country": "United Kingdom", + "year": 1820 + }, + { + "income": 2242, + "lifeExpectancy": 39.41, + "population": 10361646, + "country": "United States", + "year": 1820 + }, + { + "income": 1399, + "lifeExpectancy": 34.05, + "population": 348143, + "country": "Australia", + "year": 1830 + }, + { + "income": 1651, + "lifeExpectancy": 39.04490323, + "population": 1202146, + "country": "Canada", + "year": 1830 + }, + { + "income": 986, + "lifeExpectancy": 32, + "population": 402373519, + "country": "China", + "year": 1830 + }, + { + "income": 1224, + "lifeExpectancy": 35.74, + "population": 772812, + "country": "Cuba", + "year": 1830 + }, + { + "income": 1360, + "lifeExpectancy": 36.29644969, + "population": 1327905, + "country": "Finland", + "year": 1830 + }, + { + "income": 1799, + "lifeExpectancy": 39.56, + "population": 33174810, + "country": "France", + "year": 1830 + }, + { + "income": 2024, + "lifeExpectancy": 38.37, + "population": 28016571, + "country": "Germany", + "year": 1830 + }, + { + "income": 1036, + "lifeExpectancy": 40.5022162, + "population": 65604, + "country": "Iceland", + "year": 1830 + }, + { + "income": 1052, + "lifeExpectancy": 25.4424, + "population": 182214537, + "country": "India", + "year": 1830 + }, + { + "income": 1094, + "lifeExpectancy": 36.41192615, + "population": 31330455, + "country": "Japan", + "year": 1830 + }, + { + "income": 561, + "lifeExpectancy": 26, + "population": 4377749, + "country": "North Korea", + "year": 1830 + }, + { + "income": 559, + "lifeExpectancy": 25.8, + "population": 9444785, + "country": "South Korea", + "year": 1830 + }, + { + "income": 661, + "lifeExpectancy": 34.05, + "population": 91723, + "country": "New Zealand", + "year": 1830 + }, + { + "income": 1403, + "lifeExpectancy": 45.75400094, + "population": 1115667, + "country": "Norway", + "year": 1830 + }, + { + "income": 1360, + "lifeExpectancy": 35.9, + "population": 11232857, + "country": "Poland", + "year": 1830 + }, + { + "income": 1562, + "lifeExpectancy": 29.5734572, + "population": 34134430, + "country": "Russia", + "year": 1830 + }, + { + "income": 1292, + "lifeExpectancy": 35, + "population": 10398375, + "country": "Turkey", + "year": 1830 + }, + { + "income": 3661, + "lifeExpectancy": 43.01830917, + "population": 18533999, + "country": "United Kingdom", + "year": 1830 + }, + { + "income": 2552, + "lifeExpectancy": 39.41, + "population": 13480460, + "country": "United States", + "year": 1830 + }, + { + "income": 2269, + "lifeExpectancy": 34.05, + "population": 434095, + "country": "Australia", + "year": 1840 + }, + { + "income": 1922, + "lifeExpectancy": 40.19012, + "population": 1745604, + "country": "Canada", + "year": 1840 + }, + { + "income": 986, + "lifeExpectancy": 32, + "population": 411213424, + "country": "China", + "year": 1840 + }, + { + "income": 1374, + "lifeExpectancy": 36.48, + "population": 975565, + "country": "Cuba", + "year": 1840 + }, + { + "income": 1434, + "lifeExpectancy": 41.46900965, + "population": 1467238, + "country": "Finland", + "year": 1840 + }, + { + "income": 2184, + "lifeExpectancy": 40.37, + "population": 34854476, + "country": "France", + "year": 1840 + }, + { + "income": 2102, + "lifeExpectancy": 38.37, + "population": 31016143, + "country": "Germany", + "year": 1840 + }, + { + "income": 1155, + "lifeExpectancy": 31.97, + "population": 70010, + "country": "Iceland", + "year": 1840 + }, + { + "income": 1053, + "lifeExpectancy": 25.4424, + "population": 189298397, + "country": "India", + "year": 1840 + }, + { + "income": 1110, + "lifeExpectancy": 36.41590154, + "population": 31663783, + "country": "Japan", + "year": 1840 + }, + { + "income": 556, + "lifeExpectancy": 26, + "population": 4410700, + "country": "North Korea", + "year": 1840 + }, + { + "income": 553, + "lifeExpectancy": 25.8, + "population": 9494784, + "country": "South Korea", + "year": 1840 + }, + { + "income": 662, + "lifeExpectancy": 34.05, + "population": 82479, + "country": "New Zealand", + "year": 1840 + }, + { + "income": 1604, + "lifeExpectancy": 45.61661054, + "population": 1252476, + "country": "Norway", + "year": 1840 + }, + { + "income": 1413, + "lifeExpectancy": 35.9, + "population": 12090161, + "country": "Poland", + "year": 1840 + }, + { + "income": 1666, + "lifeExpectancy": 29.5734572, + "population": 37420913, + "country": "Russia", + "year": 1840 + }, + { + "income": 1362, + "lifeExpectancy": 35, + "population": 10731241, + "country": "Turkey", + "year": 1840 + }, + { + "income": 4149, + "lifeExpectancy": 39.92715263, + "population": 20737251, + "country": "United Kingdom", + "year": 1840 + }, + { + "income": 2792, + "lifeExpectancy": 39.41, + "population": 17942443, + "country": "United States", + "year": 1840 + }, + { + "income": 3267, + "lifeExpectancy": 34.05, + "population": 742619, + "country": "Australia", + "year": 1850 + }, + { + "income": 2202, + "lifeExpectancy": 40.985432, + "population": 2487811, + "country": "Canada", + "year": 1850 + }, + { + "income": 985, + "lifeExpectancy": 32, + "population": 402711280, + "country": "China", + "year": 1850 + }, + { + "income": 1543, + "lifeExpectancy": 36.26, + "population": 1181650, + "country": "Cuba", + "year": 1850 + }, + { + "income": 1512, + "lifeExpectancy": 37.35415172, + "population": 1607810, + "country": "Finland", + "year": 1850 + }, + { + "income": 2146, + "lifeExpectancy": 43.28, + "population": 36277905, + "country": "France", + "year": 1850 + }, + { + "income": 2182, + "lifeExpectancy": 38.37, + "population": 33663143, + "country": "Germany", + "year": 1850 + }, + { + "income": 1287, + "lifeExpectancy": 36.61, + "population": 74711, + "country": "Iceland", + "year": 1850 + }, + { + "income": 1055, + "lifeExpectancy": 25.4424, + "population": 196657653, + "country": "India", + "year": 1850 + }, + { + "income": 1125, + "lifeExpectancy": 36.41987692, + "population": 32223184, + "country": "Japan", + "year": 1850 + }, + { + "income": 550, + "lifeExpectancy": 26, + "population": 4443898, + "country": "North Korea", + "year": 1850 + }, + { + "income": 547, + "lifeExpectancy": 25.8, + "population": 9558873, + "country": "South Korea", + "year": 1850 + }, + { + "income": 1898, + "lifeExpectancy": 34.05, + "population": 94934, + "country": "New Zealand", + "year": 1850 + }, + { + "income": 1675, + "lifeExpectancy": 49.53, + "population": 1401619, + "country": "Norway", + "year": 1850 + }, + { + "income": 1468, + "lifeExpectancy": 35.9, + "population": 13219914, + "country": "Poland", + "year": 1850 + }, + { + "income": 1778, + "lifeExpectancy": 29.5734572, + "population": 41023821, + "country": "Russia", + "year": 1850 + }, + { + "income": 1436, + "lifeExpectancy": 35, + "population": 11074762, + "country": "Turkey", + "year": 1850 + }, + { + "income": 4480, + "lifeExpectancy": 42.8, + "population": 22623571, + "country": "United Kingdom", + "year": 1850 + }, + { + "income": 3059, + "lifeExpectancy": 39.41, + "population": 24136293, + "country": "United States", + "year": 1850 + }, + { + "income": 4795, + "lifeExpectancy": 34.05, + "population": 1256048, + "country": "Australia", + "year": 1860 + }, + { + "income": 2406, + "lifeExpectancy": 41.541504, + "population": 3231465, + "country": "Canada", + "year": 1860 + }, + { + "income": 1023, + "lifeExpectancy": 28.85, + "population": 380047548, + "country": "China", + "year": 1860 + }, + { + "income": 1733, + "lifeExpectancy": 36.24, + "population": 1324000, + "country": "Cuba", + "year": 1860 + }, + { + "income": 1594, + "lifeExpectancy": 38.15099864, + "population": 1734254, + "country": "Finland", + "year": 1860 + }, + { + "income": 3086, + "lifeExpectancy": 43.33, + "population": 37461341, + "country": "France", + "year": 1860 + }, + { + "income": 2509, + "lifeExpectancy": 38.37, + "population": 36383150, + "country": "Germany", + "year": 1860 + }, + { + "income": 1435, + "lifeExpectancy": 19.76, + "population": 79662, + "country": "Iceland", + "year": 1860 + }, + { + "income": 1056, + "lifeExpectancy": 23, + "population": 204966302, + "country": "India", + "year": 1860 + }, + { + "income": 1168, + "lifeExpectancy": 36.42385231, + "population": 33176900, + "country": "Japan", + "year": 1860 + }, + { + "income": 545, + "lifeExpectancy": 26, + "population": 4542395, + "country": "North Korea", + "year": 1860 + }, + { + "income": 542, + "lifeExpectancy": 25.8, + "population": 9650608, + "country": "South Korea", + "year": 1860 + }, + { + "income": 3674, + "lifeExpectancy": 34.05, + "population": 157114, + "country": "New Zealand", + "year": 1860 + }, + { + "income": 2033, + "lifeExpectancy": 50, + "population": 1580366, + "country": "Norway", + "year": 1860 + }, + { + "income": 1525, + "lifeExpectancy": 35.9, + "population": 14848599, + "country": "Poland", + "year": 1860 + }, + { + "income": 1896, + "lifeExpectancy": 29.5734572, + "population": 44966686, + "country": "Russia", + "year": 1860 + }, + { + "income": 1514, + "lifeExpectancy": 35, + "population": 11428718, + "country": "Turkey", + "year": 1860 + }, + { + "income": 5268, + "lifeExpectancy": 43.01, + "population": 24783522, + "country": "United Kingdom", + "year": 1860 + }, + { + "income": 3714, + "lifeExpectancy": 39.41, + "population": 31936643, + "country": "United States", + "year": 1860 + }, + { + "income": 5431, + "lifeExpectancy": 34.05, + "population": 1724213, + "country": "Australia", + "year": 1870 + }, + { + "income": 2815, + "lifeExpectancy": 42.460624, + "population": 3817167, + "country": "Canada", + "year": 1870 + }, + { + "income": 1099, + "lifeExpectancy": 31.95714286, + "population": 363661158, + "country": "China", + "year": 1870 + }, + { + "income": 1946, + "lifeExpectancy": 29.66, + "population": 1424672, + "country": "Cuba", + "year": 1870 + }, + { + "income": 1897, + "lifeExpectancy": 45.66140699, + "population": 1847468, + "country": "Finland", + "year": 1870 + }, + { + "income": 3297, + "lifeExpectancy": 36.41, + "population": 38170355, + "country": "France", + "year": 1870 + }, + { + "income": 2819, + "lifeExpectancy": 38.37, + "population": 39702235, + "country": "Germany", + "year": 1870 + }, + { + "income": 1599, + "lifeExpectancy": 38.37, + "population": 84941, + "country": "Iceland", + "year": 1870 + }, + { + "income": 1058, + "lifeExpectancy": 25.4424, + "population": 213725049, + "country": "India", + "year": 1870 + }, + { + "income": 1213, + "lifeExpectancy": 36.59264, + "population": 34638021, + "country": "Japan", + "year": 1870 + }, + { + "income": 539, + "lifeExpectancy": 26, + "population": 4656353, + "country": "North Korea", + "year": 1870 + }, + { + "income": 536, + "lifeExpectancy": 25.8, + "population": 9741935, + "country": "South Korea", + "year": 1870 + }, + { + "income": 5156, + "lifeExpectancy": 34.05, + "population": 301045, + "country": "New Zealand", + "year": 1870 + }, + { + "income": 2483, + "lifeExpectancy": 50.86, + "population": 1746718, + "country": "Norway", + "year": 1870 + }, + { + "income": 1584, + "lifeExpectancy": 35.9, + "population": 17013787, + "country": "Poland", + "year": 1870 + }, + { + "income": 2023, + "lifeExpectancy": 31.12082604, + "population": 49288504, + "country": "Russia", + "year": 1870 + }, + { + "income": 1597, + "lifeExpectancy": 35, + "population": 11871788, + "country": "Turkey", + "year": 1870 + }, + { + "income": 6046, + "lifeExpectancy": 40.95, + "population": 27651628, + "country": "United Kingdom", + "year": 1870 + }, + { + "income": 4058, + "lifeExpectancy": 39.41, + "population": 40821569, + "country": "United States", + "year": 1870 + }, + { + "income": 7120, + "lifeExpectancy": 39.34215686, + "population": 2253007, + "country": "Australia", + "year": 1880 + }, + { + "income": 3021, + "lifeExpectancy": 44.512464, + "population": 4360348, + "country": "Canada", + "year": 1880 + }, + { + "income": 1015, + "lifeExpectancy": 32, + "population": 365544192, + "country": "China", + "year": 1880 + }, + { + "income": 2185, + "lifeExpectancy": 36.84, + "population": 1555081, + "country": "Cuba", + "year": 1880 + }, + { + "income": 1925, + "lifeExpectancy": 39.67, + "population": 2047577, + "country": "Finland", + "year": 1880 + }, + { + "income": 3555, + "lifeExpectancy": 42.73, + "population": 39014053, + "country": "France", + "year": 1880 + }, + { + "income": 3057, + "lifeExpectancy": 38.905, + "population": 43577358, + "country": "Germany", + "year": 1880 + }, + { + "income": 2035, + "lifeExpectancy": 42.32, + "population": 90546, + "country": "Iceland", + "year": 1880 + }, + { + "income": 1084, + "lifeExpectancy": 25.4424, + "population": 223020377, + "country": "India", + "year": 1880 + }, + { + "income": 1395, + "lifeExpectancy": 37.03648, + "population": 36826469, + "country": "Japan", + "year": 1880 + }, + { + "income": 534, + "lifeExpectancy": 26, + "population": 4798574, + "country": "North Korea", + "year": 1880 + }, + { + "income": 531, + "lifeExpectancy": 25.8, + "population": 9806394, + "country": "South Korea", + "year": 1880 + }, + { + "income": 6241, + "lifeExpectancy": 38.51282051, + "population": 505065, + "country": "New Zealand", + "year": 1880 + }, + { + "income": 2827, + "lifeExpectancy": 51.91, + "population": 1883716, + "country": "Norway", + "year": 1880 + }, + { + "income": 1848, + "lifeExpectancy": 35.9, + "population": 19669587, + "country": "Poland", + "year": 1880 + }, + { + "income": 2158, + "lifeExpectancy": 30.20106663, + "population": 53996807, + "country": "Russia", + "year": 1880 + }, + { + "income": 1535, + "lifeExpectancy": 35, + "population": 12474351, + "country": "Turkey", + "year": 1880 + }, + { + "income": 6553, + "lifeExpectancy": 43.78, + "population": 30849957, + "country": "United Kingdom", + "year": 1880 + }, + { + "income": 5292, + "lifeExpectancy": 39.41, + "population": 51256498, + "country": "United States", + "year": 1880 + }, + { + "income": 7418, + "lifeExpectancy": 44.63431373, + "population": 3088808, + "country": "Australia", + "year": 1890 + }, + { + "income": 3963, + "lifeExpectancy": 45.12972, + "population": 4908078, + "country": "Canada", + "year": 1890 + }, + { + "income": 918, + "lifeExpectancy": 32, + "population": 377135349, + "country": "China", + "year": 1890 + }, + { + "income": 2454, + "lifeExpectancy": 39.54, + "population": 1658274, + "country": "Cuba", + "year": 1890 + }, + { + "income": 2305, + "lifeExpectancy": 44.61, + "population": 2358344, + "country": "Finland", + "year": 1890 + }, + { + "income": 3639, + "lifeExpectancy": 43.36, + "population": 40015501, + "country": "France", + "year": 1890 + }, + { + "income": 3733, + "lifeExpectancy": 40.91, + "population": 48211294, + "country": "Germany", + "year": 1890 + }, + { + "income": 2009, + "lifeExpectancy": 36.58, + "population": 96517, + "country": "Iceland", + "year": 1890 + }, + { + "income": 1163, + "lifeExpectancy": 24.384, + "population": 232819584, + "country": "India", + "year": 1890 + }, + { + "income": 1606, + "lifeExpectancy": 37.67568, + "population": 39878734, + "country": "Japan", + "year": 1890 + }, + { + "income": 528, + "lifeExpectancy": 26, + "population": 4959044, + "country": "North Korea", + "year": 1890 + }, + { + "income": 526, + "lifeExpectancy": 25.8, + "population": 9856047, + "country": "South Korea", + "year": 1890 + }, + { + "income": 6265, + "lifeExpectancy": 42.97564103, + "population": 669985, + "country": "New Zealand", + "year": 1890 + }, + { + "income": 3251, + "lifeExpectancy": 48.6, + "population": 2003954, + "country": "Norway", + "year": 1890 + }, + { + "income": 2156, + "lifeExpectancy": 37.41086957, + "population": 22618933, + "country": "Poland", + "year": 1890 + }, + { + "income": 2233, + "lifeExpectancy": 29.93047652, + "population": 59151534, + "country": "Russia", + "year": 1890 + }, + { + "income": 1838, + "lifeExpectancy": 35, + "population": 13188522, + "country": "Turkey", + "year": 1890 + }, + { + "income": 7169, + "lifeExpectancy": 44.75, + "population": 34215580, + "country": "United Kingdom", + "year": 1890 + }, + { + "income": 5646, + "lifeExpectancy": 45.21, + "population": 63810074, + "country": "United States", + "year": 1890 + }, + { + "income": 6688, + "lifeExpectancy": 49.92647059, + "population": 3743708, + "country": "Australia", + "year": 1900 + }, + { + "income": 4858, + "lifeExpectancy": 48.288448, + "population": 5530806, + "country": "Canada", + "year": 1900 + }, + { + "income": 894, + "lifeExpectancy": 32, + "population": 395184556, + "country": "China", + "year": 1900 + }, + { + "income": 2756, + "lifeExpectancy": 33.11248, + "population": 1762227, + "country": "Cuba", + "year": 1900 + }, + { + "income": 2789, + "lifeExpectancy": 41.8, + "population": 2633389, + "country": "Finland", + "year": 1900 + }, + { + "income": 4314, + "lifeExpectancy": 45.08, + "population": 40628638, + "country": "France", + "year": 1900 + }, + { + "income": 4596, + "lifeExpectancy": 43.915, + "population": 55293434, + "country": "Germany", + "year": 1900 + }, + { + "income": 2352, + "lifeExpectancy": 46.64, + "population": 102913, + "country": "Iceland", + "year": 1900 + }, + { + "income": 1194, + "lifeExpectancy": 18.35, + "population": 243073946, + "country": "India", + "year": 1900 + }, + { + "income": 1840, + "lifeExpectancy": 38.6, + "population": 44040263, + "country": "Japan", + "year": 1900 + }, + { + "income": 523, + "lifeExpectancy": 26, + "population": 5124044, + "country": "North Korea", + "year": 1900 + }, + { + "income": 520, + "lifeExpectancy": 25.8, + "population": 9926633, + "country": "South Korea", + "year": 1900 + }, + { + "income": 7181, + "lifeExpectancy": 47.43846154, + "population": 815519, + "country": "New Zealand", + "year": 1900 + }, + { + "income": 3643, + "lifeExpectancy": 53.47, + "population": 2214923, + "country": "Norway", + "year": 1900 + }, + { + "income": 2583, + "lifeExpectancy": 40.4326087, + "population": 24700965, + "country": "Poland", + "year": 1900 + }, + { + "income": 3087, + "lifeExpectancy": 30.74960789, + "population": 64836675, + "country": "Russia", + "year": 1900 + }, + { + "income": 1985, + "lifeExpectancy": 35, + "population": 13946634, + "country": "Turkey", + "year": 1900 + }, + { + "income": 8013, + "lifeExpectancy": 46.32, + "population": 37995759, + "country": "United Kingdom", + "year": 1900 + }, + { + "income": 6819, + "lifeExpectancy": 48.92818182, + "population": 77415610, + "country": "United States", + "year": 1900 + }, + { + "income": 8695, + "lifeExpectancy": 55.21862745, + "population": 4408209, + "country": "Australia", + "year": 1910 + }, + { + "income": 6794, + "lifeExpectancy": 52.123024, + "population": 7181200, + "country": "Canada", + "year": 1910 + }, + { + "income": 991, + "lifeExpectancy": 32, + "population": 417830774, + "country": "China", + "year": 1910 + }, + { + "income": 3095, + "lifeExpectancy": 35.21936, + "population": 2268558, + "country": "Cuba", + "year": 1910 + }, + { + "income": 3192, + "lifeExpectancy": 48.53, + "population": 2930441, + "country": "Finland", + "year": 1910 + }, + { + "income": 4542, + "lifeExpectancy": 51.37, + "population": 41294572, + "country": "France", + "year": 1910 + }, + { + "income": 5162, + "lifeExpectancy": 48.40833333, + "population": 64064129, + "country": "Germany", + "year": 1910 + }, + { + "income": 3012, + "lifeExpectancy": 52.67, + "population": 109714, + "country": "Iceland", + "year": 1910 + }, + { + "income": 1391, + "lifeExpectancy": 23.18032, + "population": 253761202, + "country": "India", + "year": 1910 + }, + { + "income": 1998, + "lifeExpectancy": 39.9736, + "population": 49314848, + "country": "Japan", + "year": 1910 + }, + { + "income": 544, + "lifeExpectancy": 24.097344, + "population": 5293486, + "country": "North Korea", + "year": 1910 + }, + { + "income": 538, + "lifeExpectancy": 24.097344, + "population": 10193929, + "country": "South Korea", + "year": 1910 + }, + { + "income": 8896, + "lifeExpectancy": 51.90128205, + "population": 1044340, + "country": "New Zealand", + "year": 1910 + }, + { + "income": 4332, + "lifeExpectancy": 57.99, + "population": 2383631, + "country": "Norway", + "year": 1910 + }, + { + "income": 2846, + "lifeExpectancy": 43.45434783, + "population": 26493422, + "country": "Poland", + "year": 1910 + }, + { + "income": 3487, + "lifeExpectancy": 31.40217766, + "population": 71044207, + "country": "Russia", + "year": 1910 + }, + { + "income": 2144, + "lifeExpectancy": 35, + "population": 14746479, + "country": "Turkey", + "year": 1910 + }, + { + "income": 8305, + "lifeExpectancy": 53.99, + "population": 41804912, + "country": "United Kingdom", + "year": 1910 + }, + { + "income": 8287, + "lifeExpectancy": 51.8, + "population": 93559186, + "country": "United States", + "year": 1910 + }, + { + "income": 7867, + "lifeExpectancy": 60.51078431, + "population": 5345428, + "country": "Australia", + "year": 1920 + }, + { + "income": 6430, + "lifeExpectancy": 56.569064, + "population": 8764205, + "country": "Canada", + "year": 1920 + }, + { + "income": 1012, + "lifeExpectancy": 32, + "population": 462750597, + "country": "China", + "year": 1920 + }, + { + "income": 4042, + "lifeExpectancy": 37.38208, + "population": 3067116, + "country": "Cuba", + "year": 1920 + }, + { + "income": 3097, + "lifeExpectancy": 47.55, + "population": 3140763, + "country": "Finland", + "year": 1920 + }, + { + "income": 4550, + "lifeExpectancy": 51.6, + "population": 39069937, + "country": "France", + "year": 1920 + }, + { + "income": 4482, + "lifeExpectancy": 53.5, + "population": 62277173, + "country": "Germany", + "year": 1920 + }, + { + "income": 2514, + "lifeExpectancy": 54.58, + "population": 117013, + "country": "Iceland", + "year": 1920 + }, + { + "income": 1197, + "lifeExpectancy": 24.71866667, + "population": 267795301, + "country": "India", + "year": 1920 + }, + { + "income": 2496, + "lifeExpectancy": 42.04432, + "population": 55545937, + "country": "Japan", + "year": 1920 + }, + { + "income": 779, + "lifeExpectancy": 27.99984, + "population": 6117873, + "country": "North Korea", + "year": 1920 + }, + { + "income": 756, + "lifeExpectancy": 27.99984, + "population": 11839704, + "country": "South Korea", + "year": 1920 + }, + { + "income": 9453, + "lifeExpectancy": 56.36410256, + "population": 1236395, + "country": "New Zealand", + "year": 1920 + }, + { + "income": 5483, + "lifeExpectancy": 58.89, + "population": 2634635, + "country": "Norway", + "year": 1920 + }, + { + "income": 3276, + "lifeExpectancy": 46.47608696, + "population": 24166006, + "country": "Poland", + "year": 1920 + }, + { + "income": 1489, + "lifeExpectancy": 20.5, + "population": 77871987, + "country": "Russia", + "year": 1920 + }, + { + "income": 1525, + "lifeExpectancy": 29, + "population": 14200404, + "country": "Turkey", + "year": 1920 + }, + { + "income": 8316, + "lifeExpectancy": 56.6, + "population": 43825720, + "country": "United Kingdom", + "year": 1920 + }, + { + "income": 9181, + "lifeExpectancy": 55.4, + "population": 108441644, + "country": "United States", + "year": 1920 + }, + { + "income": 7714, + "lifeExpectancy": 64.998, + "population": 6473803, + "country": "Australia", + "year": 1930 + }, + { + "income": 7976, + "lifeExpectancy": 58.94, + "population": 10450983, + "country": "Canada", + "year": 1930 + }, + { + "income": 1055, + "lifeExpectancy": 33.26984, + "population": 481222579, + "country": "China", + "year": 1930 + }, + { + "income": 5027, + "lifeExpectancy": 42.03308, + "population": 3918827, + "country": "Cuba", + "year": 1930 + }, + { + "income": 4489, + "lifeExpectancy": 54.438, + "population": 3450505, + "country": "Finland", + "year": 1930 + }, + { + "income": 6835, + "lifeExpectancy": 56.938, + "population": 41662571, + "country": "France", + "year": 1930 + }, + { + "income": 6791, + "lifeExpectancy": 59.4991686, + "population": 66439556, + "country": "Germany", + "year": 1930 + }, + { + "income": 4444, + "lifeExpectancy": 60.228, + "population": 124871, + "country": "Iceland", + "year": 1930 + }, + { + "income": 1244, + "lifeExpectancy": 28.8016, + "population": 285470839, + "country": "India", + "year": 1930 + }, + { + "income": 2592, + "lifeExpectancy": 46.65403, + "population": 63863524, + "country": "Japan", + "year": 1930 + }, + { + "income": 829, + "lifeExpectancy": 33.867168, + "population": 7366694, + "country": "North Korea", + "year": 1930 + }, + { + "income": 784, + "lifeExpectancy": 35.244168, + "population": 13929869, + "country": "South Korea", + "year": 1930 + }, + { + "income": 8359, + "lifeExpectancy": 60.86092308, + "population": 1491937, + "country": "New Zealand", + "year": 1930 + }, + { + "income": 7369, + "lifeExpectancy": 64.074, + "population": 2807922, + "country": "Norway", + "year": 1930 + }, + { + "income": 3591, + "lifeExpectancy": 49.52382609, + "population": 28169922, + "country": "Poland", + "year": 1930 + }, + { + "income": 3779, + "lifeExpectancy": 36.428, + "population": 85369549, + "country": "Russia", + "year": 1930 + }, + { + "income": 2323, + "lifeExpectancy": 35.7818, + "population": 14930772, + "country": "Turkey", + "year": 1930 + }, + { + "income": 8722, + "lifeExpectancy": 60.85, + "population": 45957969, + "country": "United Kingdom", + "year": 1930 + }, + { + "income": 10139, + "lifeExpectancy": 59.556, + "population": 125055606, + "country": "United States", + "year": 1930 + }, + { + "income": 10057, + "lifeExpectancy": 66.336, + "population": 7052012, + "country": "Australia", + "year": 1940 + }, + { + "income": 8871, + "lifeExpectancy": 63.99, + "population": 11655920, + "country": "Canada", + "year": 1940 + }, + { + "income": 841, + "lifeExpectancy": 33.30311174, + "population": 509858820, + "country": "China", + "year": 1940 + }, + { + "income": 4631, + "lifeExpectancy": 48.5472, + "population": 4672303, + "country": "Cuba", + "year": 1940 + }, + { + "income": 5439, + "lifeExpectancy": 46.586, + "population": 3696232, + "country": "Finland", + "year": 1940 + }, + { + "income": 4821, + "lifeExpectancy": 49.586, + "population": 40927546, + "country": "France", + "year": 1940 + }, + { + "income": 9711, + "lifeExpectancy": 60.73821096, + "population": 71244059, + "country": "Germany", + "year": 1940 + }, + { + "income": 5373, + "lifeExpectancy": 65.786, + "population": 133257, + "country": "Iceland", + "year": 1940 + }, + { + "income": 1081, + "lifeExpectancy": 32.13056, + "population": 324372335, + "country": "India", + "year": 1940 + }, + { + "income": 3888, + "lifeExpectancy": 49.052, + "population": 72709185, + "country": "Japan", + "year": 1940 + }, + { + "income": 1418, + "lifeExpectancy": 41.22756, + "population": 8870433, + "country": "North Korea", + "year": 1940 + }, + { + "income": 1322, + "lifeExpectancy": 43.98156, + "population": 15684579, + "country": "South Korea", + "year": 1940 + }, + { + "income": 10673, + "lifeExpectancy": 65.35774359, + "population": 1629869, + "country": "New Zealand", + "year": 1940 + }, + { + "income": 8349, + "lifeExpectancy": 65.818, + "population": 2971546, + "country": "Norway", + "year": 1940 + }, + { + "income": 3696, + "lifeExpectancy": 44.752, + "population": 30041062, + "country": "Poland", + "year": 1940 + }, + { + "income": 5632, + "lifeExpectancy": 41.056, + "population": 93588981, + "country": "Russia", + "year": 1940 + }, + { + "income": 3163, + "lifeExpectancy": 34.5396, + "population": 17777172, + "country": "Turkey", + "year": 1940 + }, + { + "income": 10935, + "lifeExpectancy": 60.89, + "population": 48235963, + "country": "United Kingdom", + "year": 1940 + }, + { + "income": 11320, + "lifeExpectancy": 63.192, + "population": 134354133, + "country": "United States", + "year": 1940 + }, + { + "income": 12073, + "lifeExpectancy": 69.134, + "population": 8177344, + "country": "Australia", + "year": 1950 + }, + { + "income": 12022, + "lifeExpectancy": 68.25, + "population": 13736997, + "country": "Canada", + "year": 1950 + }, + { + "income": 535, + "lifeExpectancy": 39.9994, + "population": 544112923, + "country": "China", + "year": 1950 + }, + { + "income": 8630, + "lifeExpectancy": 59.8384, + "population": 5919997, + "country": "Cuba", + "year": 1950 + }, + { + "income": 7198, + "lifeExpectancy": 64.144, + "population": 4008299, + "country": "Finland", + "year": 1950 + }, + { + "income": 7914, + "lifeExpectancy": 66.594, + "population": 41879607, + "country": "France", + "year": 1950 + }, + { + "income": 7251, + "lifeExpectancy": 67.0215058, + "population": 69786246, + "country": "Germany", + "year": 1950 + }, + { + "income": 8670, + "lifeExpectancy": 71.004, + "population": 142656, + "country": "Iceland", + "year": 1950 + }, + { + "income": 908, + "lifeExpectancy": 34.6284, + "population": 376325205, + "country": "India", + "year": 1950 + }, + { + "income": 2549, + "lifeExpectancy": 59.378, + "population": 82199470, + "country": "Japan", + "year": 1950 + }, + { + "income": 868, + "lifeExpectancy": 32.2464, + "population": 10549469, + "country": "North Korea", + "year": 1950 + }, + { + "income": 807, + "lifeExpectancy": 43.3774, + "population": 19211386, + "country": "South Korea", + "year": 1950 + }, + { + "income": 14391, + "lifeExpectancy": 69.392, + "population": 1908001, + "country": "New Zealand", + "year": 1950 + }, + { + "income": 11452, + "lifeExpectancy": 71.492, + "population": 3265278, + "country": "Norway", + "year": 1950 + }, + { + "income": 4670, + "lifeExpectancy": 59.123, + "population": 24824013, + "country": "Poland", + "year": 1950 + }, + { + "income": 7514, + "lifeExpectancy": 57.084, + "population": 102798657, + "country": "Russia", + "year": 1950 + }, + { + "income": 3103, + "lifeExpectancy": 42.5164, + "population": 21238496, + "country": "Turkey", + "year": 1950 + }, + { + "income": 11135, + "lifeExpectancy": 68.58, + "population": 50616012, + "country": "United Kingdom", + "year": 1950 + }, + { + "income": 15319, + "lifeExpectancy": 67.988, + "population": 157813040, + "country": "United States", + "year": 1950 + }, + { + "income": 12229, + "lifeExpectancy": 68.8378, + "population": 8417640, + "country": "Australia", + "year": 1951 + }, + { + "income": 12419, + "lifeExpectancy": 68.519, + "population": 14099994, + "country": "Canada", + "year": 1951 + }, + { + "income": 582, + "lifeExpectancy": 40.936264, + "population": 558820362, + "country": "China", + "year": 1951 + }, + { + "income": 9245, + "lifeExpectancy": 60.18618, + "population": 6051290, + "country": "Cuba", + "year": 1951 + }, + { + "income": 7738, + "lifeExpectancy": 65.5708, + "population": 4049689, + "country": "Finland", + "year": 1951 + }, + { + "income": 8301, + "lifeExpectancy": 66.3308, + "population": 42071027, + "country": "France", + "year": 1951 + }, + { + "income": 7884, + "lifeExpectancy": 67.18742266, + "population": 70111671, + "country": "Germany", + "year": 1951 + }, + { + "income": 8350, + "lifeExpectancy": 71.0438, + "population": 144928, + "country": "Iceland", + "year": 1951 + }, + { + "income": 908, + "lifeExpectancy": 34.95868, + "population": 382231042, + "country": "India", + "year": 1951 + }, + { + "income": 2728, + "lifeExpectancy": 61.0706, + "population": 83794452, + "country": "Japan", + "year": 1951 + }, + { + "income": 729, + "lifeExpectancy": 23.12128, + "population": 10248496, + "country": "North Korea", + "year": 1951 + }, + { + "income": 753, + "lifeExpectancy": 40.88998, + "population": 19304737, + "country": "South Korea", + "year": 1951 + }, + { + "income": 13032, + "lifeExpectancy": 69.2654, + "population": 1947802, + "country": "New Zealand", + "year": 1951 + }, + { + "income": 11986, + "lifeExpectancy": 72.4284, + "population": 3300422, + "country": "Norway", + "year": 1951 + }, + { + "income": 4801, + "lifeExpectancy": 59.7336, + "population": 25264029, + "country": "Poland", + "year": 1951 + }, + { + "income": 7424, + "lifeExpectancy": 57.5768, + "population": 104306354, + "country": "Russia", + "year": 1951 + }, + { + "income": 3701, + "lifeExpectancy": 42.78358, + "population": 21806355, + "country": "Turkey", + "year": 1951 + }, + { + "income": 11416, + "lifeExpectancy": 68.176, + "population": 50620538, + "country": "United Kingdom", + "year": 1951 + }, + { + "income": 16198, + "lifeExpectancy": 68.0836, + "population": 159880756, + "country": "United States", + "year": 1951 + }, + { + "income": 12084, + "lifeExpectancy": 69.2416, + "population": 8627052, + "country": "Australia", + "year": 1952 + }, + { + "income": 12911, + "lifeExpectancy": 68.718, + "population": 14481497, + "country": "Canada", + "year": 1952 + }, + { + "income": 631, + "lifeExpectancy": 41.873128, + "population": 570764965, + "country": "China", + "year": 1952 + }, + { + "income": 9446, + "lifeExpectancy": 60.82796, + "population": 6180031, + "country": "Cuba", + "year": 1952 + }, + { + "income": 7914, + "lifeExpectancy": 66.4476, + "population": 4095130, + "country": "Finland", + "year": 1952 + }, + { + "income": 8446, + "lifeExpectancy": 67.6276, + "population": 42365756, + "country": "France", + "year": 1952 + }, + { + "income": 8561, + "lifeExpectancy": 67.51033952, + "population": 70421462, + "country": "Germany", + "year": 1952 + }, + { + "income": 8120, + "lifeExpectancy": 72.4836, + "population": 147681, + "country": "Iceland", + "year": 1952 + }, + { + "income": 912, + "lifeExpectancy": 35.62796, + "population": 388515758, + "country": "India", + "year": 1952 + }, + { + "income": 3015, + "lifeExpectancy": 63.1132, + "population": 85174909, + "country": "Japan", + "year": 1952 + }, + { + "income": 784, + "lifeExpectancy": 20.99616, + "population": 10049026, + "country": "North Korea", + "year": 1952 + }, + { + "income": 809, + "lifeExpectancy": 40.40256, + "population": 19566860, + "country": "South Korea", + "year": 1952 + }, + { + "income": 13281, + "lifeExpectancy": 69.4988, + "population": 1992619, + "country": "New Zealand", + "year": 1952 + }, + { + "income": 12316, + "lifeExpectancy": 72.5548, + "population": 3333895, + "country": "Norway", + "year": 1952 + }, + { + "income": 4832, + "lifeExpectancy": 60.9112, + "population": 25738253, + "country": "Poland", + "year": 1952 + }, + { + "income": 7775, + "lifeExpectancy": 57.9696, + "population": 105969442, + "country": "Russia", + "year": 1952 + }, + { + "income": 3963, + "lifeExpectancy": 43.25976, + "population": 22393931, + "country": "Turkey", + "year": 1952 + }, + { + "income": 11367, + "lifeExpectancy": 69.472, + "population": 50683596, + "country": "United Kingdom", + "year": 1952 + }, + { + "income": 16508, + "lifeExpectancy": 68.2992, + "population": 162280405, + "country": "United States", + "year": 1952 + }, + { + "income": 12228, + "lifeExpectancy": 69.8254, + "population": 8821938, + "country": "Australia", + "year": 1953 + }, + { + "income": 13158, + "lifeExpectancy": 69.097, + "population": 14882050, + "country": "Canada", + "year": 1953 + }, + { + "income": 692, + "lifeExpectancy": 42.809992, + "population": 580886559, + "country": "China", + "year": 1953 + }, + { + "income": 8192, + "lifeExpectancy": 61.46974, + "population": 6304524, + "country": "Cuba", + "year": 1953 + }, + { + "income": 7877, + "lifeExpectancy": 66.5044, + "population": 4142353, + "country": "Finland", + "year": 1953 + }, + { + "income": 8622, + "lifeExpectancy": 67.5644, + "population": 42724452, + "country": "France", + "year": 1953 + }, + { + "income": 9252, + "lifeExpectancy": 67.82125638, + "population": 70720721, + "country": "Germany", + "year": 1953 + }, + { + "income": 9169, + "lifeExpectancy": 72.3034, + "population": 150779, + "country": "Iceland", + "year": 1953 + }, + { + "income": 947, + "lifeExpectancy": 36.30024, + "population": 395137696, + "country": "India", + "year": 1953 + }, + { + "income": 3168, + "lifeExpectancy": 63.4558, + "population": 86378004, + "country": "Japan", + "year": 1953 + }, + { + "income": 1018, + "lifeExpectancy": 27.87104, + "population": 9957244, + "country": "North Korea", + "year": 1953 + }, + { + "income": 1051, + "lifeExpectancy": 45.41514, + "population": 19979069, + "country": "South Korea", + "year": 1953 + }, + { + "income": 13388, + "lifeExpectancy": 70.3522, + "population": 2040015, + "country": "New Zealand", + "year": 1953 + }, + { + "income": 12707, + "lifeExpectancy": 73.0312, + "population": 3366281, + "country": "Norway", + "year": 1953 + }, + { + "income": 5027, + "lifeExpectancy": 62.0038, + "population": 26236679, + "country": "Poland", + "year": 1953 + }, + { + "income": 7981, + "lifeExpectancy": 58.7624, + "population": 107729541, + "country": "Russia", + "year": 1953 + }, + { + "income": 4361, + "lifeExpectancy": 43.77694, + "population": 22999018, + "country": "Turkey", + "year": 1953 + }, + { + "income": 11751, + "lifeExpectancy": 69.738, + "population": 50792671, + "country": "United Kingdom", + "year": 1953 + }, + { + "income": 16974, + "lifeExpectancy": 68.6448, + "population": 164941716, + "country": "United States", + "year": 1953 + }, + { + "income": 12694, + "lifeExpectancy": 69.9792, + "population": 9014508, + "country": "Australia", + "year": 1954 + }, + { + "income": 12687, + "lifeExpectancy": 69.956, + "population": 15300472, + "country": "Canada", + "year": 1954 + }, + { + "income": 694, + "lifeExpectancy": 44.663056, + "population": 589955812, + "country": "China", + "year": 1954 + }, + { + "income": 8492, + "lifeExpectancy": 62.11152, + "population": 6424173, + "country": "Cuba", + "year": 1954 + }, + { + "income": 8470, + "lifeExpectancy": 67.4612, + "population": 4189559, + "country": "Finland", + "year": 1954 + }, + { + "income": 9006, + "lifeExpectancy": 68.4412, + "population": 43118110, + "country": "France", + "year": 1954 + }, + { + "income": 9926, + "lifeExpectancy": 68.12117324, + "population": 71015688, + "country": "Germany", + "year": 1954 + }, + { + "income": 9821, + "lifeExpectancy": 73.3532, + "population": 154110, + "country": "Iceland", + "year": 1954 + }, + { + "income": 962, + "lifeExpectancy": 36.97552, + "population": 402065915, + "country": "India", + "year": 1954 + }, + { + "income": 3280, + "lifeExpectancy": 64.6984, + "population": 87438747, + "country": "Japan", + "year": 1954 + }, + { + "income": 1080, + "lifeExpectancy": 38.68292, + "population": 9972437, + "country": "North Korea", + "year": 1954 + }, + { + "income": 1070, + "lifeExpectancy": 48.42772, + "population": 20520601, + "country": "South Korea", + "year": 1954 + }, + { + "income": 14907, + "lifeExpectancy": 70.4656, + "population": 2088194, + "country": "New Zealand", + "year": 1954 + }, + { + "income": 13247, + "lifeExpectancy": 73.1076, + "population": 3398028, + "country": "Norway", + "year": 1954 + }, + { + "income": 5224, + "lifeExpectancy": 63.0134, + "population": 26750026, + "country": "Poland", + "year": 1954 + }, + { + "income": 8234, + "lifeExpectancy": 60.7552, + "population": 109537868, + "country": "Russia", + "year": 1954 + }, + { + "income": 3892, + "lifeExpectancy": 44.33512, + "population": 23619469, + "country": "Turkey", + "year": 1954 + }, + { + "income": 12173, + "lifeExpectancy": 70.104, + "population": 50938227, + "country": "United Kingdom", + "year": 1954 + }, + { + "income": 16558, + "lifeExpectancy": 69.4304, + "population": 167800046, + "country": "United States", + "year": 1954 + }, + { + "income": 13082, + "lifeExpectancy": 70.303, + "population": 9212824, + "country": "Australia", + "year": 1955 + }, + { + "income": 13513, + "lifeExpectancy": 70.015, + "population": 15733858, + "country": "Canada", + "year": 1955 + }, + { + "income": 706, + "lifeExpectancy": 46.1666, + "population": 598574241, + "country": "China", + "year": 1955 + }, + { + "income": 8757, + "lifeExpectancy": 62.7523, + "population": 6539470, + "country": "Cuba", + "year": 1955 + }, + { + "income": 8802, + "lifeExpectancy": 67.258, + "population": 4235423, + "country": "Finland", + "year": 1955 + }, + { + "income": 9453, + "lifeExpectancy": 68.708, + "population": 43528065, + "country": "France", + "year": 1955 + }, + { + "income": 10998, + "lifeExpectancy": 68.4080901, + "population": 71313740, + "country": "Germany", + "year": 1955 + }, + { + "income": 10548, + "lifeExpectancy": 73.293, + "population": 157584, + "country": "Iceland", + "year": 1955 + }, + { + "income": 963, + "lifeExpectancy": 37.6538, + "population": 409280196, + "country": "India", + "year": 1955 + }, + { + "income": 3464, + "lifeExpectancy": 65.861, + "population": 88389994, + "country": "Japan", + "year": 1955 + }, + { + "income": 1146, + "lifeExpectancy": 42.6208, + "population": 10086993, + "country": "North Korea", + "year": 1955 + }, + { + "income": 1139, + "lifeExpectancy": 49.9673, + "population": 21168611, + "country": "South Korea", + "year": 1955 + }, + { + "income": 14883, + "lifeExpectancy": 70.599, + "population": 2136000, + "country": "New Zealand", + "year": 1955 + }, + { + "income": 13438, + "lifeExpectancy": 73.314, + "population": 3429431, + "country": "Norway", + "year": 1955 + }, + { + "income": 5386, + "lifeExpectancy": 63.939, + "population": 27269745, + "country": "Poland", + "year": 1955 + }, + { + "income": 8787, + "lifeExpectancy": 63.148, + "population": 111355224, + "country": "Russia", + "year": 1955 + }, + { + "income": 4156, + "lifeExpectancy": 44.9343, + "population": 24253200, + "country": "Turkey", + "year": 1955 + }, + { + "income": 12531, + "lifeExpectancy": 70.07, + "population": 51113711, + "country": "United Kingdom", + "year": 1955 + }, + { + "income": 17409, + "lifeExpectancy": 69.476, + "population": 170796378, + "country": "United States", + "year": 1955 + }, + { + "income": 13217, + "lifeExpectancy": 70.1868, + "population": 9420602, + "country": "Australia", + "year": 1956 + }, + { + "income": 14253, + "lifeExpectancy": 70.004, + "population": 16177451, + "country": "Canada", + "year": 1956 + }, + { + "income": 736, + "lifeExpectancy": 48.536704, + "population": 607167524, + "country": "China", + "year": 1956 + }, + { + "income": 9424, + "lifeExpectancy": 63.39308, + "population": 6652086, + "country": "Cuba", + "year": 1956 + }, + { + "income": 8971, + "lifeExpectancy": 67.8748, + "population": 4279108, + "country": "Finland", + "year": 1956 + }, + { + "income": 9907, + "lifeExpectancy": 68.7448, + "population": 43946534, + "country": "France", + "year": 1956 + }, + { + "income": 11751, + "lifeExpectancy": 68.70345102, + "population": 71623569, + "country": "Germany", + "year": 1956 + }, + { + "income": 10575, + "lifeExpectancy": 72.9728, + "population": 161136, + "country": "Iceland", + "year": 1956 + }, + { + "income": 993, + "lifeExpectancy": 38.33608, + "population": 416771502, + "country": "India", + "year": 1956 + }, + { + "income": 3646, + "lifeExpectancy": 65.7236, + "population": 89262489, + "country": "Japan", + "year": 1956 + }, + { + "income": 1208, + "lifeExpectancy": 43.99568, + "population": 10285936, + "country": "North Korea", + "year": 1956 + }, + { + "income": 1130, + "lifeExpectancy": 50.64688, + "population": 21897911, + "country": "South Korea", + "year": 1956 + }, + { + "income": 15358, + "lifeExpectancy": 70.8624, + "population": 2182943, + "country": "New Zealand", + "year": 1956 + }, + { + "income": 14054, + "lifeExpectancy": 73.3604, + "population": 3460640, + "country": "Norway", + "year": 1956 + }, + { + "income": 5530, + "lifeExpectancy": 64.7816, + "population": 27787997, + "country": "Poland", + "year": 1956 + }, + { + "income": 9465, + "lifeExpectancy": 64.6408, + "population": 113152347, + "country": "Russia", + "year": 1956 + }, + { + "income": 4122, + "lifeExpectancy": 45.57448, + "population": 24898170, + "country": "Turkey", + "year": 1956 + }, + { + "income": 12572, + "lifeExpectancy": 70.336, + "population": 51315724, + "country": "United Kingdom", + "year": 1956 + }, + { + "income": 17428, + "lifeExpectancy": 69.5516, + "population": 173877321, + "country": "United States", + "year": 1956 + }, + { + "income": 13191, + "lifeExpectancy": 70.4706, + "population": 9637408, + "country": "Australia", + "year": 1957 + }, + { + "income": 14177, + "lifeExpectancy": 69.923, + "population": 16624767, + "country": "Canada", + "year": 1957 + }, + { + "income": 780, + "lifeExpectancy": 48.587368, + "population": 615992182, + "country": "China", + "year": 1957 + }, + { + "income": 10636, + "lifeExpectancy": 64.03586, + "population": 6764787, + "country": "Cuba", + "year": 1957 + }, + { + "income": 9302, + "lifeExpectancy": 67.3716, + "population": 4320250, + "country": "Finland", + "year": 1957 + }, + { + "income": 10442, + "lifeExpectancy": 69.1816, + "population": 44376073, + "country": "France", + "year": 1957 + }, + { + "income": 12385, + "lifeExpectancy": 68.62532856, + "population": 71955005, + "country": "Germany", + "year": 1957 + }, + { + "income": 10295, + "lifeExpectancy": 73.4626, + "population": 164721, + "country": "Iceland", + "year": 1957 + }, + { + "income": 959, + "lifeExpectancy": 39.02236, + "population": 424541513, + "country": "India", + "year": 1957 + }, + { + "income": 3843, + "lifeExpectancy": 65.5962, + "population": 90084818, + "country": "Japan", + "year": 1957 + }, + { + "income": 1322, + "lifeExpectancy": 44.87056, + "population": 10547389, + "country": "North Korea", + "year": 1957 + }, + { + "income": 1226, + "lifeExpectancy": 51.33946, + "population": 22681233, + "country": "South Korea", + "year": 1957 + }, + { + "income": 15441, + "lifeExpectancy": 70.3858, + "population": 2229176, + "country": "New Zealand", + "year": 1957 + }, + { + "income": 14379, + "lifeExpectancy": 73.3068, + "population": 3491657, + "country": "Norway", + "year": 1957 + }, + { + "income": 5730, + "lifeExpectancy": 65.5442, + "population": 28297669, + "country": "Poland", + "year": 1957 + }, + { + "income": 9496, + "lifeExpectancy": 63.7336, + "population": 114909562, + "country": "Russia", + "year": 1957 + }, + { + "income": 4943, + "lifeExpectancy": 46.25466, + "population": 25552398, + "country": "Turkey", + "year": 1957 + }, + { + "income": 12702, + "lifeExpectancy": 70.452, + "population": 51543847, + "country": "United Kingdom", + "year": 1957 + }, + { + "income": 17430, + "lifeExpectancy": 69.3272, + "population": 176995108, + "country": "United States", + "year": 1957 + }, + { + "income": 13545, + "lifeExpectancy": 71.0244, + "population": 9859257, + "country": "Australia", + "year": 1958 + }, + { + "income": 14056, + "lifeExpectancy": 70.582, + "population": 17067983, + "country": "Canada", + "year": 1958 + }, + { + "income": 889, + "lifeExpectancy": 48.143792, + "population": 625155626, + "country": "China", + "year": 1958 + }, + { + "income": 10501, + "lifeExpectancy": 64.67964, + "population": 6881209, + "country": "Cuba", + "year": 1958 + }, + { + "income": 9276, + "lifeExpectancy": 68.5084, + "population": 4358901, + "country": "Finland", + "year": 1958 + }, + { + "income": 10681, + "lifeExpectancy": 70.4184, + "population": 44827950, + "country": "France", + "year": 1958 + }, + { + "income": 12884, + "lifeExpectancy": 69.36929231, + "population": 72318498, + "country": "Germany", + "year": 1958 + }, + { + "income": 10896, + "lifeExpectancy": 73.4224, + "population": 168318, + "country": "Iceland", + "year": 1958 + }, + { + "income": 1005, + "lifeExpectancy": 39.71364, + "population": 432601236, + "country": "India", + "year": 1958 + }, + { + "income": 3996, + "lifeExpectancy": 67.2188, + "population": 90883290, + "country": "Japan", + "year": 1958 + }, + { + "income": 1498, + "lifeExpectancy": 45.33644, + "population": 10843979, + "country": "North Korea", + "year": 1958 + }, + { + "income": 1233, + "lifeExpectancy": 52.04404, + "population": 23490027, + "country": "South Korea", + "year": 1958 + }, + { + "income": 15688, + "lifeExpectancy": 71.0192, + "population": 2275392, + "country": "New Zealand", + "year": 1958 + }, + { + "income": 14285, + "lifeExpectancy": 73.2932, + "population": 3522361, + "country": "Norway", + "year": 1958 + }, + { + "income": 5923, + "lifeExpectancy": 66.0188, + "population": 28792427, + "country": "Poland", + "year": 1958 + }, + { + "income": 10037, + "lifeExpectancy": 66.6264, + "population": 116615781, + "country": "Russia", + "year": 1958 + }, + { + "income": 5252, + "lifeExpectancy": 46.97084, + "population": 26214022, + "country": "Turkey", + "year": 1958 + }, + { + "income": 12672, + "lifeExpectancy": 70.628, + "population": 51800117, + "country": "United Kingdom", + "year": 1958 + }, + { + "income": 16961, + "lifeExpectancy": 69.5928, + "population": 180107612, + "country": "United States", + "year": 1958 + }, + { + "income": 14076, + "lifeExpectancy": 70.5982, + "population": 10079604, + "country": "Australia", + "year": 1959 + }, + { + "income": 14289, + "lifeExpectancy": 70.621, + "population": 17498573, + "country": "Canada", + "year": 1959 + }, + { + "income": 958, + "lifeExpectancy": 36.336856, + "population": 634649557, + "country": "China", + "year": 1959 + }, + { + "income": 9234, + "lifeExpectancy": 65.32842, + "population": 7005486, + "country": "Cuba", + "year": 1959 + }, + { + "income": 9751, + "lifeExpectancy": 68.6852, + "population": 4395427, + "country": "Finland", + "year": 1959 + }, + { + "income": 10911, + "lifeExpectancy": 70.4552, + "population": 45319442, + "country": "France", + "year": 1959 + }, + { + "income": 13759, + "lifeExpectancy": 69.48021979, + "population": 72724260, + "country": "Germany", + "year": 1959 + }, + { + "income": 10865, + "lifeExpectancy": 72.6522, + "population": 171919, + "country": "Iceland", + "year": 1959 + }, + { + "income": 1002, + "lifeExpectancy": 40.41292, + "population": 440968677, + "country": "India", + "year": 1959 + }, + { + "income": 4288, + "lifeExpectancy": 67.6114, + "population": 91681713, + "country": "Japan", + "year": 1959 + }, + { + "income": 1452, + "lifeExpectancy": 45.93132, + "population": 11145152, + "country": "North Korea", + "year": 1959 + }, + { + "income": 1212, + "lifeExpectancy": 52.76062, + "population": 24295786, + "country": "South Korea", + "year": 1959 + }, + { + "income": 16454, + "lifeExpectancy": 70.9326, + "population": 2322669, + "country": "New Zealand", + "year": 1959 + }, + { + "income": 14797, + "lifeExpectancy": 73.4196, + "population": 3552545, + "country": "Norway", + "year": 1959 + }, + { + "income": 6009, + "lifeExpectancy": 65.6314, + "population": 29266789, + "country": "Poland", + "year": 1959 + }, + { + "income": 9755, + "lifeExpectancy": 67.3692, + "population": 118266807, + "country": "Russia", + "year": 1959 + }, + { + "income": 4869, + "lifeExpectancy": 47.72102, + "population": 26881379, + "country": "Turkey", + "year": 1959 + }, + { + "income": 13122, + "lifeExpectancy": 70.724, + "population": 52088147, + "country": "United Kingdom", + "year": 1959 + }, + { + "income": 17909, + "lifeExpectancy": 69.8084, + "population": 183178348, + "country": "United States", + "year": 1959 + }, + { + "income": 14346, + "lifeExpectancy": 71.042, + "population": 10292328, + "country": "Australia", + "year": 1960 + }, + { + "income": 14414, + "lifeExpectancy": 71, + "population": 17909232, + "country": "Canada", + "year": 1960 + }, + { + "income": 889, + "lifeExpectancy": 29.51112, + "population": 644450173, + "country": "China", + "year": 1960 + }, + { + "income": 9213, + "lifeExpectancy": 65.9852, + "population": 7141129, + "country": "Cuba", + "year": 1960 + }, + { + "income": 10560, + "lifeExpectancy": 68.882, + "population": 4430228, + "country": "Finland", + "year": 1960 + }, + { + "income": 11642, + "lifeExpectancy": 70.672, + "population": 45865699, + "country": "France", + "year": 1960 + }, + { + "income": 14808, + "lifeExpectancy": 69.40190727, + "population": 73179665, + "country": "Germany", + "year": 1960 + }, + { + "income": 10993, + "lifeExpectancy": 74.082, + "population": 175520, + "country": "Iceland", + "year": 1960 + }, + { + "income": 1048, + "lifeExpectancy": 41.1222, + "population": 449661874, + "country": "India", + "year": 1960 + }, + { + "income": 4756, + "lifeExpectancy": 67.904, + "population": 92500754, + "country": "Japan", + "year": 1960 + }, + { + "income": 1544, + "lifeExpectancy": 46.2922, + "population": 11424179, + "country": "North Korea", + "year": 1960 + }, + { + "income": 1178, + "lifeExpectancy": 53.4912, + "population": 25074028, + "country": "South Korea", + "year": 1960 + }, + { + "income": 16179, + "lifeExpectancy": 71.396, + "population": 2371999, + "country": "New Zealand", + "year": 1960 + }, + { + "income": 15542, + "lifeExpectancy": 73.436, + "population": 3582016, + "country": "Norway", + "year": 1960 + }, + { + "income": 6248, + "lifeExpectancy": 67.964, + "population": 29716363, + "country": "Poland", + "year": 1960 + }, + { + "income": 10496, + "lifeExpectancy": 68.382, + "population": 119860289, + "country": "Russia", + "year": 1960 + }, + { + "income": 4735, + "lifeExpectancy": 48.4992, + "population": 27553280, + "country": "Turkey", + "year": 1960 + }, + { + "income": 13697, + "lifeExpectancy": 70.94, + "population": 52410496, + "country": "United Kingdom", + "year": 1960 + }, + { + "income": 18059, + "lifeExpectancy": 69.734, + "population": 186176524, + "country": "United States", + "year": 1960 + }, + { + "income": 14126, + "lifeExpectancy": 71.3158, + "population": 10494911, + "country": "Australia", + "year": 1961 + }, + { + "income": 14545, + "lifeExpectancy": 71.229, + "population": 18295922, + "country": "Canada", + "year": 1961 + }, + { + "income": 558, + "lifeExpectancy": 31.930824, + "population": 654625069, + "country": "China", + "year": 1961 + }, + { + "income": 9248, + "lifeExpectancy": 66.64998, + "population": 7289828, + "country": "Cuba", + "year": 1961 + }, + { + "income": 11286, + "lifeExpectancy": 68.9088, + "population": 4463432, + "country": "Finland", + "year": 1961 + }, + { + "income": 12168, + "lifeExpectancy": 71.2588, + "population": 46471083, + "country": "France", + "year": 1961 + }, + { + "income": 15317, + "lifeExpectancy": 69.99702797, + "population": 73686490, + "country": "Germany", + "year": 1961 + }, + { + "income": 10801, + "lifeExpectancy": 73.4618, + "population": 179106, + "country": "Iceland", + "year": 1961 + }, + { + "income": 1051, + "lifeExpectancy": 41.84348, + "population": 458691457, + "country": "India", + "year": 1961 + }, + { + "income": 5276, + "lifeExpectancy": 68.5566, + "population": 93357259, + "country": "Japan", + "year": 1961 + }, + { + "income": 1624, + "lifeExpectancy": 46.54408, + "population": 11665593, + "country": "North Korea", + "year": 1961 + }, + { + "income": 1201, + "lifeExpectancy": 54.23578, + "population": 25808542, + "country": "South Korea", + "year": 1961 + }, + { + "income": 16664, + "lifeExpectancy": 71.1194, + "population": 2423769, + "country": "New Zealand", + "year": 1961 + }, + { + "income": 16425, + "lifeExpectancy": 73.4424, + "population": 3610710, + "country": "Norway", + "year": 1961 + }, + { + "income": 6669, + "lifeExpectancy": 68.0866, + "population": 30138099, + "country": "Poland", + "year": 1961 + }, + { + "income": 10908, + "lifeExpectancy": 68.6248, + "population": 121390327, + "country": "Russia", + "year": 1961 + }, + { + "income": 4691, + "lifeExpectancy": 49.30038, + "population": 28229291, + "country": "Turkey", + "year": 1961 + }, + { + "income": 13887, + "lifeExpectancy": 70.686, + "population": 52765864, + "country": "United Kingdom", + "year": 1961 + }, + { + "income": 18170, + "lifeExpectancy": 70.1396, + "population": 189077076, + "country": "United States", + "year": 1961 + }, + { + "income": 14742, + "lifeExpectancy": 71.0896, + "population": 10691220, + "country": "Australia", + "year": 1962 + }, + { + "income": 15276, + "lifeExpectancy": 71.258, + "population": 18659663, + "country": "Canada", + "year": 1962 + }, + { + "income": 567, + "lifeExpectancy": 42.274688, + "population": 665426760, + "country": "China", + "year": 1962 + }, + { + "income": 9273, + "lifeExpectancy": 67.32476, + "population": 7450404, + "country": "Cuba", + "year": 1962 + }, + { + "income": 11560, + "lifeExpectancy": 68.6156, + "population": 4494623, + "country": "Finland", + "year": 1962 + }, + { + "income": 12767, + "lifeExpectancy": 70.7956, + "population": 47121575, + "country": "France", + "year": 1962 + }, + { + "income": 15872, + "lifeExpectancy": 70.16889372, + "population": 74238494, + "country": "Germany", + "year": 1962 + }, + { + "income": 11489, + "lifeExpectancy": 73.6716, + "population": 182640, + "country": "Iceland", + "year": 1962 + }, + { + "income": 1046, + "lifeExpectancy": 42.57776, + "population": 468054145, + "country": "India", + "year": 1962 + }, + { + "income": 5686, + "lifeExpectancy": 68.8392, + "population": 94263646, + "country": "Japan", + "year": 1962 + }, + { + "income": 1592, + "lifeExpectancy": 46.82096, + "population": 11871720, + "country": "North Korea", + "year": 1962 + }, + { + "income": 1182, + "lifeExpectancy": 54.99436, + "population": 26495107, + "country": "South Korea", + "year": 1962 + }, + { + "income": 16646, + "lifeExpectancy": 71.3828, + "population": 2477328, + "country": "New Zealand", + "year": 1962 + }, + { + "income": 16793, + "lifeExpectancy": 73.3188, + "population": 3638791, + "country": "Norway", + "year": 1962 + }, + { + "income": 6511, + "lifeExpectancy": 67.7492, + "population": 30530513, + "country": "Poland", + "year": 1962 + }, + { + "income": 11027, + "lifeExpectancy": 68.2776, + "population": 122842753, + "country": "Russia", + "year": 1962 + }, + { + "income": 4849, + "lifeExpectancy": 50.11556, + "population": 28909985, + "country": "Turkey", + "year": 1962 + }, + { + "income": 13897, + "lifeExpectancy": 70.752, + "population": 53146634, + "country": "United Kingdom", + "year": 1962 + }, + { + "income": 18966, + "lifeExpectancy": 70.0252, + "population": 191860710, + "country": "United States", + "year": 1962 + }, + { + "income": 15357, + "lifeExpectancy": 71.1534, + "population": 10892700, + "country": "Australia", + "year": 1963 + }, + { + "income": 15752, + "lifeExpectancy": 71.267, + "population": 19007305, + "country": "Canada", + "year": 1963 + }, + { + "income": 635, + "lifeExpectancy": 49.619432, + "population": 677332765, + "country": "China", + "year": 1963 + }, + { + "income": 9244, + "lifeExpectancy": 68.00654, + "population": 7618359, + "country": "Cuba", + "year": 1963 + }, + { + "income": 11858, + "lifeExpectancy": 69.0224, + "population": 4522727, + "country": "Finland", + "year": 1963 + }, + { + "income": 13235, + "lifeExpectancy": 70.6524, + "population": 47781535, + "country": "France", + "year": 1963 + }, + { + "income": 16221, + "lifeExpectancy": 70.26131586, + "population": 74820389, + "country": "Germany", + "year": 1963 + }, + { + "income": 12447, + "lifeExpectancy": 72.9714, + "population": 186056, + "country": "Iceland", + "year": 1963 + }, + { + "income": 1071, + "lifeExpectancy": 43.32404, + "population": 477729958, + "country": "India", + "year": 1963 + }, + { + "income": 6106, + "lifeExpectancy": 69.9218, + "population": 95227653, + "country": "Japan", + "year": 1963 + }, + { + "income": 1577, + "lifeExpectancy": 47.22984, + "population": 12065470, + "country": "North Korea", + "year": 1963 + }, + { + "income": 1305, + "lifeExpectancy": 55.76694, + "population": 27143075, + "country": "South Korea", + "year": 1963 + }, + { + "income": 17340, + "lifeExpectancy": 71.4562, + "population": 2530791, + "country": "New Zealand", + "year": 1963 + }, + { + "income": 17347, + "lifeExpectancy": 72.9552, + "population": 3666690, + "country": "Norway", + "year": 1963 + }, + { + "income": 6836, + "lifeExpectancy": 68.6818, + "population": 30893775, + "country": "Poland", + "year": 1963 + }, + { + "income": 10620, + "lifeExpectancy": 68.7404, + "population": 124193114, + "country": "Russia", + "year": 1963 + }, + { + "income": 5188, + "lifeExpectancy": 50.93674, + "population": 29597047, + "country": "Turkey", + "year": 1963 + }, + { + "income": 14393, + "lifeExpectancy": 70.658, + "population": 53537821, + "country": "United Kingdom", + "year": 1963 + }, + { + "income": 19497, + "lifeExpectancy": 69.8508, + "population": 194513911, + "country": "United States", + "year": 1963 + }, + { + "income": 16098, + "lifeExpectancy": 70.8172, + "population": 11114995, + "country": "Australia", + "year": 1964 + }, + { + "income": 16464, + "lifeExpectancy": 71.646, + "population": 19349346, + "country": "Canada", + "year": 1964 + }, + { + "income": 713, + "lifeExpectancy": 50.988016, + "population": 690932043, + "country": "China", + "year": 1964 + }, + { + "income": 9179, + "lifeExpectancy": 68.69332, + "population": 7787149, + "country": "Cuba", + "year": 1964 + }, + { + "income": 12389, + "lifeExpectancy": 69.2292, + "population": 4546343, + "country": "Finland", + "year": 1964 + }, + { + "income": 13969, + "lifeExpectancy": 71.6192, + "population": 48402900, + "country": "France", + "year": 1964 + }, + { + "income": 17100, + "lifeExpectancy": 70.82344196, + "population": 75410766, + "country": "Germany", + "year": 1964 + }, + { + "income": 13450, + "lifeExpectancy": 73.5612, + "population": 189276, + "country": "Iceland", + "year": 1964 + }, + { + "income": 1125, + "lifeExpectancy": 44.07932, + "population": 487690114, + "country": "India", + "year": 1964 + }, + { + "income": 6741, + "lifeExpectancy": 70.3944, + "population": 96253064, + "country": "Japan", + "year": 1964 + }, + { + "income": 1592, + "lifeExpectancy": 47.82972, + "population": 12282421, + "country": "North Korea", + "year": 1964 + }, + { + "income": 1380, + "lifeExpectancy": 56.55352, + "population": 27770874, + "country": "South Korea", + "year": 1964 + }, + { + "income": 17837, + "lifeExpectancy": 71.4996, + "population": 2581578, + "country": "New Zealand", + "year": 1964 + }, + { + "income": 18118, + "lifeExpectancy": 73.4516, + "population": 3694987, + "country": "Norway", + "year": 1964 + }, + { + "income": 7078, + "lifeExpectancy": 68.9144, + "population": 31229448, + "country": "Poland", + "year": 1964 + }, + { + "income": 11836, + "lifeExpectancy": 69.5332, + "population": 125412397, + "country": "Russia", + "year": 1964 + }, + { + "income": 5296, + "lifeExpectancy": 51.75292, + "population": 30292969, + "country": "Turkey", + "year": 1964 + }, + { + "income": 15067, + "lifeExpectancy": 71.444, + "population": 53920055, + "country": "United Kingdom", + "year": 1964 + }, + { + "income": 20338, + "lifeExpectancy": 70.1364, + "population": 197028908, + "country": "United States", + "year": 1964 + }, + { + "income": 16601, + "lifeExpectancy": 71.151, + "population": 11368011, + "country": "Australia", + "year": 1965 + }, + { + "income": 17243, + "lifeExpectancy": 71.745, + "population": 19693538, + "country": "Canada", + "year": 1965 + }, + { + "income": 772, + "lifeExpectancy": 53.26108, + "population": 706590947, + "country": "China", + "year": 1965 + }, + { + "income": 9116, + "lifeExpectancy": 69.3761, + "population": 7951928, + "country": "Cuba", + "year": 1965 + }, + { + "income": 13006, + "lifeExpectancy": 68.986, + "population": 4564690, + "country": "Finland", + "year": 1965 + }, + { + "income": 14514, + "lifeExpectancy": 71.456, + "population": 48952283, + "country": "France", + "year": 1965 + }, + { + "income": 17838, + "lifeExpectancy": 70.81075623, + "population": 75990737, + "country": "Germany", + "year": 1965 + }, + { + "income": 14173, + "lifeExpectancy": 73.831, + "population": 192251, + "country": "Iceland", + "year": 1965 + }, + { + "income": 1053, + "lifeExpectancy": 44.8386, + "population": 497920270, + "country": "India", + "year": 1965 + }, + { + "income": 7048, + "lifeExpectancy": 70.447, + "population": 97341852, + "country": "Japan", + "year": 1965 + }, + { + "income": 1630, + "lifeExpectancy": 48.6336, + "population": 12547524, + "country": "North Korea", + "year": 1965 + }, + { + "income": 1416, + "lifeExpectancy": 57.3651, + "population": 28392722, + "country": "South Korea", + "year": 1965 + }, + { + "income": 18632, + "lifeExpectancy": 71.433, + "population": 2628003, + "country": "New Zealand", + "year": 1965 + }, + { + "income": 18980, + "lifeExpectancy": 73.568, + "population": 3724065, + "country": "Norway", + "year": 1965 + }, + { + "income": 7409, + "lifeExpectancy": 69.617, + "population": 31539695, + "country": "Poland", + "year": 1965 + }, + { + "income": 12363, + "lifeExpectancy": 69.116, + "population": 126483874, + "country": "Russia", + "year": 1965 + }, + { + "income": 5309, + "lifeExpectancy": 52.5551, + "population": 31000167, + "country": "Turkey", + "year": 1965 + }, + { + "income": 15292, + "lifeExpectancy": 71.43, + "population": 54278349, + "country": "United Kingdom", + "year": 1965 + }, + { + "income": 21361, + "lifeExpectancy": 70.212, + "population": 199403532, + "country": "United States", + "year": 1965 + }, + { + "income": 16756, + "lifeExpectancy": 70.9948, + "population": 11657281, + "country": "Australia", + "year": 1966 + }, + { + "income": 18022, + "lifeExpectancy": 71.874, + "population": 20041006, + "country": "Canada", + "year": 1966 + }, + { + "income": 826, + "lifeExpectancy": 54.364464, + "population": 724490033, + "country": "China", + "year": 1966 + }, + { + "income": 9436, + "lifeExpectancy": 70.04688, + "population": 8110428, + "country": "Cuba", + "year": 1966 + }, + { + "income": 13269, + "lifeExpectancy": 69.5028, + "population": 4577033, + "country": "Finland", + "year": 1966 + }, + { + "income": 15158, + "lifeExpectancy": 71.8728, + "population": 49411342, + "country": "France", + "year": 1966 + }, + { + "income": 18262, + "lifeExpectancy": 70.92828395, + "population": 76558016, + "country": "Germany", + "year": 1966 + }, + { + "income": 15166, + "lifeExpectancy": 73.2208, + "population": 194935, + "country": "Iceland", + "year": 1966 + }, + { + "income": 1037, + "lifeExpectancy": 45.59388, + "population": 508402908, + "country": "India", + "year": 1966 + }, + { + "income": 7724, + "lifeExpectancy": 71.2596, + "population": 98494630, + "country": "Japan", + "year": 1966 + }, + { + "income": 1616, + "lifeExpectancy": 49.60048, + "population": 12864683, + "country": "North Korea", + "year": 1966 + }, + { + "income": 1563, + "lifeExpectancy": 58.21268, + "population": 29006181, + "country": "South Korea", + "year": 1966 + }, + { + "income": 19467, + "lifeExpectancy": 71.2964, + "population": 2668590, + "country": "New Zealand", + "year": 1966 + }, + { + "income": 19588, + "lifeExpectancy": 73.8444, + "population": 3754010, + "country": "Norway", + "year": 1966 + }, + { + "income": 7818, + "lifeExpectancy": 70.0296, + "population": 31824145, + "country": "Poland", + "year": 1966 + }, + { + "income": 12823, + "lifeExpectancy": 69.1788, + "population": 127396324, + "country": "Russia", + "year": 1966 + }, + { + "income": 5906, + "lifeExpectancy": 53.33228, + "population": 31718266, + "country": "Turkey", + "year": 1966 + }, + { + "income": 15494, + "lifeExpectancy": 71.346, + "population": 54606608, + "country": "United Kingdom", + "year": 1966 + }, + { + "income": 22495, + "lifeExpectancy": 70.2276, + "population": 201629471, + "country": "United States", + "year": 1966 + }, + { + "income": 17570, + "lifeExpectancy": 71.2786, + "population": 11975795, + "country": "Australia", + "year": 1967 + }, + { + "income": 18240, + "lifeExpectancy": 72.083, + "population": 20389445, + "country": "Canada", + "year": 1967 + }, + { + "income": 719, + "lifeExpectancy": 55.889368, + "population": 744365635, + "country": "China", + "year": 1967 + }, + { + "income": 10372, + "lifeExpectancy": 70.69866, + "population": 8263547, + "country": "Cuba", + "year": 1967 + }, + { + "income": 13477, + "lifeExpectancy": 69.6796, + "population": 4584264, + "country": "Finland", + "year": 1967 + }, + { + "income": 15759, + "lifeExpectancy": 71.8696, + "population": 49791771, + "country": "France", + "year": 1967 + }, + { + "income": 18311, + "lifeExpectancy": 71.15404398, + "population": 77106876, + "country": "Germany", + "year": 1967 + }, + { + "income": 14734, + "lifeExpectancy": 73.7206, + "population": 197356, + "country": "Iceland", + "year": 1967 + }, + { + "income": 1096, + "lifeExpectancy": 46.33916, + "population": 519162069, + "country": "India", + "year": 1967 + }, + { + "income": 8454, + "lifeExpectancy": 71.5522, + "population": 99711082, + "country": "Japan", + "year": 1967 + }, + { + "income": 1646, + "lifeExpectancy": 50.62536, + "population": 13221826, + "country": "North Korea", + "year": 1967 + }, + { + "income": 1621, + "lifeExpectancy": 59.09526, + "population": 29606633, + "country": "South Korea", + "year": 1967 + }, + { + "income": 18309, + "lifeExpectancy": 71.6798, + "population": 2704205, + "country": "New Zealand", + "year": 1967 + }, + { + "income": 20686, + "lifeExpectancy": 73.9108, + "population": 3784579, + "country": "Norway", + "year": 1967 + }, + { + "income": 8044, + "lifeExpectancy": 69.7322, + "population": 32085011, + "country": "Poland", + "year": 1967 + }, + { + "income": 13256, + "lifeExpectancy": 68.9616, + "population": 128165823, + "country": "Russia", + "year": 1967 + }, + { + "income": 6020, + "lifeExpectancy": 54.08346, + "population": 32448404, + "country": "Turkey", + "year": 1967 + }, + { + "income": 15777, + "lifeExpectancy": 71.972, + "population": 54904680, + "country": "United Kingdom", + "year": 1967 + }, + { + "income": 22803, + "lifeExpectancy": 70.5532, + "population": 203713082, + "country": "United States", + "year": 1967 + }, + { + "income": 18261, + "lifeExpectancy": 70.9124, + "population": 12305530, + "country": "Australia", + "year": 1968 + }, + { + "income": 18900, + "lifeExpectancy": 72.242, + "population": 20739031, + "country": "Canada", + "year": 1968 + }, + { + "income": 669, + "lifeExpectancy": 56.860432, + "population": 765570668, + "country": "China", + "year": 1968 + }, + { + "income": 9626, + "lifeExpectancy": 71.32644, + "population": 8413329, + "country": "Cuba", + "year": 1968 + }, + { + "income": 13726, + "lifeExpectancy": 69.6364, + "population": 4589226, + "country": "Finland", + "year": 1968 + }, + { + "income": 16321, + "lifeExpectancy": 71.8664, + "population": 50126895, + "country": "France", + "year": 1968 + }, + { + "income": 19254, + "lifeExpectancy": 70.80345367, + "population": 77611000, + "country": "Germany", + "year": 1968 + }, + { + "income": 13752, + "lifeExpectancy": 73.9304, + "population": 199634, + "country": "Iceland", + "year": 1968 + }, + { + "income": 1095, + "lifeExpectancy": 47.07144, + "population": 530274729, + "country": "India", + "year": 1968 + }, + { + "income": 9439, + "lifeExpectancy": 71.8748, + "population": 100988866, + "country": "Japan", + "year": 1968 + }, + { + "income": 1673, + "lifeExpectancy": 51.61924, + "population": 13608611, + "country": "North Korea", + "year": 1968 + }, + { + "income": 1774, + "lifeExpectancy": 60.00184, + "population": 30204127, + "country": "South Korea", + "year": 1968 + }, + { + "income": 18082, + "lifeExpectancy": 71.3432, + "population": 2738283, + "country": "New Zealand", + "year": 1968 + }, + { + "income": 21022, + "lifeExpectancy": 73.7872, + "population": 3815399, + "country": "Norway", + "year": 1968 + }, + { + "income": 8473, + "lifeExpectancy": 70.3748, + "population": 32330582, + "country": "Poland", + "year": 1968 + }, + { + "income": 13902, + "lifeExpectancy": 68.9144, + "population": 128837792, + "country": "Russia", + "year": 1968 + }, + { + "income": 6295, + "lifeExpectancy": 54.80964, + "population": 33196289, + "country": "Turkey", + "year": 1968 + }, + { + "income": 16357, + "lifeExpectancy": 71.598, + "population": 55171084, + "country": "United Kingdom", + "year": 1968 + }, + { + "income": 23647, + "lifeExpectancy": 70.2088, + "population": 205687611, + "country": "United States", + "year": 1968 + }, + { + "income": 18949, + "lifeExpectancy": 71.3262, + "population": 12621240, + "country": "Australia", + "year": 1969 + }, + { + "income": 19614, + "lifeExpectancy": 72.401, + "population": 21089228, + "country": "Canada", + "year": 1969 + }, + { + "income": 732, + "lifeExpectancy": 58.367416, + "population": 787191243, + "country": "China", + "year": 1969 + }, + { + "income": 9377, + "lifeExpectancy": 71.92622, + "population": 8563191, + "country": "Cuba", + "year": 1969 + }, + { + "income": 15058, + "lifeExpectancy": 69.5132, + "population": 4595807, + "country": "Finland", + "year": 1969 + }, + { + "income": 17339, + "lifeExpectancy": 71.6032, + "population": 50466183, + "country": "France", + "year": 1969 + }, + { + "income": 20409, + "lifeExpectancy": 70.65682236, + "population": 78038271, + "country": "Germany", + "year": 1969 + }, + { + "income": 13983, + "lifeExpectancy": 73.7002, + "population": 201941, + "country": "Iceland", + "year": 1969 + }, + { + "income": 1141, + "lifeExpectancy": 47.78972, + "population": 541844848, + "country": "India", + "year": 1969 + }, + { + "income": 10548, + "lifeExpectancy": 72.1074, + "population": 102323674, + "country": "Japan", + "year": 1969 + }, + { + "income": 1643, + "lifeExpectancy": 52.55012, + "population": 14009168, + "country": "North Korea", + "year": 1969 + }, + { + "income": 1998, + "lifeExpectancy": 60.91542, + "population": 30811523, + "country": "South Korea", + "year": 1969 + }, + { + "income": 19745, + "lifeExpectancy": 71.7166, + "population": 2775684, + "country": "New Zealand", + "year": 1969 + }, + { + "income": 21845, + "lifeExpectancy": 73.4936, + "population": 3845932, + "country": "Norway", + "year": 1969 + }, + { + "income": 8331, + "lifeExpectancy": 69.8674, + "population": 32571673, + "country": "Poland", + "year": 1969 + }, + { + "income": 13972, + "lifeExpectancy": 68.3872, + "population": 129475269, + "country": "Russia", + "year": 1969 + }, + { + "income": 6470, + "lifeExpectancy": 55.51382, + "population": 33969201, + "country": "Turkey", + "year": 1969 + }, + { + "income": 16616, + "lifeExpectancy": 71.554, + "population": 55406435, + "country": "United Kingdom", + "year": 1969 + }, + { + "income": 24147, + "lifeExpectancy": 70.4444, + "population": 207599308, + "country": "United States", + "year": 1969 + }, + { + "income": 19719, + "lifeExpectancy": 71, + "population": 12904760, + "country": "Australia", + "year": 1970 + }, + { + "income": 19842, + "lifeExpectancy": 72.6, + "population": 21439200, + "country": "Canada", + "year": 1970 + }, + { + "income": 848, + "lifeExpectancy": 60, + "population": 808510713, + "country": "China", + "year": 1970 + }, + { + "income": 8918, + "lifeExpectancy": 72.5, + "population": 8715123, + "country": "Cuba", + "year": 1970 + }, + { + "income": 16245, + "lifeExpectancy": 70.2, + "population": 4606740, + "country": "Finland", + "year": 1970 + }, + { + "income": 18185, + "lifeExpectancy": 72.5, + "population": 50843830, + "country": "France", + "year": 1970 + }, + { + "income": 21218, + "lifeExpectancy": 70.9, + "population": 78366605, + "country": "Germany", + "year": 1970 + }, + { + "income": 14937, + "lifeExpectancy": 73.8, + "population": 204392, + "country": "Iceland", + "year": 1970 + }, + { + "income": 1170, + "lifeExpectancy": 48.5, + "population": 553943226, + "country": "India", + "year": 1970 + }, + { + "income": 14203, + "lifeExpectancy": 72.2, + "population": 103707537, + "country": "Japan", + "year": 1970 + }, + { + "income": 1697, + "lifeExpectancy": 53.4, + "population": 14410400, + "country": "North Korea", + "year": 1970 + }, + { + "income": 2142, + "lifeExpectancy": 61.8, + "population": 31437141, + "country": "South Korea", + "year": 1970 + }, + { + "income": 19200, + "lifeExpectancy": 71.5, + "population": 2819548, + "country": "New Zealand", + "year": 1970 + }, + { + "income": 22186, + "lifeExpectancy": 73.9, + "population": 3875719, + "country": "Norway", + "year": 1970 + }, + { + "income": 8705, + "lifeExpectancy": 70, + "population": 32816751, + "country": "Poland", + "year": 1970 + }, + { + "income": 14915, + "lifeExpectancy": 68.5, + "population": 130126383, + "country": "Russia", + "year": 1970 + }, + { + "income": 6740, + "lifeExpectancy": 56.2, + "population": 34772031, + "country": "Turkey", + "year": 1970 + }, + { + "income": 16933, + "lifeExpectancy": 71.8, + "population": 55611401, + "country": "United Kingdom", + "year": 1970 + }, + { + "income": 23908, + "lifeExpectancy": 70.7, + "population": 209485807, + "country": "United States", + "year": 1970 + }, + { + "income": 20176, + "lifeExpectancy": 71.3, + "population": 13150591, + "country": "Australia", + "year": 1971 + }, + { + "income": 20688, + "lifeExpectancy": 72.9, + "population": 21790338, + "country": "Canada", + "year": 1971 + }, + { + "income": 876, + "lifeExpectancy": 60.6, + "population": 829367784, + "country": "China", + "year": 1971 + }, + { + "income": 9471, + "lifeExpectancy": 73.2, + "population": 8869961, + "country": "Cuba", + "year": 1971 + }, + { + "income": 16564, + "lifeExpectancy": 70.5, + "population": 4623389, + "country": "Finland", + "year": 1971 + }, + { + "income": 18891, + "lifeExpectancy": 72.6, + "population": 51273975, + "country": "France", + "year": 1971 + }, + { + "income": 21695, + "lifeExpectancy": 71, + "population": 78584779, + "country": "Germany", + "year": 1971 + }, + { + "income": 16687, + "lifeExpectancy": 73.8, + "population": 207050, + "country": "Iceland", + "year": 1971 + }, + { + "income": 1154, + "lifeExpectancy": 48.9, + "population": 566605402, + "country": "India", + "year": 1971 + }, + { + "income": 14673, + "lifeExpectancy": 72.8, + "population": 105142875, + "country": "Japan", + "year": 1971 + }, + { + "income": 1699, + "lifeExpectancy": 54.6, + "population": 14812363, + "country": "North Korea", + "year": 1971 + }, + { + "income": 2427, + "lifeExpectancy": 62.3, + "population": 32087884, + "country": "South Korea", + "year": 1971 + }, + { + "income": 19871, + "lifeExpectancy": 71.6, + "population": 2871810, + "country": "New Zealand", + "year": 1971 + }, + { + "income": 23239, + "lifeExpectancy": 74.1, + "population": 3904750, + "country": "Norway", + "year": 1971 + }, + { + "income": 9256, + "lifeExpectancy": 70.2, + "population": 33068997, + "country": "Poland", + "year": 1971 + }, + { + "income": 15170, + "lifeExpectancy": 68.6, + "population": 130808492, + "country": "Russia", + "year": 1971 + }, + { + "income": 6765, + "lifeExpectancy": 56.9, + "population": 35608079, + "country": "Turkey", + "year": 1971 + }, + { + "income": 17207, + "lifeExpectancy": 72, + "population": 55785325, + "country": "United Kingdom", + "year": 1971 + }, + { + "income": 24350, + "lifeExpectancy": 71, + "population": 211357912, + "country": "United States", + "year": 1971 + }, + { + "income": 20385, + "lifeExpectancy": 71.7, + "population": 13364238, + "country": "Australia", + "year": 1972 + }, + { + "income": 21532, + "lifeExpectancy": 72.9, + "population": 22141998, + "country": "Canada", + "year": 1972 + }, + { + "income": 843, + "lifeExpectancy": 61.1, + "population": 849787991, + "country": "China", + "year": 1972 + }, + { + "income": 9745, + "lifeExpectancy": 73.9, + "population": 9025299, + "country": "Cuba", + "year": 1972 + }, + { + "income": 17722, + "lifeExpectancy": 70.9, + "population": 4644847, + "country": "Finland", + "year": 1972 + }, + { + "income": 19570, + "lifeExpectancy": 72.8, + "population": 51741044, + "country": "France", + "year": 1972 + }, + { + "income": 22497, + "lifeExpectancy": 71.2, + "population": 78700104, + "country": "Germany", + "year": 1972 + }, + { + "income": 17413, + "lifeExpectancy": 73.9, + "population": 209868, + "country": "Iceland", + "year": 1972 + }, + { + "income": 1125, + "lifeExpectancy": 49.3, + "population": 579800632, + "country": "India", + "year": 1972 + }, + { + "income": 15694, + "lifeExpectancy": 73.2, + "population": 106616535, + "country": "Japan", + "year": 1972 + }, + { + "income": 1730, + "lifeExpectancy": 55.7, + "population": 15214615, + "country": "North Korea", + "year": 1972 + }, + { + "income": 2760, + "lifeExpectancy": 62.8, + "population": 32759447, + "country": "South Korea", + "year": 1972 + }, + { + "income": 20349, + "lifeExpectancy": 71.8, + "population": 2930469, + "country": "New Zealand", + "year": 1972 + }, + { + "income": 24308, + "lifeExpectancy": 74.3, + "population": 3932945, + "country": "Norway", + "year": 1972 + }, + { + "income": 9854, + "lifeExpectancy": 70.6, + "population": 33328713, + "country": "Poland", + "year": 1972 + }, + { + "income": 15113, + "lifeExpectancy": 68.7, + "population": 131517584, + "country": "Russia", + "year": 1972 + }, + { + "income": 7186, + "lifeExpectancy": 57.7, + "population": 36475356, + "country": "Turkey", + "year": 1972 + }, + { + "income": 17793, + "lifeExpectancy": 72, + "population": 55927492, + "country": "United Kingdom", + "year": 1972 + }, + { + "income": 25374, + "lifeExpectancy": 71.3, + "population": 213219515, + "country": "United States", + "year": 1972 + }, + { + "income": 21185, + "lifeExpectancy": 72, + "population": 13552190, + "country": "Australia", + "year": 1973 + }, + { + "income": 22797, + "lifeExpectancy": 73.1, + "population": 22488744, + "country": "Canada", + "year": 1973 + }, + { + "income": 894, + "lifeExpectancy": 61.7, + "population": 869474823, + "country": "China", + "year": 1973 + }, + { + "income": 10439, + "lifeExpectancy": 74.1, + "population": 9176051, + "country": "Cuba", + "year": 1973 + }, + { + "income": 18804, + "lifeExpectancy": 71.3, + "population": 4668813, + "country": "Finland", + "year": 1973 + }, + { + "income": 20486, + "lifeExpectancy": 73.1, + "population": 52214014, + "country": "France", + "year": 1973 + }, + { + "income": 23461, + "lifeExpectancy": 71.5, + "population": 78732884, + "country": "Germany", + "year": 1973 + }, + { + "income": 18360, + "lifeExpectancy": 74.1, + "population": 212731, + "country": "Iceland", + "year": 1973 + }, + { + "income": 1151, + "lifeExpectancy": 49.9, + "population": 593451889, + "country": "India", + "year": 1973 + }, + { + "income": 16731, + "lifeExpectancy": 73.5, + "population": 108085729, + "country": "Japan", + "year": 1973 + }, + { + "income": 1751, + "lifeExpectancy": 56.8, + "population": 15603001, + "country": "North Korea", + "year": 1973 + }, + { + "income": 3326, + "lifeExpectancy": 63.3, + "population": 33435268, + "country": "South Korea", + "year": 1973 + }, + { + "income": 21342, + "lifeExpectancy": 71.8, + "population": 2989985, + "country": "New Zealand", + "year": 1973 + }, + { + "income": 25278, + "lifeExpectancy": 74.5, + "population": 3959705, + "country": "Norway", + "year": 1973 + }, + { + "income": 10504, + "lifeExpectancy": 70.9, + "population": 33597810, + "country": "Poland", + "year": 1973 + }, + { + "income": 16236, + "lifeExpectancy": 68.7, + "population": 132254362, + "country": "Russia", + "year": 1973 + }, + { + "income": 7442, + "lifeExpectancy": 58.3, + "population": 37366922, + "country": "Turkey", + "year": 1973 + }, + { + "income": 19043, + "lifeExpectancy": 72, + "population": 56039166, + "country": "United Kingdom", + "year": 1973 + }, + { + "income": 26567, + "lifeExpectancy": 71.6, + "population": 215092900, + "country": "United States", + "year": 1973 + }, + { + "income": 21383, + "lifeExpectancy": 72.1, + "population": 13725400, + "country": "Australia", + "year": 1974 + }, + { + "income": 23405, + "lifeExpectancy": 73.2, + "population": 22823272, + "country": "Canada", + "year": 1974 + }, + { + "income": 888, + "lifeExpectancy": 62.1, + "population": 888132761, + "country": "China", + "year": 1974 + }, + { + "income": 10805, + "lifeExpectancy": 74.3, + "population": 9315371, + "country": "Cuba", + "year": 1974 + }, + { + "income": 19273, + "lifeExpectancy": 71.4, + "population": 4691818, + "country": "Finland", + "year": 1974 + }, + { + "income": 20997, + "lifeExpectancy": 73.3, + "population": 52647616, + "country": "France", + "year": 1974 + }, + { + "income": 23662, + "lifeExpectancy": 71.8, + "population": 78713928, + "country": "Germany", + "year": 1974 + }, + { + "income": 19123, + "lifeExpectancy": 74.3, + "population": 215465, + "country": "Iceland", + "year": 1974 + }, + { + "income": 1139, + "lifeExpectancy": 50.4, + "population": 607446519, + "country": "India", + "year": 1974 + }, + { + "income": 16320, + "lifeExpectancy": 73.9, + "population": 109495053, + "country": "Japan", + "year": 1974 + }, + { + "income": 1782, + "lifeExpectancy": 57.9, + "population": 15960127, + "country": "North Korea", + "year": 1974 + }, + { + "income": 3673, + "lifeExpectancy": 63.9, + "population": 34091816, + "country": "South Korea", + "year": 1974 + }, + { + "income": 22131, + "lifeExpectancy": 72, + "population": 3042573, + "country": "New Zealand", + "year": 1974 + }, + { + "income": 26252, + "lifeExpectancy": 74.7, + "population": 3984291, + "country": "Norway", + "year": 1974 + }, + { + "income": 11020, + "lifeExpectancy": 71.2, + "population": 33877397, + "country": "Poland", + "year": 1974 + }, + { + "income": 16594, + "lifeExpectancy": 68.6, + "population": 133012558, + "country": "Russia", + "year": 1974 + }, + { + "income": 7991, + "lifeExpectancy": 58.9, + "population": 38272701, + "country": "Turkey", + "year": 1974 + }, + { + "income": 18801, + "lifeExpectancy": 72.3, + "population": 56122405, + "country": "United Kingdom", + "year": 1974 + }, + { + "income": 26258, + "lifeExpectancy": 72.1, + "population": 217001865, + "country": "United States", + "year": 1974 + }, + { + "income": 21708, + "lifeExpectancy": 72.5, + "population": 13892674, + "country": "Australia", + "year": 1975 + }, + { + "income": 23593, + "lifeExpectancy": 73.6, + "population": 23140609, + "country": "Canada", + "year": 1975 + }, + { + "income": 920, + "lifeExpectancy": 62.6, + "population": 905580445, + "country": "China", + "year": 1975 + }, + { + "income": 11176, + "lifeExpectancy": 74.6, + "population": 9438445, + "country": "Cuba", + "year": 1975 + }, + { + "income": 19409, + "lifeExpectancy": 71.6, + "population": 4711459, + "country": "Finland", + "year": 1975 + }, + { + "income": 20851, + "lifeExpectancy": 73.2, + "population": 53010727, + "country": "France", + "year": 1975 + }, + { + "income": 23630, + "lifeExpectancy": 71.9, + "population": 78667327, + "country": "Germany", + "year": 1975 + }, + { + "income": 19023, + "lifeExpectancy": 74.7, + "population": 217958, + "country": "Iceland", + "year": 1975 + }, + { + "income": 1212, + "lifeExpectancy": 50.9, + "population": 621703641, + "country": "India", + "year": 1975 + }, + { + "income": 16632, + "lifeExpectancy": 74.4, + "population": 110804519, + "country": "Japan", + "year": 1975 + }, + { + "income": 1844, + "lifeExpectancy": 58.9, + "population": 16274740, + "country": "North Korea", + "year": 1975 + }, + { + "income": 4108, + "lifeExpectancy": 64.4, + "population": 34713078, + "country": "South Korea", + "year": 1975 + }, + { + "income": 21467, + "lifeExpectancy": 72.1, + "population": 3082883, + "country": "New Zealand", + "year": 1975 + }, + { + "income": 27553, + "lifeExpectancy": 74.8, + "population": 4006221, + "country": "Norway", + "year": 1975 + }, + { + "income": 11430, + "lifeExpectancy": 70.9, + "population": 34168112, + "country": "Poland", + "year": 1975 + }, + { + "income": 16530, + "lifeExpectancy": 68.2, + "population": 133788113, + "country": "Russia", + "year": 1975 + }, + { + "income": 8381, + "lifeExpectancy": 59.5, + "population": 39185637, + "country": "Turkey", + "year": 1975 + }, + { + "income": 18699, + "lifeExpectancy": 72.6, + "population": 56179925, + "country": "United Kingdom", + "year": 1975 + }, + { + "income": 25934, + "lifeExpectancy": 72.6, + "population": 218963561, + "country": "United States", + "year": 1975 + }, + { + "income": 22372, + "lifeExpectancy": 73, + "population": 14054956, + "country": "Australia", + "year": 1976 + }, + { + "income": 24563, + "lifeExpectancy": 73.9, + "population": 23439940, + "country": "Canada", + "year": 1976 + }, + { + "income": 891, + "lifeExpectancy": 62.4, + "population": 921688199, + "country": "China", + "year": 1976 + }, + { + "income": 11334, + "lifeExpectancy": 74.6, + "population": 9544268, + "country": "Cuba", + "year": 1976 + }, + { + "income": 19268, + "lifeExpectancy": 72, + "population": 4726803, + "country": "Finland", + "year": 1976 + }, + { + "income": 21661, + "lifeExpectancy": 73.4, + "population": 53293030, + "country": "France", + "year": 1976 + }, + { + "income": 24904, + "lifeExpectancy": 72.3, + "population": 78604473, + "country": "Germany", + "year": 1976 + }, + { + "income": 19978, + "lifeExpectancy": 75.2, + "population": 220162, + "country": "Iceland", + "year": 1976 + }, + { + "income": 1201, + "lifeExpectancy": 51.4, + "population": 636182810, + "country": "India", + "year": 1976 + }, + { + "income": 17117, + "lifeExpectancy": 74.9, + "population": 111992858, + "country": "Japan", + "year": 1976 + }, + { + "income": 1851, + "lifeExpectancy": 59.8, + "population": 16539029, + "country": "North Korea", + "year": 1976 + }, + { + "income": 4614, + "lifeExpectancy": 64.9, + "population": 35290737, + "country": "South Korea", + "year": 1976 + }, + { + "income": 21749, + "lifeExpectancy": 72.3, + "population": 3108745, + "country": "New Zealand", + "year": 1976 + }, + { + "income": 29117, + "lifeExpectancy": 75, + "population": 4025297, + "country": "Norway", + "year": 1976 + }, + { + "income": 11605, + "lifeExpectancy": 70.8, + "population": 34468877, + "country": "Poland", + "year": 1976 + }, + { + "income": 17192, + "lifeExpectancy": 68, + "population": 134583945, + "country": "Russia", + "year": 1976 + }, + { + "income": 9142, + "lifeExpectancy": 60, + "population": 40100696, + "country": "Turkey", + "year": 1976 + }, + { + "income": 19207, + "lifeExpectancy": 72.9, + "population": 56212943, + "country": "United Kingdom", + "year": 1976 + }, + { + "income": 27041, + "lifeExpectancy": 72.9, + "population": 220993166, + "country": "United States", + "year": 1976 + }, + { + "income": 22373, + "lifeExpectancy": 73.4, + "population": 14211657, + "country": "Australia", + "year": 1977 + }, + { + "income": 25095, + "lifeExpectancy": 74.2, + "population": 23723801, + "country": "Canada", + "year": 1977 + }, + { + "income": 904, + "lifeExpectancy": 63.3, + "population": 936554514, + "country": "China", + "year": 1977 + }, + { + "income": 11712, + "lifeExpectancy": 74.4, + "population": 9634677, + "country": "Cuba", + "year": 1977 + }, + { + "income": 19261, + "lifeExpectancy": 72.4, + "population": 4738949, + "country": "Finland", + "year": 1977 + }, + { + "income": 22270, + "lifeExpectancy": 73.8, + "population": 53509578, + "country": "France", + "year": 1977 + }, + { + "income": 25678, + "lifeExpectancy": 72.6, + "population": 78524727, + "country": "Germany", + "year": 1977 + }, + { + "income": 21583, + "lifeExpectancy": 75.6, + "population": 222142, + "country": "Iceland", + "year": 1977 + }, + { + "income": 1266, + "lifeExpectancy": 52, + "population": 650907559, + "country": "India", + "year": 1977 + }, + { + "income": 17705, + "lifeExpectancy": 75.3, + "population": 113067848, + "country": "Japan", + "year": 1977 + }, + { + "income": 1884, + "lifeExpectancy": 60.7, + "population": 16758826, + "country": "North Korea", + "year": 1977 + }, + { + "income": 4964, + "lifeExpectancy": 65.4, + "population": 35832213, + "country": "South Korea", + "year": 1977 + }, + { + "income": 20623, + "lifeExpectancy": 72.4, + "population": 3122551, + "country": "New Zealand", + "year": 1977 + }, + { + "income": 30319, + "lifeExpectancy": 75.2, + "population": 4041789, + "country": "Norway", + "year": 1977 + }, + { + "income": 11713, + "lifeExpectancy": 70.6, + "population": 34779313, + "country": "Poland", + "year": 1977 + }, + { + "income": 17487, + "lifeExpectancy": 67.8, + "population": 135406786, + "country": "Russia", + "year": 1977 + }, + { + "income": 8863, + "lifeExpectancy": 60.9, + "population": 41020211, + "country": "Turkey", + "year": 1977 + }, + { + "income": 19684, + "lifeExpectancy": 73.1, + "population": 56224944, + "country": "United Kingdom", + "year": 1977 + }, + { + "income": 27990, + "lifeExpectancy": 73.2, + "population": 223090871, + "country": "United States", + "year": 1977 + }, + { + "income": 22763, + "lifeExpectancy": 73.8, + "population": 14368543, + "country": "Australia", + "year": 1978 + }, + { + "income": 25853, + "lifeExpectancy": 74.4, + "population": 23994948, + "country": "Canada", + "year": 1978 + }, + { + "income": 1016, + "lifeExpectancy": 63.7, + "population": 950537317, + "country": "China", + "year": 1978 + }, + { + "income": 12312, + "lifeExpectancy": 74.5, + "population": 9711393, + "country": "Cuba", + "year": 1978 + }, + { + "income": 19608, + "lifeExpectancy": 72.9, + "population": 4749940, + "country": "Finland", + "year": 1978 + }, + { + "income": 22928, + "lifeExpectancy": 74.1, + "population": 53685486, + "country": "France", + "year": 1978 + }, + { + "income": 26444, + "lifeExpectancy": 72.7, + "population": 78426715, + "country": "Germany", + "year": 1978 + }, + { + "income": 22659, + "lifeExpectancy": 76, + "population": 224019, + "country": "Iceland", + "year": 1978 + }, + { + "income": 1305, + "lifeExpectancy": 52.6, + "population": 665936435, + "country": "India", + "year": 1978 + }, + { + "income": 18484, + "lifeExpectancy": 75.7, + "population": 114054587, + "country": "Japan", + "year": 1978 + }, + { + "income": 1809, + "lifeExpectancy": 61.5, + "population": 16953621, + "country": "North Korea", + "year": 1978 + }, + { + "income": 5373, + "lifeExpectancy": 66, + "population": 36356187, + "country": "South Korea", + "year": 1978 + }, + { + "income": 20707, + "lifeExpectancy": 72.7, + "population": 3129098, + "country": "New Zealand", + "year": 1978 + }, + { + "income": 31348, + "lifeExpectancy": 75.3, + "population": 4056280, + "country": "Norway", + "year": 1978 + }, + { + "income": 12033, + "lifeExpectancy": 70.7, + "population": 35100942, + "country": "Poland", + "year": 1978 + }, + { + "income": 17818, + "lifeExpectancy": 67.7, + "population": 136259517, + "country": "Russia", + "year": 1978 + }, + { + "income": 8400, + "lifeExpectancy": 61.4, + "population": 41953105, + "country": "Turkey", + "year": 1978 + }, + { + "income": 20337, + "lifeExpectancy": 73, + "population": 56223974, + "country": "United Kingdom", + "year": 1978 + }, + { + "income": 29281, + "lifeExpectancy": 73.5, + "population": 225239456, + "country": "United States", + "year": 1978 + }, + { + "income": 23697, + "lifeExpectancy": 74.2, + "population": 14532401, + "country": "Australia", + "year": 1979 + }, + { + "income": 26665, + "lifeExpectancy": 74.7, + "population": 24257594, + "country": "Canada", + "year": 1979 + }, + { + "income": 1059, + "lifeExpectancy": 64, + "population": 964155176, + "country": "China", + "year": 1979 + }, + { + "income": 12519, + "lifeExpectancy": 74.6, + "population": 9777287, + "country": "Cuba", + "year": 1979 + }, + { + "income": 20918, + "lifeExpectancy": 73.3, + "population": 4762758, + "country": "Finland", + "year": 1979 + }, + { + "income": 23647, + "lifeExpectancy": 74.3, + "population": 53857610, + "country": "France", + "year": 1979 + }, + { + "income": 27515, + "lifeExpectancy": 72.9, + "population": 78305017, + "country": "Germany", + "year": 1979 + }, + { + "income": 23523, + "lifeExpectancy": 76.4, + "population": 225972, + "country": "Iceland", + "year": 1979 + }, + { + "income": 1211, + "lifeExpectancy": 53.1, + "population": 681358553, + "country": "India", + "year": 1979 + }, + { + "income": 19346, + "lifeExpectancy": 76.1, + "population": 114993274, + "country": "Japan", + "year": 1979 + }, + { + "income": 2015, + "lifeExpectancy": 62.2, + "population": 17151321, + "country": "North Korea", + "year": 1979 + }, + { + "income": 5505, + "lifeExpectancy": 66.5, + "population": 36889651, + "country": "South Korea", + "year": 1979 + }, + { + "income": 21144, + "lifeExpectancy": 73, + "population": 3135453, + "country": "New Zealand", + "year": 1979 + }, + { + "income": 32737, + "lifeExpectancy": 75.5, + "population": 4069626, + "country": "Norway", + "year": 1979 + }, + { + "income": 11703, + "lifeExpectancy": 70.7, + "population": 35435627, + "country": "Poland", + "year": 1979 + }, + { + "income": 17632, + "lifeExpectancy": 67.4, + "population": 137144808, + "country": "Russia", + "year": 1979 + }, + { + "income": 8160, + "lifeExpectancy": 62, + "population": 42912350, + "country": "Turkey", + "year": 1979 + }, + { + "income": 20871, + "lifeExpectancy": 73.1, + "population": 56220089, + "country": "United Kingdom", + "year": 1979 + }, + { + "income": 29951, + "lifeExpectancy": 73.7, + "population": 227411604, + "country": "United States", + "year": 1979 + }, + { + "income": 23872, + "lifeExpectancy": 74.5, + "population": 14708323, + "country": "Australia", + "year": 1980 + }, + { + "income": 26678, + "lifeExpectancy": 75, + "population": 24515788, + "country": "Canada", + "year": 1980 + }, + { + "income": 1073, + "lifeExpectancy": 64.5, + "population": 977837433, + "country": "China", + "year": 1980 + }, + { + "income": 12284, + "lifeExpectancy": 74.6, + "population": 9835177, + "country": "Cuba", + "year": 1980 + }, + { + "income": 21965, + "lifeExpectancy": 73.7, + "population": 4779454, + "country": "Finland", + "year": 1980 + }, + { + "income": 23962, + "lifeExpectancy": 74.5, + "population": 54053224, + "country": "France", + "year": 1980 + }, + { + "income": 27765, + "lifeExpectancy": 73.1, + "population": 78159527, + "country": "Germany", + "year": 1980 + }, + { + "income": 24580, + "lifeExpectancy": 76.7, + "population": 228127, + "country": "Iceland", + "year": 1980 + }, + { + "income": 1270, + "lifeExpectancy": 53.6, + "population": 697229745, + "country": "India", + "year": 1980 + }, + { + "income": 19741, + "lifeExpectancy": 76.3, + "population": 115912104, + "country": "Japan", + "year": 1980 + }, + { + "income": 1887, + "lifeExpectancy": 62.9, + "population": 17372167, + "country": "North Korea", + "year": 1980 + }, + { + "income": 4899, + "lifeExpectancy": 66.9, + "population": 37451085, + "country": "South Korea", + "year": 1980 + }, + { + "income": 21259, + "lifeExpectancy": 73.2, + "population": 3146771, + "country": "New Zealand", + "year": 1980 + }, + { + "income": 34346, + "lifeExpectancy": 75.7, + "population": 4082525, + "country": "Norway", + "year": 1980 + }, + { + "income": 11307, + "lifeExpectancy": 70.6, + "population": 35782855, + "country": "Poland", + "year": 1980 + }, + { + "income": 17557, + "lifeExpectancy": 67.3, + "population": 138063062, + "country": "Russia", + "year": 1980 + }, + { + "income": 7828, + "lifeExpectancy": 62.7, + "population": 43905790, + "country": "Turkey", + "year": 1980 + }, + { + "income": 20417, + "lifeExpectancy": 73.4, + "population": 56221513, + "country": "United Kingdom", + "year": 1980 + }, + { + "income": 29619, + "lifeExpectancy": 73.8, + "population": 229588208, + "country": "United States", + "year": 1980 + }, + { + "income": 24308, + "lifeExpectancy": 74.8, + "population": 14898019, + "country": "Australia", + "year": 1981 + }, + { + "income": 27171, + "lifeExpectancy": 75.4, + "population": 24768525, + "country": "Canada", + "year": 1981 + }, + { + "income": 1099, + "lifeExpectancy": 64.8, + "population": 991553829, + "country": "China", + "year": 1981 + }, + { + "income": 13224, + "lifeExpectancy": 74.6, + "population": 9884219, + "country": "Cuba", + "year": 1981 + }, + { + "income": 22279, + "lifeExpectancy": 74, + "population": 4800899, + "country": "Finland", + "year": 1981 + }, + { + "income": 24186, + "lifeExpectancy": 74.8, + "population": 54279038, + "country": "France", + "year": 1981 + }, + { + "income": 27846, + "lifeExpectancy": 73.4, + "population": 77990369, + "country": "Germany", + "year": 1981 + }, + { + "income": 25312, + "lifeExpectancy": 76.9, + "population": 230525, + "country": "Iceland", + "year": 1981 + }, + { + "income": 1322, + "lifeExpectancy": 54.2, + "population": 713561406, + "country": "India", + "year": 1981 + }, + { + "income": 20413, + "lifeExpectancy": 76.7, + "population": 116821569, + "country": "Japan", + "year": 1981 + }, + { + "income": 2073, + "lifeExpectancy": 63.6, + "population": 17623335, + "country": "North Korea", + "year": 1981 + }, + { + "income": 5159, + "lifeExpectancy": 67.5, + "population": 38046253, + "country": "South Korea", + "year": 1981 + }, + { + "income": 22191, + "lifeExpectancy": 73.5, + "population": 3164965, + "country": "New Zealand", + "year": 1981 + }, + { + "income": 34659, + "lifeExpectancy": 75.8, + "population": 4095177, + "country": "Norway", + "year": 1981 + }, + { + "income": 10610, + "lifeExpectancy": 71, + "population": 36145211, + "country": "Poland", + "year": 1981 + }, + { + "income": 17619, + "lifeExpectancy": 67.5, + "population": 139006739, + "country": "Russia", + "year": 1981 + }, + { + "income": 8518, + "lifeExpectancy": 63.2, + "population": 44936836, + "country": "Turkey", + "year": 1981 + }, + { + "income": 20149, + "lifeExpectancy": 73.8, + "population": 56231020, + "country": "United Kingdom", + "year": 1981 + }, + { + "income": 30070, + "lifeExpectancy": 74, + "population": 231765783, + "country": "United States", + "year": 1981 + }, + { + "income": 23884, + "lifeExpectancy": 75, + "population": 15101227, + "country": "Australia", + "year": 1982 + }, + { + "income": 26031, + "lifeExpectancy": 75.8, + "population": 25017501, + "country": "Canada", + "year": 1982 + }, + { + "income": 1175, + "lifeExpectancy": 65.2, + "population": 1005328574, + "country": "China", + "year": 1982 + }, + { + "income": 13421, + "lifeExpectancy": 74.7, + "population": 9925618, + "country": "Cuba", + "year": 1982 + }, + { + "income": 22873, + "lifeExpectancy": 74.3, + "population": 4826135, + "country": "Finland", + "year": 1982 + }, + { + "income": 24753, + "lifeExpectancy": 75, + "population": 54528408, + "country": "France", + "year": 1982 + }, + { + "income": 27645, + "lifeExpectancy": 73.6, + "population": 77812348, + "country": "Germany", + "year": 1982 + }, + { + "income": 25455, + "lifeExpectancy": 77.1, + "population": 233121, + "country": "Iceland", + "year": 1982 + }, + { + "income": 1334, + "lifeExpectancy": 54.6, + "population": 730303461, + "country": "India", + "year": 1982 + }, + { + "income": 20951, + "lifeExpectancy": 77, + "population": 117708919, + "country": "Japan", + "year": 1982 + }, + { + "income": 2180, + "lifeExpectancy": 64.2, + "population": 17899236, + "country": "North Korea", + "year": 1982 + }, + { + "income": 5483, + "lifeExpectancy": 67.9, + "population": 38665964, + "country": "South Korea", + "year": 1982 + }, + { + "income": 22436, + "lifeExpectancy": 73.7, + "population": 3188664, + "country": "New Zealand", + "year": 1982 + }, + { + "income": 34704, + "lifeExpectancy": 75.9, + "population": 4107655, + "country": "Norway", + "year": 1982 + }, + { + "income": 10420, + "lifeExpectancy": 71.2, + "population": 36517072, + "country": "Poland", + "year": 1982 + }, + { + "income": 17951, + "lifeExpectancy": 67.9, + "population": 139969243, + "country": "Russia", + "year": 1982 + }, + { + "income": 8323, + "lifeExpectancy": 63.7, + "population": 45997940, + "country": "Turkey", + "year": 1982 + }, + { + "income": 20607, + "lifeExpectancy": 74.1, + "population": 56250124, + "country": "United Kingdom", + "year": 1982 + }, + { + "income": 29230, + "lifeExpectancy": 74.4, + "population": 233953874, + "country": "United States", + "year": 1982 + }, + { + "income": 23584, + "lifeExpectancy": 75.3, + "population": 15318254, + "country": "Australia", + "year": 1983 + }, + { + "income": 26525, + "lifeExpectancy": 76.1, + "population": 25272656, + "country": "Canada", + "year": 1983 + }, + { + "income": 1229, + "lifeExpectancy": 65.6, + "population": 1019698475, + "country": "China", + "year": 1983 + }, + { + "income": 13669, + "lifeExpectancy": 74.6, + "population": 9966733, + "country": "Cuba", + "year": 1983 + }, + { + "income": 23351, + "lifeExpectancy": 74.5, + "population": 4853196, + "country": "Finland", + "year": 1983 + }, + { + "income": 25188, + "lifeExpectancy": 75.2, + "population": 54799049, + "country": "France", + "year": 1983 + }, + { + "income": 28227, + "lifeExpectancy": 74, + "population": 77657451, + "country": "Germany", + "year": 1983 + }, + { + "income": 24594, + "lifeExpectancy": 77.3, + "population": 235860, + "country": "Iceland", + "year": 1983 + }, + { + "income": 1412, + "lifeExpectancy": 55.1, + "population": 747374856, + "country": "India", + "year": 1983 + }, + { + "income": 21446, + "lifeExpectancy": 77.1, + "population": 118552097, + "country": "Japan", + "year": 1983 + }, + { + "income": 2138, + "lifeExpectancy": 64.8, + "population": 18191881, + "country": "North Korea", + "year": 1983 + }, + { + "income": 6078, + "lifeExpectancy": 68.4, + "population": 39295418, + "country": "South Korea", + "year": 1983 + }, + { + "income": 22808, + "lifeExpectancy": 73.9, + "population": 3215826, + "country": "New Zealand", + "year": 1983 + }, + { + "income": 35932, + "lifeExpectancy": 76, + "population": 4120386, + "country": "Norway", + "year": 1983 + }, + { + "income": 10835, + "lifeExpectancy": 71.1, + "population": 36879742, + "country": "Poland", + "year": 1983 + }, + { + "income": 18417, + "lifeExpectancy": 67.7, + "population": 140951400, + "country": "Russia", + "year": 1983 + }, + { + "income": 8535, + "lifeExpectancy": 64.2, + "population": 47072603, + "country": "Turkey", + "year": 1983 + }, + { + "income": 21357, + "lifeExpectancy": 74.3, + "population": 56283959, + "country": "United Kingdom", + "year": 1983 + }, + { + "income": 30185, + "lifeExpectancy": 74.6, + "population": 236161961, + "country": "United States", + "year": 1983 + }, + { + "income": 24934, + "lifeExpectancy": 75.5, + "population": 15548591, + "country": "Australia", + "year": 1984 + }, + { + "income": 27781, + "lifeExpectancy": 76.4, + "population": 25546736, + "country": "Canada", + "year": 1984 + }, + { + "income": 1456, + "lifeExpectancy": 66, + "population": 1035328572, + "country": "China", + "year": 1984 + }, + { + "income": 14019, + "lifeExpectancy": 74.4, + "population": 10017061, + "country": "Cuba", + "year": 1984 + }, + { + "income": 23926, + "lifeExpectancy": 74.6, + "population": 4879222, + "country": "Finland", + "year": 1984 + }, + { + "income": 25497, + "lifeExpectancy": 75.5, + "population": 55084677, + "country": "France", + "year": 1984 + }, + { + "income": 29135, + "lifeExpectancy": 74.4, + "population": 77566776, + "country": "Germany", + "year": 1984 + }, + { + "income": 25356, + "lifeExpectancy": 77.4, + "population": 238647, + "country": "Iceland", + "year": 1984 + }, + { + "income": 1436, + "lifeExpectancy": 55.5, + "population": 764664278, + "country": "India", + "year": 1984 + }, + { + "income": 22268, + "lifeExpectancy": 77.4, + "population": 119318921, + "country": "Japan", + "year": 1984 + }, + { + "income": 2205, + "lifeExpectancy": 65.4, + "population": 18487997, + "country": "North Korea", + "year": 1984 + }, + { + "income": 6612, + "lifeExpectancy": 69, + "population": 39912900, + "country": "South Korea", + "year": 1984 + }, + { + "income": 23698, + "lifeExpectancy": 74.1, + "population": 3243078, + "country": "New Zealand", + "year": 1984 + }, + { + "income": 38057, + "lifeExpectancy": 76.1, + "population": 4133833, + "country": "Norway", + "year": 1984 + }, + { + "income": 11138, + "lifeExpectancy": 70.8, + "population": 37208529, + "country": "Poland", + "year": 1984 + }, + { + "income": 18527, + "lifeExpectancy": 67.4, + "population": 141955200, + "country": "Russia", + "year": 1984 + }, + { + "income": 8798, + "lifeExpectancy": 64.8, + "population": 48138191, + "country": "Turkey", + "year": 1984 + }, + { + "income": 21904, + "lifeExpectancy": 74.6, + "population": 56337848, + "country": "United Kingdom", + "year": 1984 + }, + { + "income": 32110, + "lifeExpectancy": 74.8, + "population": 238404223, + "country": "United States", + "year": 1984 + }, + { + "income": 25875, + "lifeExpectancy": 75.7, + "population": 15791043, + "country": "Australia", + "year": 1985 + }, + { + "income": 29016, + "lifeExpectancy": 76.5, + "population": 25848173, + "country": "Canada", + "year": 1985 + }, + { + "income": 1557, + "lifeExpectancy": 66.4, + "population": 1052622410, + "country": "China", + "year": 1985 + }, + { + "income": 14135, + "lifeExpectancy": 74.3, + "population": 10082990, + "country": "Cuba", + "year": 1985 + }, + { + "income": 24630, + "lifeExpectancy": 74.7, + "population": 4902219, + "country": "Finland", + "year": 1985 + }, + { + "income": 25917, + "lifeExpectancy": 75.7, + "population": 55379923, + "country": "France", + "year": 1985 + }, + { + "income": 29851, + "lifeExpectancy": 74.6, + "population": 77570009, + "country": "Germany", + "year": 1985 + }, + { + "income": 25997, + "lifeExpectancy": 77.6, + "population": 241411, + "country": "Iceland", + "year": 1985 + }, + { + "income": 1462, + "lifeExpectancy": 55.9, + "population": 782085127, + "country": "India", + "year": 1985 + }, + { + "income": 23554, + "lifeExpectancy": 77.8, + "population": 119988663, + "country": "Japan", + "year": 1985 + }, + { + "income": 2121, + "lifeExpectancy": 65.9, + "population": 18778101, + "country": "North Korea", + "year": 1985 + }, + { + "income": 6970, + "lifeExpectancy": 69.5, + "population": 40501917, + "country": "South Korea", + "year": 1985 + }, + { + "income": 23750, + "lifeExpectancy": 74.2, + "population": 3268192, + "country": "New Zealand", + "year": 1985 + }, + { + "income": 40031, + "lifeExpectancy": 76.1, + "population": 4148355, + "country": "Norway", + "year": 1985 + }, + { + "income": 11159, + "lifeExpectancy": 70.7, + "population": 37486105, + "country": "Poland", + "year": 1985 + }, + { + "income": 18576, + "lifeExpectancy": 68.2, + "population": 142975753, + "country": "Russia", + "year": 1985 + }, + { + "income": 9163, + "lifeExpectancy": 65.2, + "population": 49178079, + "country": "Turkey", + "year": 1985 + }, + { + "income": 22648, + "lifeExpectancy": 74.7, + "population": 56415196, + "country": "United Kingdom", + "year": 1985 + }, + { + "income": 33065, + "lifeExpectancy": 74.8, + "population": 240691557, + "country": "United States", + "year": 1985 + }, + { + "income": 26057, + "lifeExpectancy": 76, + "population": 16047026, + "country": "Australia", + "year": 1986 + }, + { + "income": 29482, + "lifeExpectancy": 76.6, + "population": 26181342, + "country": "Canada", + "year": 1986 + }, + { + "income": 1604, + "lifeExpectancy": 66.8, + "population": 1071834975, + "country": "China", + "year": 1986 + }, + { + "income": 14025, + "lifeExpectancy": 74.5, + "population": 10167998, + "country": "Cuba", + "year": 1986 + }, + { + "income": 25133, + "lifeExpectancy": 74.7, + "population": 4921293, + "country": "Finland", + "year": 1986 + }, + { + "income": 26453, + "lifeExpectancy": 76, + "population": 55686610, + "country": "France", + "year": 1986 + }, + { + "income": 30514, + "lifeExpectancy": 74.8, + "population": 77671877, + "country": "Germany", + "year": 1986 + }, + { + "income": 27379, + "lifeExpectancy": 77.6, + "population": 244145, + "country": "Iceland", + "year": 1986 + }, + { + "income": 1493, + "lifeExpectancy": 56.3, + "population": 799607235, + "country": "India", + "year": 1986 + }, + { + "income": 24116, + "lifeExpectancy": 78.1, + "population": 120551455, + "country": "Japan", + "year": 1986 + }, + { + "income": 2106, + "lifeExpectancy": 66.4, + "population": 19058988, + "country": "North Korea", + "year": 1986 + }, + { + "income": 7996, + "lifeExpectancy": 70, + "population": 41059473, + "country": "South Korea", + "year": 1986 + }, + { + "income": 24180, + "lifeExpectancy": 74.2, + "population": 3290132, + "country": "New Zealand", + "year": 1986 + }, + { + "income": 41450, + "lifeExpectancy": 76.1, + "population": 4164166, + "country": "Norway", + "year": 1986 + }, + { + "income": 11429, + "lifeExpectancy": 70.9, + "population": 37703942, + "country": "Poland", + "year": 1986 + }, + { + "income": 19221, + "lifeExpectancy": 69.8, + "population": 144016095, + "country": "Russia", + "year": 1986 + }, + { + "income": 9556, + "lifeExpectancy": 65.7, + "population": 50187091, + "country": "Turkey", + "year": 1986 + }, + { + "income": 23516, + "lifeExpectancy": 74.9, + "population": 56519444, + "country": "United Kingdom", + "year": 1986 + }, + { + "income": 33899, + "lifeExpectancy": 74.9, + "population": 243032017, + "country": "United States", + "year": 1986 + }, + { + "income": 26969, + "lifeExpectancy": 76.2, + "population": 16314778, + "country": "Australia", + "year": 1987 + }, + { + "income": 30288, + "lifeExpectancy": 76.8, + "population": 26541981, + "country": "Canada", + "year": 1987 + }, + { + "income": 1652, + "lifeExpectancy": 67.2, + "population": 1092646739, + "country": "China", + "year": 1987 + }, + { + "income": 13805, + "lifeExpectancy": 74.6, + "population": 10269276, + "country": "Cuba", + "year": 1987 + }, + { + "income": 26086, + "lifeExpectancy": 74.7, + "population": 4937259, + "country": "Finland", + "year": 1987 + }, + { + "income": 26963, + "lifeExpectancy": 76.4, + "population": 56005443, + "country": "France", + "year": 1987 + }, + { + "income": 30986, + "lifeExpectancy": 75.1, + "population": 77864381, + "country": "Germany", + "year": 1987 + }, + { + "income": 29335, + "lifeExpectancy": 77.7, + "population": 246867, + "country": "Iceland", + "year": 1987 + }, + { + "income": 1525, + "lifeExpectancy": 56.6, + "population": 817232241, + "country": "India", + "year": 1987 + }, + { + "income": 25018, + "lifeExpectancy": 78.4, + "population": 121021830, + "country": "Japan", + "year": 1987 + }, + { + "income": 2142, + "lifeExpectancy": 66.8, + "population": 19334550, + "country": "North Korea", + "year": 1987 + }, + { + "income": 9096, + "lifeExpectancy": 70.4, + "population": 41588374, + "country": "South Korea", + "year": 1987 + }, + { + "income": 24222, + "lifeExpectancy": 74.4, + "population": 3310408, + "country": "New Zealand", + "year": 1987 + }, + { + "income": 42225, + "lifeExpectancy": 76.1, + "population": 4181326, + "country": "Norway", + "year": 1987 + }, + { + "income": 11207, + "lifeExpectancy": 71.1, + "population": 37867481, + "country": "Poland", + "year": 1987 + }, + { + "income": 19355, + "lifeExpectancy": 70.1, + "population": 145056221, + "country": "Russia", + "year": 1987 + }, + { + "income": 10351, + "lifeExpectancy": 66.1, + "population": 51168841, + "country": "Turkey", + "year": 1987 + }, + { + "income": 24551, + "lifeExpectancy": 75.1, + "population": 56649375, + "country": "United Kingdom", + "year": 1987 + }, + { + "income": 34787, + "lifeExpectancy": 75, + "population": 245425409, + "country": "United States", + "year": 1987 + }, + { + "income": 27757, + "lifeExpectancy": 76.4, + "population": 16585905, + "country": "Australia", + "year": 1988 + }, + { + "income": 31356, + "lifeExpectancy": 77.1, + "population": 26919036, + "country": "Canada", + "year": 1988 + }, + { + "income": 1597, + "lifeExpectancy": 67.5, + "population": 1114162025, + "country": "China", + "year": 1988 + }, + { + "income": 13925, + "lifeExpectancy": 74.6, + "population": 10379080, + "country": "Cuba", + "year": 1988 + }, + { + "income": 27282, + "lifeExpectancy": 74.8, + "population": 4951886, + "country": "Finland", + "year": 1988 + }, + { + "income": 28101, + "lifeExpectancy": 76.6, + "population": 56328053, + "country": "France", + "year": 1988 + }, + { + "income": 31906, + "lifeExpectancy": 75.3, + "population": 78146938, + "country": "Germany", + "year": 1988 + }, + { + "income": 28780, + "lifeExpectancy": 77.8, + "population": 249563, + "country": "Iceland", + "year": 1988 + }, + { + "income": 1649, + "lifeExpectancy": 57, + "population": 834944397, + "country": "India", + "year": 1988 + }, + { + "income": 26724, + "lifeExpectancy": 78.6, + "population": 121432942, + "country": "Japan", + "year": 1988 + }, + { + "income": 2198, + "lifeExpectancy": 67.2, + "population": 19610512, + "country": "North Korea", + "year": 1988 + }, + { + "income": 10233, + "lifeExpectancy": 71, + "population": 42085050, + "country": "South Korea", + "year": 1988 + }, + { + "income": 24060, + "lifeExpectancy": 74.6, + "population": 3332297, + "country": "New Zealand", + "year": 1988 + }, + { + "income": 42101, + "lifeExpectancy": 76.3, + "population": 4199817, + "country": "Norway", + "year": 1988 + }, + { + "income": 11418, + "lifeExpectancy": 71.2, + "population": 37990683, + "country": "Poland", + "year": 1988 + }, + { + "income": 19660, + "lifeExpectancy": 70, + "population": 146040116, + "country": "Russia", + "year": 1988 + }, + { + "income": 10421, + "lifeExpectancy": 66.5, + "population": 52126497, + "country": "Turkey", + "year": 1988 + }, + { + "income": 25750, + "lifeExpectancy": 75.3, + "population": 56797704, + "country": "United Kingdom", + "year": 1988 + }, + { + "income": 35929, + "lifeExpectancy": 75, + "population": 247865202, + "country": "United States", + "year": 1988 + }, + { + "income": 28556, + "lifeExpectancy": 76.6, + "population": 16849253, + "country": "Australia", + "year": 1989 + }, + { + "income": 31550, + "lifeExpectancy": 77.2, + "population": 27296517, + "country": "Canada", + "year": 1989 + }, + { + "income": 1474, + "lifeExpectancy": 67.7, + "population": 1135128009, + "country": "China", + "year": 1989 + }, + { + "income": 13829, + "lifeExpectancy": 74.7, + "population": 10486110, + "country": "Cuba", + "year": 1989 + }, + { + "income": 28735, + "lifeExpectancy": 74.8, + "population": 4967776, + "country": "Finland", + "year": 1989 + }, + { + "income": 28942, + "lifeExpectancy": 76.9, + "population": 56643349, + "country": "France", + "year": 1989 + }, + { + "income": 32706, + "lifeExpectancy": 75.4, + "population": 78514790, + "country": "Germany", + "year": 1989 + }, + { + "income": 28629, + "lifeExpectancy": 78, + "population": 252219, + "country": "Iceland", + "year": 1989 + }, + { + "income": 1723, + "lifeExpectancy": 57.3, + "population": 852736160, + "country": "India", + "year": 1989 + }, + { + "income": 28077, + "lifeExpectancy": 78.9, + "population": 121831143, + "country": "Japan", + "year": 1989 + }, + { + "income": 2257, + "lifeExpectancy": 67.6, + "population": 19895390, + "country": "North Korea", + "year": 1989 + }, + { + "income": 11002, + "lifeExpectancy": 71.5, + "population": 42546704, + "country": "South Korea", + "year": 1989 + }, + { + "income": 24206, + "lifeExpectancy": 75, + "population": 3360350, + "country": "New Zealand", + "year": 1989 + }, + { + "income": 42449, + "lifeExpectancy": 76.5, + "population": 4219532, + "country": "Norway", + "year": 1989 + }, + { + "income": 11212, + "lifeExpectancy": 71.1, + "population": 38094812, + "country": "Poland", + "year": 1989 + }, + { + "income": 19906, + "lifeExpectancy": 69.8, + "population": 146895053, + "country": "Russia", + "year": 1989 + }, + { + "income": 10103, + "lifeExpectancy": 66.9, + "population": 53066569, + "country": "Turkey", + "year": 1989 + }, + { + "income": 26279, + "lifeExpectancy": 75.5, + "population": 56953861, + "country": "United Kingdom", + "year": 1989 + }, + { + "income": 36830, + "lifeExpectancy": 75.2, + "population": 250340795, + "country": "United States", + "year": 1989 + }, + { + "income": 28604, + "lifeExpectancy": 77, + "population": 17096869, + "country": "Australia", + "year": 1990 + }, + { + "income": 31163, + "lifeExpectancy": 77.4, + "population": 27662440, + "country": "Canada", + "year": 1990 + }, + { + "income": 1516, + "lifeExpectancy": 68, + "population": 1154605773, + "country": "China", + "year": 1990 + }, + { + "income": 13670, + "lifeExpectancy": 74.7, + "population": 10582082, + "country": "Cuba", + "year": 1990 + }, + { + "income": 28599, + "lifeExpectancy": 75, + "population": 4986705, + "country": "Finland", + "year": 1990 + }, + { + "income": 29476, + "lifeExpectancy": 77.1, + "population": 56943299, + "country": "France", + "year": 1990 + }, + { + "income": 31476, + "lifeExpectancy": 75.4, + "population": 78958237, + "country": "Germany", + "year": 1990 + }, + { + "income": 28666, + "lifeExpectancy": 78.1, + "population": 254830, + "country": "Iceland", + "year": 1990 + }, + { + "income": 1777, + "lifeExpectancy": 57.7, + "population": 870601776, + "country": "India", + "year": 1990 + }, + { + "income": 29550, + "lifeExpectancy": 79.1, + "population": 122249285, + "country": "Japan", + "year": 1990 + }, + { + "income": 2076, + "lifeExpectancy": 67.9, + "population": 20194354, + "country": "North Korea", + "year": 1990 + }, + { + "income": 12087, + "lifeExpectancy": 72, + "population": 42972254, + "country": "South Korea", + "year": 1990 + }, + { + "income": 24021, + "lifeExpectancy": 75.4, + "population": 3397534, + "country": "New Zealand", + "year": 1990 + }, + { + "income": 43296, + "lifeExpectancy": 76.8, + "population": 4240375, + "country": "Norway", + "year": 1990 + }, + { + "income": 10088, + "lifeExpectancy": 70.8, + "population": 38195258, + "country": "Poland", + "year": 1990 + }, + { + "income": 19349, + "lifeExpectancy": 69.6, + "population": 147568552, + "country": "Russia", + "year": 1990 + }, + { + "income": 10670, + "lifeExpectancy": 67.3, + "population": 53994605, + "country": "Turkey", + "year": 1990 + }, + { + "income": 26424, + "lifeExpectancy": 75.7, + "population": 57110117, + "country": "United Kingdom", + "year": 1990 + }, + { + "income": 37062, + "lifeExpectancy": 75.4, + "population": 252847810, + "country": "United States", + "year": 1990 + }, + { + "income": 28122, + "lifeExpectancy": 77.4, + "population": 17325818, + "country": "Australia", + "year": 1991 + }, + { + "income": 30090, + "lifeExpectancy": 77.6, + "population": 28014102, + "country": "Canada", + "year": 1991 + }, + { + "income": 1634, + "lifeExpectancy": 68.3, + "population": 1172327831, + "country": "China", + "year": 1991 + }, + { + "income": 12113, + "lifeExpectancy": 74.7, + "population": 10664577, + "country": "Cuba", + "year": 1991 + }, + { + "income": 26761, + "lifeExpectancy": 75.4, + "population": 5009381, + "country": "Finland", + "year": 1991 + }, + { + "income": 29707, + "lifeExpectancy": 77.3, + "population": 57226524, + "country": "France", + "year": 1991 + }, + { + "income": 32844, + "lifeExpectancy": 75.6, + "population": 79483739, + "country": "Germany", + "year": 1991 + }, + { + "income": 28272, + "lifeExpectancy": 78.3, + "population": 257387, + "country": "Iceland", + "year": 1991 + }, + { + "income": 1760, + "lifeExpectancy": 58, + "population": 888513869, + "country": "India", + "year": 1991 + }, + { + "income": 30437, + "lifeExpectancy": 79.2, + "population": 122702527, + "country": "Japan", + "year": 1991 + }, + { + "income": 1973, + "lifeExpectancy": 68.2, + "population": 20510208, + "country": "North Korea", + "year": 1991 + }, + { + "income": 13130, + "lifeExpectancy": 72.5, + "population": 43358716, + "country": "South Korea", + "year": 1991 + }, + { + "income": 22636, + "lifeExpectancy": 75.8, + "population": 3445596, + "country": "New Zealand", + "year": 1991 + }, + { + "income": 44419, + "lifeExpectancy": 77.1, + "population": 4262367, + "country": "Norway", + "year": 1991 + }, + { + "income": 9347, + "lifeExpectancy": 70.7, + "population": 38297549, + "country": "Poland", + "year": 1991 + }, + { + "income": 18332, + "lifeExpectancy": 69.4, + "population": 148040354, + "country": "Russia", + "year": 1991 + }, + { + "income": 10568, + "lifeExpectancy": 67.6, + "population": 54909508, + "country": "Turkey", + "year": 1991 + }, + { + "income": 26017, + "lifeExpectancy": 76, + "population": 57264600, + "country": "United Kingdom", + "year": 1991 + }, + { + "income": 36543, + "lifeExpectancy": 75.6, + "population": 255367160, + "country": "United States", + "year": 1991 + }, + { + "income": 27895, + "lifeExpectancy": 77.7, + "population": 17538387, + "country": "Australia", + "year": 1992 + }, + { + "income": 29977, + "lifeExpectancy": 77.7, + "population": 28353843, + "country": "Canada", + "year": 1992 + }, + { + "income": 1845, + "lifeExpectancy": 68.6, + "population": 1188450231, + "country": "China", + "year": 1992 + }, + { + "income": 10637, + "lifeExpectancy": 74.8, + "population": 10735775, + "country": "Cuba", + "year": 1992 + }, + { + "income": 25726, + "lifeExpectancy": 75.8, + "population": 5034898, + "country": "Finland", + "year": 1992 + }, + { + "income": 30033, + "lifeExpectancy": 77.5, + "population": 57495252, + "country": "France", + "year": 1992 + }, + { + "income": 33221, + "lifeExpectancy": 75.9, + "population": 80075940, + "country": "Germany", + "year": 1992 + }, + { + "income": 26977, + "lifeExpectancy": 78.5, + "population": 259895, + "country": "Iceland", + "year": 1992 + }, + { + "income": 1821, + "lifeExpectancy": 58.3, + "population": 906461358, + "country": "India", + "year": 1992 + }, + { + "income": 30610, + "lifeExpectancy": 79.4, + "population": 123180357, + "country": "Japan", + "year": 1992 + }, + { + "income": 1745, + "lifeExpectancy": 68.4, + "population": 20838082, + "country": "North Korea", + "year": 1992 + }, + { + "income": 13744, + "lifeExpectancy": 73, + "population": 43708170, + "country": "South Korea", + "year": 1992 + }, + { + "income": 22651, + "lifeExpectancy": 76.1, + "population": 3502765, + "country": "New Zealand", + "year": 1992 + }, + { + "income": 45742, + "lifeExpectancy": 77.3, + "population": 4285504, + "country": "Norway", + "year": 1992 + }, + { + "income": 9553, + "lifeExpectancy": 71.1, + "population": 38396826, + "country": "Poland", + "year": 1992 + }, + { + "income": 15661, + "lifeExpectancy": 68, + "population": 148322473, + "country": "Russia", + "year": 1992 + }, + { + "income": 10920, + "lifeExpectancy": 67.9, + "population": 55811134, + "country": "Turkey", + "year": 1992 + }, + { + "income": 26062, + "lifeExpectancy": 76.3, + "population": 57419469, + "country": "United Kingdom", + "year": 1992 + }, + { + "income": 37321, + "lifeExpectancy": 75.8, + "population": 257908206, + "country": "United States", + "year": 1992 + }, + { + "income": 28732, + "lifeExpectancy": 78, + "population": 17738428, + "country": "Australia", + "year": 1993 + }, + { + "income": 30424, + "lifeExpectancy": 77.8, + "population": 28680921, + "country": "Canada", + "year": 1993 + }, + { + "income": 2078, + "lifeExpectancy": 68.9, + "population": 1202982955, + "country": "China", + "year": 1993 + }, + { + "income": 9001, + "lifeExpectancy": 74.8, + "population": 10797556, + "country": "Cuba", + "year": 1993 + }, + { + "income": 25414, + "lifeExpectancy": 76.2, + "population": 5061465, + "country": "Finland", + "year": 1993 + }, + { + "income": 29719, + "lifeExpectancy": 77.7, + "population": 57749881, + "country": "France", + "year": 1993 + }, + { + "income": 32689, + "lifeExpectancy": 76.2, + "population": 80675999, + "country": "Germany", + "year": 1993 + }, + { + "income": 27055, + "lifeExpectancy": 78.7, + "population": 262383, + "country": "Iceland", + "year": 1993 + }, + { + "income": 1871, + "lifeExpectancy": 58.6, + "population": 924475633, + "country": "India", + "year": 1993 + }, + { + "income": 30587, + "lifeExpectancy": 79.6, + "population": 123658854, + "country": "Japan", + "year": 1993 + }, + { + "income": 1619, + "lifeExpectancy": 68.6, + "population": 21166230, + "country": "North Korea", + "year": 1993 + }, + { + "income": 14466, + "lifeExpectancy": 73.5, + "population": 44031222, + "country": "South Korea", + "year": 1993 + }, + { + "income": 23830, + "lifeExpectancy": 76.5, + "population": 3564227, + "country": "New Zealand", + "year": 1993 + }, + { + "income": 46765, + "lifeExpectancy": 77.6, + "population": 4309606, + "country": "Norway", + "year": 1993 + }, + { + "income": 9884, + "lifeExpectancy": 71.7, + "population": 38485892, + "country": "Poland", + "year": 1993 + }, + { + "income": 14320, + "lifeExpectancy": 65.2, + "population": 148435811, + "country": "Russia", + "year": 1993 + }, + { + "income": 11569, + "lifeExpectancy": 68.3, + "population": 56707454, + "country": "Turkey", + "year": 1993 + }, + { + "income": 26688, + "lifeExpectancy": 76.5, + "population": 57575969, + "country": "United Kingdom", + "year": 1993 + }, + { + "income": 37844, + "lifeExpectancy": 75.7, + "population": 260527420, + "country": "United States", + "year": 1993 + }, + { + "income": 29580, + "lifeExpectancy": 78.2, + "population": 17932214, + "country": "Australia", + "year": 1994 + }, + { + "income": 31505, + "lifeExpectancy": 77.9, + "population": 28995822, + "country": "Canada", + "year": 1994 + }, + { + "income": 2323, + "lifeExpectancy": 69.3, + "population": 1216067023, + "country": "China", + "year": 1994 + }, + { + "income": 9018, + "lifeExpectancy": 74.8, + "population": 10853435, + "country": "Cuba", + "year": 1994 + }, + { + "income": 26301, + "lifeExpectancy": 76.5, + "population": 5086499, + "country": "Finland", + "year": 1994 + }, + { + "income": 30303, + "lifeExpectancy": 77.9, + "population": 57991973, + "country": "France", + "year": 1994 + }, + { + "income": 33375, + "lifeExpectancy": 76.4, + "population": 81206786, + "country": "Germany", + "year": 1994 + }, + { + "income": 27789, + "lifeExpectancy": 78.8, + "population": 264893, + "country": "Iceland", + "year": 1994 + }, + { + "income": 1959, + "lifeExpectancy": 59, + "population": 942604211, + "country": "India", + "year": 1994 + }, + { + "income": 30746, + "lifeExpectancy": 79.8, + "population": 124101546, + "country": "Japan", + "year": 1994 + }, + { + "income": 1605, + "lifeExpectancy": 68.8, + "population": 21478544, + "country": "North Korea", + "year": 1994 + }, + { + "income": 15577, + "lifeExpectancy": 73.8, + "population": 44342530, + "country": "South Korea", + "year": 1994 + }, + { + "income": 24716, + "lifeExpectancy": 76.7, + "population": 3623181, + "country": "New Zealand", + "year": 1994 + }, + { + "income": 48850, + "lifeExpectancy": 77.8, + "population": 4334434, + "country": "Norway", + "year": 1994 + }, + { + "income": 10386, + "lifeExpectancy": 71.8, + "population": 38553355, + "country": "Poland", + "year": 1994 + }, + { + "income": 12535, + "lifeExpectancy": 63.6, + "population": 148416292, + "country": "Russia", + "year": 1994 + }, + { + "income": 10857, + "lifeExpectancy": 68.6, + "population": 57608769, + "country": "Turkey", + "year": 1994 + }, + { + "income": 27691, + "lifeExpectancy": 76.7, + "population": 57736667, + "country": "United Kingdom", + "year": 1994 + }, + { + "income": 38892, + "lifeExpectancy": 75.8, + "population": 263301323, + "country": "United States", + "year": 1994 + }, + { + "income": 30359, + "lifeExpectancy": 78.4, + "population": 18124770, + "country": "Australia", + "year": 1995 + }, + { + "income": 32101, + "lifeExpectancy": 78, + "population": 29299478, + "country": "Canada", + "year": 1995 + }, + { + "income": 2551, + "lifeExpectancy": 69.6, + "population": 1227841281, + "country": "China", + "year": 1995 + }, + { + "income": 9195, + "lifeExpectancy": 74.9, + "population": 10906048, + "country": "Cuba", + "year": 1995 + }, + { + "income": 27303, + "lifeExpectancy": 76.7, + "population": 5108176, + "country": "Finland", + "year": 1995 + }, + { + "income": 30823, + "lifeExpectancy": 78.1, + "population": 58224051, + "country": "France", + "year": 1995 + }, + { + "income": 33843, + "lifeExpectancy": 76.6, + "population": 81612900, + "country": "Germany", + "year": 1995 + }, + { + "income": 27671, + "lifeExpectancy": 78.9, + "population": 267454, + "country": "Iceland", + "year": 1995 + }, + { + "income": 2069, + "lifeExpectancy": 59.3, + "population": 960874982, + "country": "India", + "year": 1995 + }, + { + "income": 31224, + "lifeExpectancy": 79.9, + "population": 124483305, + "country": "Japan", + "year": 1995 + }, + { + "income": 1442, + "lifeExpectancy": 62.4, + "population": 21763670, + "country": "North Korea", + "year": 1995 + }, + { + "income": 16798, + "lifeExpectancy": 74.2, + "population": 44652994, + "country": "South Korea", + "year": 1995 + }, + { + "income": 25476, + "lifeExpectancy": 76.9, + "population": 3674886, + "country": "New Zealand", + "year": 1995 + }, + { + "income": 50616, + "lifeExpectancy": 78, + "population": 4359788, + "country": "Norway", + "year": 1995 + }, + { + "income": 11093, + "lifeExpectancy": 72, + "population": 38591860, + "country": "Poland", + "year": 1995 + }, + { + "income": 12013, + "lifeExpectancy": 64.2, + "population": 148293265, + "country": "Russia", + "year": 1995 + }, + { + "income": 11530, + "lifeExpectancy": 69, + "population": 58522320, + "country": "Turkey", + "year": 1995 + }, + { + "income": 28317, + "lifeExpectancy": 76.8, + "population": 57903790, + "country": "United Kingdom", + "year": 1995 + }, + { + "income": 39476, + "lifeExpectancy": 75.9, + "population": 266275528, + "country": "United States", + "year": 1995 + }, + { + "income": 31145, + "lifeExpectancy": 78.6, + "population": 18318340, + "country": "Australia", + "year": 1996 + }, + { + "income": 32290, + "lifeExpectancy": 78.3, + "population": 29590952, + "country": "Canada", + "year": 1996 + }, + { + "income": 2775, + "lifeExpectancy": 69.9, + "population": 1238234851, + "country": "China", + "year": 1996 + }, + { + "income": 9871, + "lifeExpectancy": 75.2, + "population": 10955372, + "country": "Cuba", + "year": 1996 + }, + { + "income": 28210, + "lifeExpectancy": 76.9, + "population": 5126021, + "country": "Finland", + "year": 1996 + }, + { + "income": 31141, + "lifeExpectancy": 78.4, + "population": 58443318, + "country": "France", + "year": 1996 + }, + { + "income": 34008, + "lifeExpectancy": 76.9, + "population": 81870772, + "country": "Germany", + "year": 1996 + }, + { + "income": 28839, + "lifeExpectancy": 79.1, + "population": 270089, + "country": "Iceland", + "year": 1996 + }, + { + "income": 2186, + "lifeExpectancy": 59.6, + "population": 979290432, + "country": "India", + "year": 1996 + }, + { + "income": 31958, + "lifeExpectancy": 80.3, + "population": 124794817, + "country": "Japan", + "year": 1996 + }, + { + "income": 1393, + "lifeExpectancy": 62.6, + "population": 22016510, + "country": "North Korea", + "year": 1996 + }, + { + "income": 17835, + "lifeExpectancy": 74.7, + "population": 44967346, + "country": "South Korea", + "year": 1996 + }, + { + "income": 25984, + "lifeExpectancy": 77.1, + "population": 3717239, + "country": "New Zealand", + "year": 1996 + }, + { + "income": 52892, + "lifeExpectancy": 78.1, + "population": 4385951, + "country": "Norway", + "year": 1996 + }, + { + "income": 11776, + "lifeExpectancy": 72.4, + "population": 38599825, + "country": "Poland", + "year": 1996 + }, + { + "income": 11597, + "lifeExpectancy": 65.9, + "population": 148078355, + "country": "Russia", + "year": 1996 + }, + { + "income": 12190, + "lifeExpectancy": 69.4, + "population": 59451488, + "country": "Turkey", + "year": 1996 + }, + { + "income": 28998, + "lifeExpectancy": 76.9, + "population": 58079322, + "country": "United Kingdom", + "year": 1996 + }, + { + "income": 40501, + "lifeExpectancy": 76.3, + "population": 269483224, + "country": "United States", + "year": 1996 + }, + { + "income": 32013, + "lifeExpectancy": 78.9, + "population": 18512971, + "country": "Australia", + "year": 1997 + }, + { + "income": 33310, + "lifeExpectancy": 78.7, + "population": 29871092, + "country": "Canada", + "year": 1997 + }, + { + "income": 3000, + "lifeExpectancy": 70.3, + "population": 1247259143, + "country": "China", + "year": 1997 + }, + { + "income": 10106, + "lifeExpectancy": 75.3, + "population": 11000431, + "country": "Cuba", + "year": 1997 + }, + { + "income": 29884, + "lifeExpectancy": 77.1, + "population": 5140755, + "country": "Finland", + "year": 1997 + }, + { + "income": 31756, + "lifeExpectancy": 78.7, + "population": 58652709, + "country": "France", + "year": 1997 + }, + { + "income": 34578, + "lifeExpectancy": 77.3, + "population": 81993831, + "country": "Germany", + "year": 1997 + }, + { + "income": 30009, + "lifeExpectancy": 79.3, + "population": 272798, + "country": "Iceland", + "year": 1997 + }, + { + "income": 2235, + "lifeExpectancy": 60, + "population": 997817250, + "country": "India", + "year": 1997 + }, + { + "income": 32391, + "lifeExpectancy": 80.6, + "population": 125048424, + "country": "Japan", + "year": 1997 + }, + { + "income": 1230, + "lifeExpectancy": 62.7, + "population": 22240826, + "country": "North Korea", + "year": 1997 + }, + { + "income": 18687, + "lifeExpectancy": 75.1, + "population": 45283939, + "country": "South Korea", + "year": 1997 + }, + { + "income": 26152, + "lifeExpectancy": 77.4, + "population": 3752102, + "country": "New Zealand", + "year": 1997 + }, + { + "income": 55386, + "lifeExpectancy": 78.2, + "population": 4412958, + "country": "Norway", + "year": 1997 + }, + { + "income": 12602, + "lifeExpectancy": 72.7, + "population": 38583109, + "country": "Poland", + "year": 1997 + }, + { + "income": 11779, + "lifeExpectancy": 67.4, + "population": 147772805, + "country": "Russia", + "year": 1997 + }, + { + "income": 12911, + "lifeExpectancy": 69.8, + "population": 60394104, + "country": "Turkey", + "year": 1997 + }, + { + "income": 29662, + "lifeExpectancy": 77.2, + "population": 58263858, + "country": "United Kingdom", + "year": 1997 + }, + { + "income": 41812, + "lifeExpectancy": 76.8, + "population": 272882865, + "country": "United States", + "year": 1997 + }, + { + "income": 33085, + "lifeExpectancy": 79.1, + "population": 18709175, + "country": "Australia", + "year": 1998 + }, + { + "income": 34389, + "lifeExpectancy": 78.9, + "population": 30145148, + "country": "Canada", + "year": 1998 + }, + { + "income": 3205, + "lifeExpectancy": 70.7, + "population": 1255262566, + "country": "China", + "year": 1998 + }, + { + "income": 10086, + "lifeExpectancy": 75.4, + "population": 11041893, + "country": "Cuba", + "year": 1998 + }, + { + "income": 31423, + "lifeExpectancy": 77.3, + "population": 5153229, + "country": "Finland", + "year": 1998 + }, + { + "income": 32764, + "lifeExpectancy": 78.8, + "population": 58867465, + "country": "France", + "year": 1998 + }, + { + "income": 35254, + "lifeExpectancy": 77.7, + "population": 82010184, + "country": "Germany", + "year": 1998 + }, + { + "income": 31601, + "lifeExpectancy": 79.5, + "population": 275568, + "country": "Iceland", + "year": 1998 + }, + { + "income": 2332, + "lifeExpectancy": 60.3, + "population": 1016402907, + "country": "India", + "year": 1998 + }, + { + "income": 31656, + "lifeExpectancy": 80.6, + "population": 125266403, + "country": "Japan", + "year": 1998 + }, + { + "income": 1267, + "lifeExpectancy": 62.8, + "population": 22444986, + "country": "North Korea", + "year": 1998 + }, + { + "income": 17493, + "lifeExpectancy": 75.4, + "population": 45599569, + "country": "South Korea", + "year": 1998 + }, + { + "income": 26077, + "lifeExpectancy": 77.8, + "population": 3783516, + "country": "New Zealand", + "year": 1998 + }, + { + "income": 56502, + "lifeExpectancy": 78.3, + "population": 4440109, + "country": "Norway", + "year": 1998 + }, + { + "income": 13225, + "lifeExpectancy": 73, + "population": 38550777, + "country": "Poland", + "year": 1998 + }, + { + "income": 11173, + "lifeExpectancy": 67.6, + "population": 147385440, + "country": "Russia", + "year": 1998 + }, + { + "income": 13008, + "lifeExpectancy": 70.4, + "population": 61344874, + "country": "Turkey", + "year": 1998 + }, + { + "income": 30614, + "lifeExpectancy": 77.4, + "population": 58456989, + "country": "United Kingdom", + "year": 1998 + }, + { + "income": 43166, + "lifeExpectancy": 77, + "population": 276354096, + "country": "United States", + "year": 1998 + }, + { + "income": 34346, + "lifeExpectancy": 79.3, + "population": 18906936, + "country": "Australia", + "year": 1999 + }, + { + "income": 35810, + "lifeExpectancy": 79.1, + "population": 30420216, + "country": "Canada", + "year": 1999 + }, + { + "income": 3419, + "lifeExpectancy": 71.1, + "population": 1262713651, + "country": "China", + "year": 1999 + }, + { + "income": 10674, + "lifeExpectancy": 75.6, + "population": 11080506, + "country": "Cuba", + "year": 1999 + }, + { + "income": 32743, + "lifeExpectancy": 77.5, + "population": 5164780, + "country": "Finland", + "year": 1999 + }, + { + "income": 33707, + "lifeExpectancy": 78.9, + "population": 59107738, + "country": "France", + "year": 1999 + }, + { + "income": 35931, + "lifeExpectancy": 77.9, + "population": 81965830, + "country": "Germany", + "year": 1999 + }, + { + "income": 32521, + "lifeExpectancy": 79.7, + "population": 278376, + "country": "Iceland", + "year": 1999 + }, + { + "income": 2496, + "lifeExpectancy": 60.7, + "population": 1034976626, + "country": "India", + "year": 1999 + }, + { + "income": 31535, + "lifeExpectancy": 80.7, + "population": 125481050, + "country": "Japan", + "year": 1999 + }, + { + "income": 1377, + "lifeExpectancy": 63, + "population": 22641747, + "country": "North Korea", + "year": 1999 + }, + { + "income": 19233, + "lifeExpectancy": 75.8, + "population": 45908307, + "country": "South Korea", + "year": 1999 + }, + { + "income": 27371, + "lifeExpectancy": 78.1, + "population": 3817489, + "country": "New Zealand", + "year": 1999 + }, + { + "income": 57246, + "lifeExpectancy": 78.5, + "population": 4466468, + "country": "Norway", + "year": 1999 + }, + { + "income": 13824, + "lifeExpectancy": 73.2, + "population": 38515359, + "country": "Poland", + "year": 1999 + }, + { + "income": 11925, + "lifeExpectancy": 66.2, + "population": 146924174, + "country": "Russia", + "year": 1999 + }, + { + "income": 12381, + "lifeExpectancy": 70.3, + "population": 62295617, + "country": "Turkey", + "year": 1999 + }, + { + "income": 31474, + "lifeExpectancy": 77.6, + "population": 58657794, + "country": "United Kingdom", + "year": 1999 + }, + { + "income": 44673, + "lifeExpectancy": 77.1, + "population": 279730801, + "country": "United States", + "year": 1999 + }, + { + "income": 35253, + "lifeExpectancy": 79.7, + "population": 19107251, + "country": "Australia", + "year": 2000 + }, + { + "income": 37314, + "lifeExpectancy": 79.3, + "population": 30701903, + "country": "Canada", + "year": 2000 + }, + { + "income": 3678, + "lifeExpectancy": 71.5, + "population": 1269974572, + "country": "China", + "year": 2000 + }, + { + "income": 11268, + "lifeExpectancy": 75.9, + "population": 11116787, + "country": "Cuba", + "year": 2000 + }, + { + "income": 34517, + "lifeExpectancy": 77.8, + "population": 5176482, + "country": "Finland", + "year": 2000 + }, + { + "income": 34774, + "lifeExpectancy": 79.1, + "population": 59387183, + "country": "France", + "year": 2000 + }, + { + "income": 36953, + "lifeExpectancy": 78.1, + "population": 81895925, + "country": "Germany", + "year": 2000 + }, + { + "income": 33599, + "lifeExpectancy": 79.9, + "population": 281214, + "country": "Iceland", + "year": 2000 + }, + { + "income": 2548, + "lifeExpectancy": 61.1, + "population": 1053481072, + "country": "India", + "year": 2000 + }, + { + "income": 32193, + "lifeExpectancy": 81.1, + "population": 125714674, + "country": "Japan", + "year": 2000 + }, + { + "income": 1287, + "lifeExpectancy": 63.2, + "population": 22840218, + "country": "North Korea", + "year": 2000 + }, + { + "income": 20757, + "lifeExpectancy": 76.3, + "population": 46206271, + "country": "South Korea", + "year": 2000 + }, + { + "income": 27963, + "lifeExpectancy": 78.5, + "population": 3858234, + "country": "New Zealand", + "year": 2000 + }, + { + "income": 58699, + "lifeExpectancy": 78.7, + "population": 4491572, + "country": "Norway", + "year": 2000 + }, + { + "income": 14565, + "lifeExpectancy": 73.8, + "population": 38486305, + "country": "Poland", + "year": 2000 + }, + { + "income": 13173, + "lifeExpectancy": 65.4, + "population": 146400951, + "country": "Russia", + "year": 2000 + }, + { + "income": 13025, + "lifeExpectancy": 71.5, + "population": 63240157, + "country": "Turkey", + "year": 2000 + }, + { + "income": 32543, + "lifeExpectancy": 77.8, + "population": 58867004, + "country": "United Kingdom", + "year": 2000 + }, + { + "income": 45986, + "lifeExpectancy": 77.1, + "population": 282895741, + "country": "United States", + "year": 2000 + }, + { + "income": 35452, + "lifeExpectancy": 80.1, + "population": 19308681, + "country": "Australia", + "year": 2001 + }, + { + "income": 37563, + "lifeExpectancy": 79.5, + "population": 30991344, + "country": "Canada", + "year": 2001 + }, + { + "income": 3955, + "lifeExpectancy": 71.9, + "population": 1277188787, + "country": "China", + "year": 2001 + }, + { + "income": 11588, + "lifeExpectancy": 76.2, + "population": 11151472, + "country": "Cuba", + "year": 2001 + }, + { + "income": 35327, + "lifeExpectancy": 78.2, + "population": 5188446, + "country": "Finland", + "year": 2001 + }, + { + "income": 35197, + "lifeExpectancy": 79.2, + "population": 59711914, + "country": "France", + "year": 2001 + }, + { + "income": 37517, + "lifeExpectancy": 78.3, + "population": 81809438, + "country": "Germany", + "year": 2001 + }, + { + "income": 34403, + "lifeExpectancy": 80.2, + "population": 284037, + "country": "Iceland", + "year": 2001 + }, + { + "income": 2628, + "lifeExpectancy": 61.5, + "population": 1071888190, + "country": "India", + "year": 2001 + }, + { + "income": 32230, + "lifeExpectancy": 81.4, + "population": 125974298, + "country": "Japan", + "year": 2001 + }, + { + "income": 1368, + "lifeExpectancy": 63.3, + "population": 23043441, + "country": "North Korea", + "year": 2001 + }, + { + "income": 21536, + "lifeExpectancy": 76.8, + "population": 46492324, + "country": "South Korea", + "year": 2001 + }, + { + "income": 28752, + "lifeExpectancy": 78.8, + "population": 3906911, + "country": "New Zealand", + "year": 2001 + }, + { + "income": 59620, + "lifeExpectancy": 78.9, + "population": 4514907, + "country": "Norway", + "year": 2001 + }, + { + "income": 14744, + "lifeExpectancy": 74.3, + "population": 38466543, + "country": "Poland", + "year": 2001 + }, + { + "income": 13902, + "lifeExpectancy": 65.1, + "population": 145818121, + "country": "Russia", + "year": 2001 + }, + { + "income": 12106, + "lifeExpectancy": 72, + "population": 64182694, + "country": "Turkey", + "year": 2001 + }, + { + "income": 33282, + "lifeExpectancy": 78, + "population": 59080221, + "country": "United Kingdom", + "year": 2001 + }, + { + "income": 45978, + "lifeExpectancy": 77.1, + "population": 285796198, + "country": "United States", + "year": 2001 + }, + { + "income": 36375, + "lifeExpectancy": 80.4, + "population": 19514385, + "country": "Australia", + "year": 2002 + }, + { + "income": 38270, + "lifeExpectancy": 79.7, + "population": 31288572, + "country": "Canada", + "year": 2002 + }, + { + "income": 4285, + "lifeExpectancy": 72.4, + "population": 1284349938, + "country": "China", + "year": 2002 + }, + { + "income": 11715, + "lifeExpectancy": 76.6, + "population": 11184540, + "country": "Cuba", + "year": 2002 + }, + { + "income": 35834, + "lifeExpectancy": 78.5, + "population": 5200632, + "country": "Finland", + "year": 2002 + }, + { + "income": 35333, + "lifeExpectancy": 79.4, + "population": 60075783, + "country": "France", + "year": 2002 + }, + { + "income": 37458, + "lifeExpectancy": 78.5, + "population": 81699829, + "country": "Germany", + "year": 2002 + }, + { + "income": 34252, + "lifeExpectancy": 80.5, + "population": 286865, + "country": "Iceland", + "year": 2002 + }, + { + "income": 2684, + "lifeExpectancy": 61.9, + "population": 1090189358, + "country": "India", + "year": 2002 + }, + { + "income": 32248, + "lifeExpectancy": 81.7, + "population": 126249509, + "country": "Japan", + "year": 2002 + }, + { + "income": 1375, + "lifeExpectancy": 63.5, + "population": 23248053, + "country": "North Korea", + "year": 2002 + }, + { + "income": 23008, + "lifeExpectancy": 77.3, + "population": 46769579, + "country": "South Korea", + "year": 2002 + }, + { + "income": 29637, + "lifeExpectancy": 79, + "population": 3961695, + "country": "New Zealand", + "year": 2002 + }, + { + "income": 60152, + "lifeExpectancy": 79.2, + "population": 4537240, + "country": "Norway", + "year": 2002 + }, + { + "income": 14964, + "lifeExpectancy": 74.6, + "population": 38454823, + "country": "Poland", + "year": 2002 + }, + { + "income": 14629, + "lifeExpectancy": 64.9, + "population": 145195521, + "country": "Russia", + "year": 2002 + }, + { + "income": 12669, + "lifeExpectancy": 72.5, + "population": 65125766, + "country": "Turkey", + "year": 2002 + }, + { + "income": 33954, + "lifeExpectancy": 78.2, + "population": 59301235, + "country": "United Kingdom", + "year": 2002 + }, + { + "income": 46367, + "lifeExpectancy": 77.2, + "population": 288470847, + "country": "United States", + "year": 2002 + }, + { + "income": 37035, + "lifeExpectancy": 80.7, + "population": 19735255, + "country": "Australia", + "year": 2003 + }, + { + "income": 38621, + "lifeExpectancy": 79.9, + "population": 31596593, + "country": "Canada", + "year": 2003 + }, + { + "income": 4685, + "lifeExpectancy": 72.9, + "population": 1291485488, + "country": "China", + "year": 2003 + }, + { + "income": 12123, + "lifeExpectancy": 76.8, + "population": 11214837, + "country": "Cuba", + "year": 2003 + }, + { + "income": 36461, + "lifeExpectancy": 78.6, + "population": 5213800, + "country": "Finland", + "year": 2003 + }, + { + "income": 35371, + "lifeExpectancy": 79.7, + "population": 60464857, + "country": "France", + "year": 2003 + }, + { + "income": 37167, + "lifeExpectancy": 78.8, + "population": 81569481, + "country": "Germany", + "year": 2003 + }, + { + "income": 34938, + "lifeExpectancy": 80.8, + "population": 289824, + "country": "Iceland", + "year": 2003 + }, + { + "income": 2850, + "lifeExpectancy": 62.4, + "population": 1108369577, + "country": "India", + "year": 2003 + }, + { + "income": 32721, + "lifeExpectancy": 81.8, + "population": 126523884, + "country": "Japan", + "year": 2003 + }, + { + "income": 1405, + "lifeExpectancy": 69.8, + "population": 23449173, + "country": "North Korea", + "year": 2003 + }, + { + "income": 23566, + "lifeExpectancy": 77.8, + "population": 47043251, + "country": "South Korea", + "year": 2003 + }, + { + "income": 30404, + "lifeExpectancy": 79.3, + "population": 4020195, + "country": "New Zealand", + "year": 2003 + }, + { + "income": 60351, + "lifeExpectancy": 79.5, + "population": 4560947, + "country": "Norway", + "year": 2003 + }, + { + "income": 15508, + "lifeExpectancy": 74.9, + "population": 38451227, + "country": "Poland", + "year": 2003 + }, + { + "income": 15768, + "lifeExpectancy": 64.8, + "population": 144583147, + "country": "Russia", + "year": 2003 + }, + { + "income": 13151, + "lifeExpectancy": 72.9, + "population": 66060121, + "country": "Turkey", + "year": 2003 + }, + { + "income": 35250, + "lifeExpectancy": 78.5, + "population": 59548421, + "country": "United Kingdom", + "year": 2003 + }, + { + "income": 47260, + "lifeExpectancy": 77.3, + "population": 291005482, + "country": "United States", + "year": 2003 + }, + { + "income": 38130, + "lifeExpectancy": 81, + "population": 19985475, + "country": "Australia", + "year": 2004 + }, + { + "income": 39436, + "lifeExpectancy": 80.1, + "population": 31918582, + "country": "Canada", + "year": 2004 + }, + { + "income": 5127, + "lifeExpectancy": 73.4, + "population": 1298573031, + "country": "China", + "year": 2004 + }, + { + "income": 12791, + "lifeExpectancy": 76.9, + "population": 11240680, + "country": "Cuba", + "year": 2004 + }, + { + "income": 37783, + "lifeExpectancy": 78.6, + "population": 5228842, + "country": "Finland", + "year": 2004 + }, + { + "income": 36090, + "lifeExpectancy": 80.1, + "population": 60858654, + "country": "France", + "year": 2004 + }, + { + "income": 37614, + "lifeExpectancy": 79.1, + "population": 81417791, + "country": "Germany", + "year": 2004 + }, + { + "income": 37482, + "lifeExpectancy": 81.1, + "population": 293084, + "country": "Iceland", + "year": 2004 + }, + { + "income": 3029, + "lifeExpectancy": 62.8, + "population": 1126419321, + "country": "India", + "year": 2004 + }, + { + "income": 33483, + "lifeExpectancy": 82, + "population": 126773081, + "country": "Japan", + "year": 2004 + }, + { + "income": 1410, + "lifeExpectancy": 69.9, + "population": 23639296, + "country": "North Korea", + "year": 2004 + }, + { + "income": 24628, + "lifeExpectancy": 78.3, + "population": 47320454, + "country": "South Korea", + "year": 2004 + }, + { + "income": 31098, + "lifeExpectancy": 79.5, + "population": 4078779, + "country": "New Zealand", + "year": 2004 + }, + { + "income": 62370, + "lifeExpectancy": 79.7, + "population": 4589241, + "country": "Norway", + "year": 2004 + }, + { + "income": 16314, + "lifeExpectancy": 75, + "population": 38454520, + "country": "Poland", + "year": 2004 + }, + { + "income": 16967, + "lifeExpectancy": 65, + "population": 144043914, + "country": "Russia", + "year": 2004 + }, + { + "income": 14187, + "lifeExpectancy": 73.4, + "population": 66973561, + "country": "Turkey", + "year": 2004 + }, + { + "income": 35910, + "lifeExpectancy": 78.8, + "population": 59846226, + "country": "United Kingdom", + "year": 2004 + }, + { + "income": 48597, + "lifeExpectancy": 77.6, + "population": 293530886, + "country": "United States", + "year": 2004 + }, + { + "income": 38840, + "lifeExpectancy": 81.2, + "population": 20274282, + "country": "Australia", + "year": 2005 + }, + { + "income": 40284, + "lifeExpectancy": 80.3, + "population": 32256333, + "country": "Canada", + "year": 2005 + }, + { + "income": 5675, + "lifeExpectancy": 73.9, + "population": 1305600630, + "country": "China", + "year": 2005 + }, + { + "income": 14200, + "lifeExpectancy": 77.1, + "population": 11261052, + "country": "Cuba", + "year": 2005 + }, + { + "income": 38700, + "lifeExpectancy": 78.8, + "population": 5246368, + "country": "Finland", + "year": 2005 + }, + { + "income": 36395, + "lifeExpectancy": 80.4, + "population": 61241700, + "country": "France", + "year": 2005 + }, + { + "income": 37901, + "lifeExpectancy": 79.4, + "population": 81246801, + "country": "Germany", + "year": 2005 + }, + { + "income": 39108, + "lifeExpectancy": 81.3, + "population": 296745, + "country": "Iceland", + "year": 2005 + }, + { + "income": 3262, + "lifeExpectancy": 63.2, + "population": 1144326293, + "country": "India", + "year": 2005 + }, + { + "income": 33916, + "lifeExpectancy": 82.2, + "population": 126978754, + "country": "Japan", + "year": 2005 + }, + { + "income": 1464, + "lifeExpectancy": 70.1, + "population": 23813324, + "country": "North Korea", + "year": 2005 + }, + { + "income": 25541, + "lifeExpectancy": 78.8, + "population": 47605863, + "country": "South Korea", + "year": 2005 + }, + { + "income": 31798, + "lifeExpectancy": 79.8, + "population": 4134699, + "country": "New Zealand", + "year": 2005 + }, + { + "income": 63573, + "lifeExpectancy": 80.1, + "population": 4624388, + "country": "Norway", + "year": 2005 + }, + { + "income": 16900, + "lifeExpectancy": 75, + "population": 38463514, + "country": "Poland", + "year": 2005 + }, + { + "income": 18118, + "lifeExpectancy": 64.8, + "population": 143622566, + "country": "Russia", + "year": 2005 + }, + { + "income": 15176, + "lifeExpectancy": 73.8, + "population": 67860617, + "country": "Turkey", + "year": 2005 + }, + { + "income": 36665, + "lifeExpectancy": 79.1, + "population": 60210012, + "country": "United Kingdom", + "year": 2005 + }, + { + "income": 49762, + "lifeExpectancy": 77.7, + "population": 296139635, + "country": "United States", + "year": 2005 + }, + { + "income": 39416, + "lifeExpectancy": 81.4, + "population": 20606228, + "country": "Australia", + "year": 2006 + }, + { + "income": 41012, + "lifeExpectancy": 80.5, + "population": 32611436, + "country": "Canada", + "year": 2006 + }, + { + "income": 6360, + "lifeExpectancy": 74.4, + "population": 1312600877, + "country": "China", + "year": 2006 + }, + { + "income": 15901, + "lifeExpectancy": 77.4, + "population": 11275199, + "country": "Cuba", + "year": 2006 + }, + { + "income": 40115, + "lifeExpectancy": 79, + "population": 5266600, + "country": "Finland", + "year": 2006 + }, + { + "income": 37001, + "lifeExpectancy": 80.7, + "population": 61609991, + "country": "France", + "year": 2006 + }, + { + "income": 39352, + "lifeExpectancy": 79.7, + "population": 81055904, + "country": "Germany", + "year": 2006 + }, + { + "income": 39818, + "lifeExpectancy": 81.5, + "population": 300887, + "country": "Iceland", + "year": 2006 + }, + { + "income": 3514, + "lifeExpectancy": 63.6, + "population": 1162088305, + "country": "India", + "year": 2006 + }, + { + "income": 34468, + "lifeExpectancy": 82.3, + "population": 127136576, + "country": "Japan", + "year": 2006 + }, + { + "income": 1461, + "lifeExpectancy": 70.2, + "population": 23969897, + "country": "North Korea", + "year": 2006 + }, + { + "income": 26734, + "lifeExpectancy": 79.2, + "population": 47901643, + "country": "South Korea", + "year": 2006 + }, + { + "income": 32281, + "lifeExpectancy": 80, + "population": 4187584, + "country": "New Zealand", + "year": 2006 + }, + { + "income": 64573, + "lifeExpectancy": 80.4, + "population": 4667105, + "country": "Norway", + "year": 2006 + }, + { + "income": 17959, + "lifeExpectancy": 75, + "population": 38478763, + "country": "Poland", + "year": 2006 + }, + { + "income": 19660, + "lifeExpectancy": 66.1, + "population": 143338407, + "country": "Russia", + "year": 2006 + }, + { + "income": 16013, + "lifeExpectancy": 74.3, + "population": 68704721, + "country": "Turkey", + "year": 2006 + }, + { + "income": 37504, + "lifeExpectancy": 79.3, + "population": 60648850, + "country": "United Kingdom", + "year": 2006 + }, + { + "income": 50599, + "lifeExpectancy": 77.8, + "population": 298860519, + "country": "United States", + "year": 2006 + }, + { + "income": 40643, + "lifeExpectancy": 81.5, + "population": 20975949, + "country": "Australia", + "year": 2007 + }, + { + "income": 41432, + "lifeExpectancy": 80.6, + "population": 32982275, + "country": "Canada", + "year": 2007 + }, + { + "income": 7225, + "lifeExpectancy": 74.9, + "population": 1319625197, + "country": "China", + "year": 2007 + }, + { + "income": 17055, + "lifeExpectancy": 77.6, + "population": 11284043, + "country": "Cuba", + "year": 2007 + }, + { + "income": 42016, + "lifeExpectancy": 79.2, + "population": 5289333, + "country": "Finland", + "year": 2007 + }, + { + "income": 37641, + "lifeExpectancy": 80.9, + "population": 61966193, + "country": "France", + "year": 2007 + }, + { + "income": 40693, + "lifeExpectancy": 79.8, + "population": 80854515, + "country": "Germany", + "year": 2007 + }, + { + "income": 42598, + "lifeExpectancy": 81.8, + "population": 305415, + "country": "Iceland", + "year": 2007 + }, + { + "income": 3806, + "lifeExpectancy": 64, + "population": 1179685631, + "country": "India", + "year": 2007 + }, + { + "income": 35183, + "lifeExpectancy": 82.5, + "population": 127250015, + "country": "Japan", + "year": 2007 + }, + { + "income": 1392, + "lifeExpectancy": 70.3, + "population": 24111945, + "country": "North Korea", + "year": 2007 + }, + { + "income": 28063, + "lifeExpectancy": 79.5, + "population": 48205062, + "country": "South Korea", + "year": 2007 + }, + { + "income": 32928, + "lifeExpectancy": 80.1, + "population": 4238021, + "country": "New Zealand", + "year": 2007 + }, + { + "income": 65781, + "lifeExpectancy": 80.6, + "population": 4716584, + "country": "Norway", + "year": 2007 + }, + { + "income": 19254, + "lifeExpectancy": 75.1, + "population": 38500356, + "country": "Poland", + "year": 2007 + }, + { + "income": 21374, + "lifeExpectancy": 67.2, + "population": 143180249, + "country": "Russia", + "year": 2007 + }, + { + "income": 16551, + "lifeExpectancy": 74.7, + "population": 69515492, + "country": "Turkey", + "year": 2007 + }, + { + "income": 38164, + "lifeExpectancy": 79.4, + "population": 61151820, + "country": "United Kingdom", + "year": 2007 + }, + { + "income": 51011, + "lifeExpectancy": 78.1, + "population": 301655953, + "country": "United States", + "year": 2007 + }, + { + "income": 41312, + "lifeExpectancy": 81.5, + "population": 21370348, + "country": "Australia", + "year": 2008 + }, + { + "income": 41468, + "lifeExpectancy": 80.7, + "population": 33363256, + "country": "Canada", + "year": 2008 + }, + { + "income": 7880, + "lifeExpectancy": 75.1, + "population": 1326690636, + "country": "China", + "year": 2008 + }, + { + "income": 17765, + "lifeExpectancy": 77.8, + "population": 11290239, + "country": "Cuba", + "year": 2008 + }, + { + "income": 42122, + "lifeExpectancy": 79.4, + "population": 5314170, + "country": "Finland", + "year": 2008 + }, + { + "income": 37505, + "lifeExpectancy": 81, + "population": 62309529, + "country": "France", + "year": 2008 + }, + { + "income": 41199, + "lifeExpectancy": 80, + "population": 80665906, + "country": "Germany", + "year": 2008 + }, + { + "income": 42294, + "lifeExpectancy": 82, + "population": 310033, + "country": "Iceland", + "year": 2008 + }, + { + "income": 3901, + "lifeExpectancy": 64.4, + "population": 1197070109, + "country": "India", + "year": 2008 + }, + { + "income": 34800, + "lifeExpectancy": 82.6, + "population": 127317900, + "country": "Japan", + "year": 2008 + }, + { + "income": 1427, + "lifeExpectancy": 70.6, + "population": 24243829, + "country": "North Korea", + "year": 2008 + }, + { + "income": 28650, + "lifeExpectancy": 79.7, + "population": 48509842, + "country": "South Korea", + "year": 2008 + }, + { + "income": 32122, + "lifeExpectancy": 80.2, + "population": 4285380, + "country": "New Zealand", + "year": 2008 + }, + { + "income": 65216, + "lifeExpectancy": 80.7, + "population": 4771633, + "country": "Norway", + "year": 2008 + }, + { + "income": 19996, + "lifeExpectancy": 75.3, + "population": 38525752, + "country": "Poland", + "year": 2008 + }, + { + "income": 22506, + "lifeExpectancy": 67.6, + "population": 143123163, + "country": "Russia", + "year": 2008 + }, + { + "income": 16454, + "lifeExpectancy": 75.1, + "population": 70344357, + "country": "Turkey", + "year": 2008 + }, + { + "income": 37739, + "lifeExpectancy": 79.5, + "population": 61689620, + "country": "United Kingdom", + "year": 2008 + }, + { + "income": 50384, + "lifeExpectancy": 78.2, + "population": 304473143, + "country": "United States", + "year": 2008 + }, + { + "income": 41170, + "lifeExpectancy": 81.6, + "population": 21770690, + "country": "Australia", + "year": 2009 + }, + { + "income": 39884, + "lifeExpectancy": 80.9, + "population": 33746559, + "country": "Canada", + "year": 2009 + }, + { + "income": 8565, + "lifeExpectancy": 75.6, + "population": 1333807063, + "country": "China", + "year": 2009 + }, + { + "income": 18035, + "lifeExpectancy": 77.9, + "population": 11297442, + "country": "Cuba", + "year": 2009 + }, + { + "income": 38455, + "lifeExpectancy": 79.7, + "population": 5340485, + "country": "Finland", + "year": 2009 + }, + { + "income": 36215, + "lifeExpectancy": 81, + "population": 62640901, + "country": "France", + "year": 2009 + }, + { + "income": 38975, + "lifeExpectancy": 80, + "population": 80519685, + "country": "Germany", + "year": 2009 + }, + { + "income": 39979, + "lifeExpectancy": 82.2, + "population": 314336, + "country": "Iceland", + "year": 2009 + }, + { + "income": 4177, + "lifeExpectancy": 64.7, + "population": 1214182182, + "country": "India", + "year": 2009 + }, + { + "income": 32880, + "lifeExpectancy": 82.8, + "population": 127340884, + "country": "Japan", + "year": 2009 + }, + { + "income": 1407, + "lifeExpectancy": 70.7, + "population": 24371806, + "country": "North Korea", + "year": 2009 + }, + { + "income": 28716, + "lifeExpectancy": 79.8, + "population": 48807036, + "country": "South Korea", + "year": 2009 + }, + { + "income": 31723, + "lifeExpectancy": 80.3, + "population": 4329124, + "country": "New Zealand", + "year": 2009 + }, + { + "income": 63354, + "lifeExpectancy": 80.8, + "population": 4830371, + "country": "Norway", + "year": 2009 + }, + { + "income": 20507, + "lifeExpectancy": 75.6, + "population": 38551489, + "country": "Poland", + "year": 2009 + }, + { + "income": 20739, + "lifeExpectancy": 68.3, + "population": 143126660, + "country": "Russia", + "year": 2009 + }, + { + "income": 15467, + "lifeExpectancy": 75.4, + "population": 71261307, + "country": "Turkey", + "year": 2009 + }, + { + "income": 35840, + "lifeExpectancy": 79.7, + "population": 62221164, + "country": "United Kingdom", + "year": 2009 + }, + { + "income": 48558, + "lifeExpectancy": 78.3, + "population": 307231961, + "country": "United States", + "year": 2009 + }, + { + "income": 41330, + "lifeExpectancy": 81.7, + "population": 22162863, + "country": "Australia", + "year": 2010 + }, + { + "income": 40773, + "lifeExpectancy": 81.1, + "population": 34126173, + "country": "Canada", + "year": 2010 + }, + { + "income": 9430, + "lifeExpectancy": 75.9, + "population": 1340968737, + "country": "China", + "year": 2010 + }, + { + "income": 18477, + "lifeExpectancy": 78, + "population": 11308133, + "country": "Cuba", + "year": 2010 + }, + { + "income": 39425, + "lifeExpectancy": 80, + "population": 5367693, + "country": "Finland", + "year": 2010 + }, + { + "income": 36745, + "lifeExpectancy": 81.2, + "population": 62961136, + "country": "France", + "year": 2010 + }, + { + "income": 40632, + "lifeExpectancy": 80.2, + "population": 80435307, + "country": "Germany", + "year": 2010 + }, + { + "income": 38809, + "lifeExpectancy": 82.5, + "population": 318042, + "country": "Iceland", + "year": 2010 + }, + { + "income": 4547, + "lifeExpectancy": 65.1, + "population": 1230984504, + "country": "India", + "year": 2010 + }, + { + "income": 34404, + "lifeExpectancy": 83, + "population": 127319802, + "country": "Japan", + "year": 2010 + }, + { + "income": 1393, + "lifeExpectancy": 70.8, + "population": 24500506, + "country": "North Korea", + "year": 2010 + }, + { + "income": 30440, + "lifeExpectancy": 80, + "population": 49090041, + "country": "South Korea", + "year": 2010 + }, + { + "income": 31824, + "lifeExpectancy": 80.5, + "population": 4369027, + "country": "New Zealand", + "year": 2010 + }, + { + "income": 62946, + "lifeExpectancy": 80.9, + "population": 4891251, + "country": "Norway", + "year": 2010 + }, + { + "income": 21328, + "lifeExpectancy": 76.1, + "population": 38574682, + "country": "Poland", + "year": 2010 + }, + { + "income": 21664, + "lifeExpectancy": 68.7, + "population": 143158099, + "country": "Russia", + "year": 2010 + }, + { + "income": 16674, + "lifeExpectancy": 75.7, + "population": 72310416, + "country": "Turkey", + "year": 2010 + }, + { + "income": 36240, + "lifeExpectancy": 80, + "population": 62716684, + "country": "United Kingdom", + "year": 2010 + }, + { + "income": 49373, + "lifeExpectancy": 78.5, + "population": 309876170, + "country": "United States", + "year": 2010 + }, + { + "income": 41706, + "lifeExpectancy": 81.8, + "population": 22542371, + "country": "Australia", + "year": 2011 + }, + { + "income": 41567, + "lifeExpectancy": 81.3, + "population": 34499905, + "country": "Canada", + "year": 2011 + }, + { + "income": 10274, + "lifeExpectancy": 76.1, + "population": 1348174478, + "country": "China", + "year": 2011 + }, + { + "income": 19005, + "lifeExpectancy": 78.1, + "population": 11323570, + "country": "Cuba", + "year": 2011 + }, + { + "income": 40251, + "lifeExpectancy": 80.3, + "population": 5395816, + "country": "Finland", + "year": 2011 + }, + { + "income": 37328, + "lifeExpectancy": 81.4, + "population": 63268405, + "country": "France", + "year": 2011 + }, + { + "income": 42080, + "lifeExpectancy": 80.3, + "population": 80424665, + "country": "Germany", + "year": 2011 + }, + { + "income": 39619, + "lifeExpectancy": 82.7, + "population": 321030, + "country": "Iceland", + "year": 2011 + }, + { + "income": 4787, + "lifeExpectancy": 65.5, + "population": 1247446011, + "country": "India", + "year": 2011 + }, + { + "income": 34316, + "lifeExpectancy": 82.8, + "population": 127252900, + "country": "Japan", + "year": 2011 + }, + { + "income": 1397, + "lifeExpectancy": 71, + "population": 24631359, + "country": "North Korea", + "year": 2011 + }, + { + "income": 31327, + "lifeExpectancy": 80.3, + "population": 49356692, + "country": "South Korea", + "year": 2011 + }, + { + "income": 32283, + "lifeExpectancy": 80.6, + "population": 4404483, + "country": "New Zealand", + "year": 2011 + }, + { + "income": 62737, + "lifeExpectancy": 81.1, + "population": 4953945, + "country": "Norway", + "year": 2011 + }, + { + "income": 22333, + "lifeExpectancy": 76.5, + "population": 38594217, + "country": "Poland", + "year": 2011 + }, + { + "income": 22570, + "lifeExpectancy": 69.4, + "population": 143211476, + "country": "Russia", + "year": 2011 + }, + { + "income": 17908, + "lifeExpectancy": 76, + "population": 73517002, + "country": "Turkey", + "year": 2011 + }, + { + "income": 36549, + "lifeExpectancy": 80.4, + "population": 63164949, + "country": "United Kingdom", + "year": 2011 + }, + { + "income": 49781, + "lifeExpectancy": 78.7, + "population": 312390368, + "country": "United States", + "year": 2011 + }, + { + "income": 42522, + "lifeExpectancy": 81.8, + "population": 22911375, + "country": "Australia", + "year": 2012 + }, + { + "income": 41865, + "lifeExpectancy": 81.4, + "population": 34868151, + "country": "Canada", + "year": 2012 + }, + { + "income": 11017, + "lifeExpectancy": 76.3, + "population": 1355386952, + "country": "China", + "year": 2012 + }, + { + "income": 19586, + "lifeExpectancy": 78.2, + "population": 11342631, + "country": "Cuba", + "year": 2012 + }, + { + "income": 39489, + "lifeExpectancy": 80.5, + "population": 5424644, + "country": "Finland", + "year": 2012 + }, + { + "income": 37227, + "lifeExpectancy": 81.6, + "population": 63561798, + "country": "France", + "year": 2012 + }, + { + "income": 42959, + "lifeExpectancy": 80.5, + "population": 80477952, + "country": "Germany", + "year": 2012 + }, + { + "income": 39925, + "lifeExpectancy": 82.8, + "population": 323407, + "country": "Iceland", + "year": 2012 + }, + { + "income": 4967, + "lifeExpectancy": 65.9, + "population": 1263589639, + "country": "India", + "year": 2012 + }, + { + "income": 34988, + "lifeExpectancy": 83.2, + "population": 127139821, + "country": "Japan", + "year": 2012 + }, + { + "income": 1393, + "lifeExpectancy": 71.1, + "population": 24763353, + "country": "North Korea", + "year": 2012 + }, + { + "income": 31901, + "lifeExpectancy": 80.4, + "population": 49608451, + "country": "South Korea", + "year": 2012 + }, + { + "income": 32806, + "lifeExpectancy": 80.6, + "population": 4435883, + "country": "New Zealand", + "year": 2012 + }, + { + "income": 63620, + "lifeExpectancy": 81.3, + "population": 5018367, + "country": "Norway", + "year": 2012 + }, + { + "income": 22740, + "lifeExpectancy": 76.7, + "population": 38609486, + "country": "Poland", + "year": 2012 + }, + { + "income": 23299, + "lifeExpectancy": 70.4, + "population": 143287536, + "country": "Russia", + "year": 2012 + }, + { + "income": 18057, + "lifeExpectancy": 76.2, + "population": 74849187, + "country": "Turkey", + "year": 2012 + }, + { + "income": 36535, + "lifeExpectancy": 80.8, + "population": 63573766, + "country": "United Kingdom", + "year": 2012 + }, + { + "income": 50549, + "lifeExpectancy": 78.8, + "population": 314799465, + "country": "United States", + "year": 2012 + }, + { + "income": 42840, + "lifeExpectancy": 81.8, + "population": 23270465, + "country": "Australia", + "year": 2013 + }, + { + "income": 42213, + "lifeExpectancy": 81.5, + "population": 35230612, + "country": "Canada", + "year": 2013 + }, + { + "income": 11805, + "lifeExpectancy": 76.5, + "population": 1362514260, + "country": "China", + "year": 2013 + }, + { + "income": 20122, + "lifeExpectancy": 78.3, + "population": 11362505, + "country": "Cuba", + "year": 2013 + }, + { + "income": 38788, + "lifeExpectancy": 80.6, + "population": 5453061, + "country": "Finland", + "year": 2013 + }, + { + "income": 37309, + "lifeExpectancy": 81.7, + "population": 63844529, + "country": "France", + "year": 2013 + }, + { + "income": 42887, + "lifeExpectancy": 80.7, + "population": 80565861, + "country": "Germany", + "year": 2013 + }, + { + "income": 40958, + "lifeExpectancy": 82.8, + "population": 325392, + "country": "Iceland", + "year": 2013 + }, + { + "income": 5244, + "lifeExpectancy": 66.2, + "population": 1279498874, + "country": "India", + "year": 2013 + }, + { + "income": 35614, + "lifeExpectancy": 83.3, + "population": 126984964, + "country": "Japan", + "year": 2013 + }, + { + "income": 1392, + "lifeExpectancy": 71.2, + "population": 24895705, + "country": "North Korea", + "year": 2013 + }, + { + "income": 32684, + "lifeExpectancy": 80.5, + "population": 49846756, + "country": "South Korea", + "year": 2013 + }, + { + "income": 33360, + "lifeExpectancy": 80.6, + "population": 4465276, + "country": "New Zealand", + "year": 2013 + }, + { + "income": 63322, + "lifeExpectancy": 81.4, + "population": 5083450, + "country": "Norway", + "year": 2013 + }, + { + "income": 23144, + "lifeExpectancy": 76.9, + "population": 38618698, + "country": "Poland", + "year": 2013 + }, + { + "income": 23561, + "lifeExpectancy": 71.3, + "population": 143367341, + "country": "Russia", + "year": 2013 + }, + { + "income": 18579, + "lifeExpectancy": 76.3, + "population": 76223639, + "country": "Turkey", + "year": 2013 + }, + { + "income": 36908, + "lifeExpectancy": 81, + "population": 63955654, + "country": "United Kingdom", + "year": 2013 + }, + { + "income": 51282, + "lifeExpectancy": 78.9, + "population": 317135919, + "country": "United States", + "year": 2013 + }, + { + "income": 43219, + "lifeExpectancy": 81.8, + "population": 23622353, + "country": "Australia", + "year": 2014 + }, + { + "income": 42817, + "lifeExpectancy": 81.6, + "population": 35587793, + "country": "Canada", + "year": 2014 + }, + { + "income": 12609, + "lifeExpectancy": 76.7, + "population": 1369435670, + "country": "China", + "year": 2014 + }, + { + "income": 20704, + "lifeExpectancy": 78.4, + "population": 11379111, + "country": "Cuba", + "year": 2014 + }, + { + "income": 38569, + "lifeExpectancy": 80.7, + "population": 5479660, + "country": "Finland", + "year": 2014 + }, + { + "income": 37218, + "lifeExpectancy": 81.8, + "population": 64121249, + "country": "France", + "year": 2014 + }, + { + "income": 43444, + "lifeExpectancy": 80.9, + "population": 80646262, + "country": "Germany", + "year": 2014 + }, + { + "income": 41237, + "lifeExpectancy": 82.8, + "population": 327318, + "country": "Iceland", + "year": 2014 + }, + { + "income": 5565, + "lifeExpectancy": 66.5, + "population": 1295291543, + "country": "India", + "year": 2014 + }, + { + "income": 35635, + "lifeExpectancy": 83.4, + "population": 126794564, + "country": "Japan", + "year": 2014 + }, + { + "income": 1391, + "lifeExpectancy": 71.3, + "population": 25026772, + "country": "North Korea", + "year": 2014 + }, + { + "income": 33629, + "lifeExpectancy": 80.6, + "population": 50074401, + "country": "South Korea", + "year": 2014 + }, + { + "income": 33538, + "lifeExpectancy": 80.6, + "population": 4495482, + "country": "New Zealand", + "year": 2014 + }, + { + "income": 64020, + "lifeExpectancy": 81.5, + "population": 5147970, + "country": "Norway", + "year": 2014 + }, + { + "income": 23952, + "lifeExpectancy": 77.1, + "population": 38619974, + "country": "Poland", + "year": 2014 + }, + { + "income": 23293, + "lifeExpectancy": 72.21, + "population": 143429435, + "country": "Russia", + "year": 2014 + }, + { + "income": 18884, + "lifeExpectancy": 76.4, + "population": 77523788, + "country": "Turkey", + "year": 2014 + }, + { + "income": 37614, + "lifeExpectancy": 81.2, + "population": 64331348, + "country": "United Kingdom", + "year": 2014 + }, + { + "income": 52118, + "lifeExpectancy": 79, + "population": 319448634, + "country": "United States", + "year": 2014 + }, + { + "income": 44056, + "lifeExpectancy": 81.8, + "population": 23968973, + "country": "Australia", + "year": 2015 + }, + { + "income": 43294, + "lifeExpectancy": 81.7, + "population": 35939927, + "country": "Canada", + "year": 2015 + }, + { + "income": 13334, + "lifeExpectancy": 76.9, + "population": 1376048943, + "country": "China", + "year": 2015 + }, + { + "income": 21291, + "lifeExpectancy": 78.5, + "population": 11389562, + "country": "Cuba", + "year": 2015 + }, + { + "income": 38923, + "lifeExpectancy": 80.8, + "population": 5503457, + "country": "Finland", + "year": 2015 + }, + { + "income": 37599, + "lifeExpectancy": 81.9, + "population": 64395345, + "country": "France", + "year": 2015 + }, + { + "income": 44053, + "lifeExpectancy": 81.1, + "population": 80688545, + "country": "Germany", + "year": 2015 + }, + { + "income": 42182, + "lifeExpectancy": 82.8, + "population": 329425, + "country": "Iceland", + "year": 2015 + }, + { + "income": 5903, + "lifeExpectancy": 66.8, + "population": 1311050527, + "country": "India", + "year": 2015 + }, + { + "income": 36162, + "lifeExpectancy": 83.5, + "population": 126573481, + "country": "Japan", + "year": 2015 + }, + { + "income": 1390, + "lifeExpectancy": 71.4, + "population": 25155317, + "country": "North Korea", + "year": 2015 + }, + { + "income": 34644, + "lifeExpectancy": 80.7, + "population": 50293439, + "country": "South Korea", + "year": 2015 + }, + { + "income": 34186, + "lifeExpectancy": 80.6, + "population": 4528526, + "country": "New Zealand", + "year": 2015 + }, + { + "income": 64304, + "lifeExpectancy": 81.6, + "population": 5210967, + "country": "Norway", + "year": 2015 + }, + { + "income": 24787, + "lifeExpectancy": 77.3, + "population": 38611794, + "country": "Poland", + "year": 2015 + }, + { + "income": 23038, + "lifeExpectancy": 73.13, + "population": 143456918, + "country": "Russia", + "year": 2015 + }, + { + "income": 19360, + "lifeExpectancy": 76.5, + "population": 78665830, + "country": "Turkey", + "year": 2015 + }, + { + "income": 38225, + "lifeExpectancy": 81.4, + "population": 64715810, + "country": "United Kingdom", + "year": 2015 + }, + { + "income": 53354, + "lifeExpectancy": 79.1, + "population": 321773631, + "country": "United States", + "year": 2015 + } +] diff --git a/src/AntDesign.Charts.Docs/wwwroot/data/revenue.json b/src/AntDesign.Charts.Docs/wwwroot/data/revenue.json new file mode 100644 index 0000000..0adb6f7 --- /dev/null +++ b/src/AntDesign.Charts.Docs/wwwroot/data/revenue.json @@ -0,0 +1,434 @@ +[ + { + "UEFA rank": 1, + "country": "Spain", + "UEFA points*": 98.284, + "Clubs": "7/7", + "Revenue per club[ m]": 102.3, + "revenueGroup": "50M+" + }, + { + "UEFA rank": 2, + "country": "England", + "UEFA points*": 71.748, + "Clubs": "6/7", + "Revenue per club[ m]": 220.3, + "revenueGroup": "50M+" + }, + { + "UEFA rank": 3, + "country": "Italy", + "UEFA points*": 69.749, + "Clubs": "6/6", + "Revenue per club[ m]": 95.2, + "revenueGroup": "50M+" + }, + { + "UEFA rank": 4, + "country": "Germany", + "UEFA points*": 67.57, + "Clubs": "3/7", + "Revenue per club[ m]": 134.5, + "revenueGroup": "50M+" + }, + { + "UEFA rank": 5, + "country": "France", + "UEFA points*": 52.415, + "Clubs": "4/6", + "Revenue per club[ m]": 70.9, + "revenueGroup": "50M+" + }, + { + "UEFA rank": 6, + "country": "Russia", + "UEFA points*": 50.182, + "Clubs": "4/5", + "Revenue per club[ m]": 46.4, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 7, + "country": "Portugal", + "UEFA points*": 44.582, + "Clubs": "3/6", + "Revenue per club[ m]": 19.1, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 8, + "country": "Ukraine", + "UEFA points*": 39.133, + "Clubs": "2/5", + "Revenue per club[ m]": 12.5, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 9, + "country": "Belgium", + "UEFA points*": 38.5, + "Clubs": "0/5", + "Revenue per club[ m]": 19.7, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 10, + "country": "Turkey", + "UEFA points*": 34.8, + "Clubs": "1/5", + "Revenue per club[ m]": 36, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 11, + "country": "Austria", + "UEFA points*": 29.85, + "Clubs": "1/4", + "Revenue per club[ m]": 12.9, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 12, + "country": "Netherlands", + "UEFA points*": 29.749, + "Clubs": "0/5", + "Revenue per club[ m]": 24.9, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 13, + "country": "Czech Republic", + "UEFA points*": 29.175, + "Clubs": "1/5", + "Revenue per club[ m]": 3.2, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 14, + "country": "Switzerland", + "UEFA points*": 28.8, + "Clubs": "1/5", + "Revenue per club[ m]": 21.1, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 15, + "country": "Greece", + "UEFA points*": 28.2, + "Clubs": "1/5", + "Revenue per club[ m]": 7.8, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 16, + "country": "Croatia", + "UEFA points*": 26, + "Clubs": "0/4", + "Revenue per club[ m]": 4.3, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 17, + "country": "Denmark", + "UEFA points*": 25.95, + "Clubs": "1/4", + "Revenue per club[ m]": 11.9, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 18, + "country": "Israel", + "UEFA points*": 21.75, + "Clubs": "0/4", + "Revenue per club[ m]": 4.4, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 19, + "country": "Cyprus", + "UEFA points*": 21.55, + "Clubs": "0/4", + "Revenue per club[ m]": 3.3, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 20, + "country": "Poland", + "UEFA points*": 20.125, + "Clubs": "0/4", + "Revenue per club[ m]": 6.7, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 21, + "country": "Romania", + "UEFA points*": 20.05, + "Clubs": "1/5", + "Revenue per club[ m]": 5.1, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 22, + "country": "Sweden", + "UEFA points*": 19.475, + "Clubs": "1/4", + "Revenue per club[ m]": 10.4, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 23, + "country": "Azerbaijan", + "UEFA points*": 19.125, + "Clubs": "0/4", + "Revenue per club[ m]": 4, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 24, + "country": "Bulgaria", + "UEFA points*": 19.125, + "Clubs": "1/4", + "Revenue per club[ m]": 4.2, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 25, + "country": "Belarus", + "UEFA points*": 18.625, + "Clubs": "0/4", + "Revenue per club[ m]": 4.2, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 26, + "country": "Serbia", + "UEFA points*": 18.25, + "Clubs": "2/4", + "Revenue per club[ m]": 1.6, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 27, + "country": "Scotland", + "UEFA points*": 18.125, + "Clubs": "1/4", + "Revenue per club[ m]": 11.1, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 28, + "country": "Kazakhstan", + "UEFA points*": 17.875, + "Clubs": "1/4", + "Revenue per club[ m]": 11.1, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 29, + "country": "Norway", + "UEFA points*": 17.425, + "Clubs": "0/4", + "Revenue per club[ m]": 9, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 30, + "country": "Slovenia", + "UEFA points*": 14.5, + "Clubs": "0/4", + "Revenue per club[ m]": 1.5, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 31, + "country": "Liechtenstein", + "UEFA points*": 13, + "Clubs": "0/1", + "Revenue per club[ m]": 1.5, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 32, + "country": "Slovakia", + "UEFA points*": 12.125, + "Clubs": "0/4", + "Revenue per club[ m]": 2.2, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 33, + "country": "Moldova", + "UEFA points*": 10, + "Clubs": "0/4", + "Revenue per club[ m]": 0.6, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 34, + "country": "Albania", + "UEFA points*": 8.5, + "Clubs": "0/4", + "Revenue per club[ m]": 0.7, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 35, + "country": "Iceland", + "UEFA points*": 8.25, + "Clubs": "0/4", + "Revenue per club[ m]": 1.1, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 36, + "country": "Hungary", + "UEFA points*": 8.125, + "Clubs": "0/4", + "Revenue per club[ m]": 5.5, + "revenueGroup": "5M to 50M" + }, + { + "UEFA rank": 37, + "country": "FYR Macedonia", + "UEFA points*": 7.5, + "Clubs": "0/4", + "Revenue per club[ m]": 0.8, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 38, + "country": "Finland", + "UEFA points*": 6.9, + "Clubs": "0/4", + "Revenue per club[ m]": 2, + "revenueGroup": "1M to 5M" + }, + { + "UEFA rank": 39, + "country": "Republic of Ireland", + "UEFA points*": 6.7, + "Clubs": "0/4", + "Revenue per club[ m]": 0.9, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 40, + "country": "Bosnia and Herzegovina", + "UEFA points*": 6.625, + "Clubs": "0/4", + "Revenue per club[ m]": 0.6, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 41, + "country": "Latvia", + "UEFA points*": 5.625, + "Clubs": "0/4", + "Revenue per club[ m]": 0.4, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 42, + "country": "Estonia", + "UEFA points*": 5.5, + "Clubs": "0/4", + "Revenue per club[ m]": 0.4, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 43, + "country": "Lithuania", + "UEFA points*": 5.375, + "Clubs": "0/4", + "Revenue per club[ m]": 0.6, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 44, + "country": "Montenegro", + "UEFA points*": 5, + "Clubs": "0/4", + "Revenue per club[ m]": 0.4, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 45, + "country": "Georgia", + "UEFA points*": 5, + "Clubs": "0/4", + "Revenue per club[ m]": 0.7, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 46, + "country": "Armenia", + "UEFA points*": 4.875, + "Clubs": "0/4", + "Revenue per club[ m]": 0.5, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 47, + "country": "Malta", + "UEFA points*": 4.5, + "Clubs": "0/4", + "Revenue per club[ m]": 0.4, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 48, + "country": "Luxembourg", + "UEFA points*": 4.375, + "Clubs": "0/4", + "Revenue per club[ m]": 0.7, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 49, + "country": "Northern Ireland", + "UEFA points*": 4.25, + "Clubs": "0/4", + "Revenue per club[ m]": 0.8, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 50, + "country": "Wales", + "UEFA points*": 3.875, + "Clubs": "0/4", + "Revenue per club[ m]": 0.5, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 51, + "country": "Faroe Islands", + "UEFA points*": 3.75, + "Clubs": "0/4", + "Revenue per club[ m]": 0.5, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 52, + "country": "Gibraltar", + "UEFA points*": 3, + "Clubs": "0/3", + "Revenue per club[ m]": 0.3, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 53, + "country": "Andorra", + "UEFA points*": 1.331, + "Clubs": "0/3", + "Revenue per club[ m]": 0.2, + "revenueGroup": "0.1M to 1M" + }, + { + "UEFA rank": 54, + "country": "San Marino", + "UEFA points*": 0.499, + "Clubs": "0/3", + "Revenue per club[ m]": 0.1, + "revenueGroup": "0.1M to 1M" + } +] \ No newline at end of file diff --git a/src/AntDesign.Charts/Components/Configs/Label.cs b/src/AntDesign.Charts/Components/Configs/Label.cs index 4202c50..0a8c988 100644 --- a/src/AntDesign.Charts/Components/Configs/Label.cs +++ b/src/AntDesign.Charts/Components/Configs/Label.cs @@ -75,6 +75,9 @@ namespace AntDesign.Charts public bool? AutoRotate { get; set; } [JsonPropertyName("field")] public string Field { get; set; } + + [JsonPropertyName("text")] + public string[] Text { get; set; } } } diff --git a/src/AntDesign.Charts/Components/Plots/Scatter/ScatterConfig.cs b/src/AntDesign.Charts/Components/Plots/Scatter/ScatterConfig.cs index ba68620..da16796 100644 --- a/src/AntDesign.Charts/Components/Plots/Scatter/ScatterConfig.cs +++ b/src/AntDesign.Charts/Components/Plots/Scatter/ScatterConfig.cs @@ -142,7 +142,7 @@ namespace AntDesign.Charts [JsonPropertyName("lineStyle")] public object LineStyle { get; set; } [JsonPropertyName("label")] - public OneOf Label { get; set; } + public OneOf Label { get; set; } } public class QuadrantConfig : IQuadrantConfig @@ -159,8 +159,10 @@ namespace AntDesign.Charts public object RegionStyleMapping => RegionStyle.Value; [JsonPropertyName("lineStyle")] public object LineStyle { get; set; } + [JsonIgnore] + public OneOf Label { get; set; } [JsonPropertyName("label")] - public OneOf Label { get; set; } + public object LabelMapping => Label.Value; } public interface ITrendlineConfig