library("rvest")
## Loading required package: xml2
url <- "https://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population"
QB_Data <- read_html(url)
QB<-QB_Data%>%html_nodes("table")%>%.[-4]%>%html_table(fill=TRUE)
QB
## [[1]]
## X1
## 1 NA
## X2
## 1 It has been suggested that List of countries by population (United Nations) be merged into this article. (Discuss) Proposed since January 2018.
##
## [[2]]
## Rank Country(or dependent territory) Population
## 1 1 China[Note 2] 1,393,640,000
## 2 2 India[Note 3] 1,335,970,000
## 3 3 United States[Note 4] 327,697,000
## 4 4 Indonesia 265,015,300
## 5 5 Brazil 209,481,000
## 6 6 Pakistan 201,740,000
## 7 7 Nigeria 197,240,451
## 8 8 Bangladesh 165,058,000
## 9 9 Russia[Note 5] 146,877,088
## 10 10 Japan 126,490,000
## 11 11 Mexico 124,737,789
## 12 12 Ethiopia 107,534,882
## 13 13 Philippines 106,351,000
## 14 14 Egypt 97,432,300
## 15 15 Vietnam 94,660,000
## 16 16 DR Congo 84,004,989
## 17 17 Germany 82,740,900
## 18 18 Turkey 81,916,871
## 19 19 Iran 81,724,200
## 20 20 Thailand 69,183,173
## 21 21 France[Note 6] 67,272,000
## 22 22 United Kingdom[Note 7] 66,040,229
## 23 23 Italy 60,436,469
## 24 24 South Africa 57,725,600
## 25 25 Tanzania[Note 8] 54,199,163
## 26 26 Myanmar 53,862,731
## 27 27 South Korea 51,635,256
## 28 28 Kenya 50,950,879
## 29 29 Colombia 49,911,200
## 30 30 Spain 46,659,302
## 31 31 Argentina 44,494,502
## 32 32 Algeria 42,545,964
## 33 33 Ukraine[Note 9] 42,279,611
## 34 34 Sudan 40,765,625
## 35 35 Iraq 39,339,753
## 36 36 Uganda 38,823,100
## 37 37 Poland 38,433,600
## 38 38 Canada 37,201,900
## 39 39 Morocco[Note 10] 34,763,000
## 40 40 Saudi Arabia 33,413,660
## 41 41 Uzbekistan 32,653,900
## 42 42 Malaysia 32,640,700
## 43 43 Venezuela 31,828,110
## 44 44 Afghanistan 31,575,018
## 45 45 Peru 31,237,385
## 46 46 Ghana 29,614,337
## 47 47 Angola 29,250,009
## 48 48 Nepal 29,218,867
## 49 49 Yemen 28,915,284
## 50 50 Mozambique 28,861,863
## 51 51 Madagascar 26,262,810
## 52 52 North Korea 25,610,672
## 53 53 Australia 25,037,000
## 54 54 Ivory Coast 24,571,044
## 55 55 Cameroon 23,794,164
## 56 56 Taiwan[Note 11] 23,576,705
## 57 57 Niger 21,466,863
## 58 58 Sri Lanka 21,444,000
## 59 59 Burkina Faso 20,244,080
## 60 60 Romania 19,638,000
## 61 61 Mali 19,107,706
## 62 62 Syria 18,284,407
## 63 63 Kazakhstan 18,272,400
## 64 64 Malawi 17,931,637
## 65 65 Chile 17,574,003
## 66 66 Guatemala 17,302,084
## 67 67 Netherlands 17,248,100
## 68 68 Ecuador 17,058,500
## 69 69 Zambia 16,887,720
## 70 70 Cambodia 16,069,921
## 71 71 Senegal 15,726,037
## 72 72 Chad 15,353,184
## 73 73 Somalia[Note 12] 15,181,925
## 74 74 Zimbabwe 14,848,905
## 75 75 South Sudan 12,323,419
## 76 76 Rwanda 12,001,136
## 77 77 Guinea 11,883,516
## 78 78 Tunisia 11,446,300
## 79 79 Belgium 11,414,214
## 80 80 Benin 11,362,269
## 81 81 Bolivia 11,307,314
## 82 82 Cuba 11,221,060
## 83 83 Haiti 11,112,945
## 84 84 Greece 10,768,193
## 85 85 Burundi 10,681,186
## 86 86 Czech Republic 10,613,350
## 87 87 Portugal 10,291,027
## 88 88 Dominican Republic 10,266,149
## 89 89 Jordan 10,222,500
## 90 90 Sweden 10,171,524
## 91 91 Azerbaijan 9,898,085
## 92 92 Hungary 9,771,000
## 93 93 United Arab Emirates 9,541,615
## 94 94 Belarus 9,478,200
## 95 95 Honduras 9,012,229
## 96 96 Tajikistan 8,931,000
## 97 97 Israel 8,902,380
## 98 98 Austria 8,838,171
## 99 99 Papua New Guinea 8,558,800
## 100 100 Switzerland 8,492,956
## 101 101 Sierra Leone 7,719,729
## 102 – Hong Kong (China) 7,448,900
## 103 102 Togo 7,352,000
## 104 103 Paraguay 7,052,983
## 105 104 Bulgaria 7,050,034
## 106 105 Serbia[Note 13] 7,001,444
## 107 106 Laos 6,961,210
## 108 107 El Salvador 6,643,359
## 109 108 Libya 6,470,956
## 110 109 Nicaragua 6,284,757
## 111 110 Kyrgyzstan 6,309,300
## 112 111 Lebanon 6,093,509
## 113 112 Turkmenistan 5,851,466
## 114 113 Denmark 5,789,957
## 115 114 Singapore 5,612,253
## 116 115 Finland 5,516,343
## 117 116 Slovakia 5,443,120
## 118 117 Republic of the Congo 5,399,895
## 119 118 Norway 5,302,778
## 120 119 Eritrea 5,187,948
## 121 120 Oman 5,005,634
## 122 121 Costa Rica 5,003,393
## 123 122 New Zealand 4,898,200
## 124 123 Ireland 4,792,500
## 125 124 Palestine 4,780,978
## 126 125 Central African Republic 4,737,423
## 127 126 Liberia 4,382,387
## 128 127 Kuwait 4,226,920
## 129 128 Croatia 4,192,588
## 130 129 Panama 4,158,783
## 131 130 Mauritania 3,984,233
## 132 131 Bosnia and Herzegovina 3,784,678
## 133 132 Georgia[Note 15] 3,729,600
## 134 133 Moldova[Note 16] 3,550,900
## 135 134 Uruguay 3,505,985
## 136 – Puerto Rico (U.S.) 3,337,177
## 137 135 Mongolia 3,222,020
## 138 136 Armenia 2,969,800
## 139 137 Albania 2,870,324
## 140 138 Lithuania 2,800,738
## 141 139 Jamaica 2,728,864
## 142 140 Qatar 2,450,285
## 143 141 Namibia 2,413,643
## 144 142 Botswana 2,302,878
## 145 143 Lesotho 2,263,010
## 146 144 The Gambia 2,163,765
## 147 145 Macedonia 2,075,301
## 148 146 Gabon 2,067,561
## 149 147 Slovenia 2,066,880
## 150 148 Latvia 1,925,700
## 151 – Kosovo[Note 17] 1,798,506
## 152 149 Guinea-Bissau 1,584,763
## 153 150 Bahrain 1,496,300
## 154 151 Trinidad and Tobago 1,356,633
## 155 152 Estonia 1,319,133
## 156 153 Mauritius 1,264,887
## 157 154 East Timor 1,261,407
## 158 155 Equatorial Guinea 1,222,442
## 159 156 Swaziland 1,159,250
## 160 157 Djibouti 1,049,001
## 161 158 Fiji 884,887
## 162 159 Cyprus 854,800
## 163 160 Comoros 850,688
## 164 161 Guyana 782,225
## 165 162 Bhutan 727,145
## 166 163 Solomon Islands 667,044
## 167 – Macau (China) 658,900
## 168 164 Montenegro 622,359
## 169 165 Luxembourg 602,005
## 170 166 Suriname 568,301
## 171 – Western Sahara[Note 18] 567,421
## 172 167 Cape Verde 544,081
## 173 168 Malta 475,701
## 174 – Transnistria[Note 19] 470,600
## 175 169 Brunei 422,678
## 176 170 Belize 395,882
## 177 171 Bahamas 381,320
## 178 172 Maldives 378,114
## 179 173 Iceland 353,070
## 180 – Northern Cyprus[Note 20] 335,455
## 181 174 Vanuatu 304,500
## 182 175 Barbados 286,388
## 183 – New Caledonia (France) 278,500
## 184 – French Polynesia (France) 275,918
## 185 – Abkhazia[Note 21] 240,705
## 186 176 Samoa 199,052
## 187 177 São Tomé and Príncipe 197,700
## 188 – Guam (U.S.) 172,400
## 189 178 Saint Lucia 178,844
## 190 – Curaçao (Netherlands) 160,337
## 191 – Artsakh[Note 22] 145,053
## 192 179 Kiribati 120,100
## 193 – Aruba (Netherlands) 110,882
## 194 180 Saint Vincent and the Grenadines 109,557
## 195 181 Federated States of Micronesia 105,300
## 196 – United States Virgin Islands (U.S.) 104,914
## 197 – Jersey (UK) 104,200
## 198 182 Grenada 103,328
## 199 183 Tonga 100,651
## 200 184 Seychelles 94,205
## 201 185 Antigua and Barbuda 86,295
## 202 – Isle of Man (UK) 83,314
## 203 186 Andorra 78,264
## 204 187 Dominica 71,293
## 205 – Bermuda (UK) 63,779
## 206 – Guernsey (UK) 62,723
## 207 – Cayman Islands (UK) 60,413
## 208 – American Samoa (U.S.) 56,700
## 209 – Northern Mariana Islands (U.S.) 56,200
## 210 – Greenland (Denmark) 56,025
## 211 188 Marshall Islands 55,500
## 212 – South Ossetia[Note 23] 53,532
## 213 – Faroe Islands (Denmark) 51,043
## 214 189 Saint Kitts and Nevis 46,204
## 215 – Sint Maarten (Netherlands) 39,410
## 216 190 Monaco 38,300
## 217 191 Liechtenstein 38,111
## 218 – Turks and Caicos Islands (UK) 37,910
## 219 – Saint-Martin (France) 36,457
## 220 – Gibraltar (UK) 33,573
## 221 192 San Marino 33,344
## 222 – British Virgin Islands (UK) 28,514
## 223 – Cook Islands (NZ) 18,100
## 224 193 Palau 17,900
## 225 – Anguilla (UK) 13,452
## 226 – Wallis and Futuna (France) 11,700
## 227 194 Tuvalu 10,640
## 228 195 Nauru 10,084
## 229 – Saint Barthélemy (France) 9,417
## 230 – Saint Pierre and Miquelon (France) 6,286
## 231 – Saint Helena, Ascensionand Tristan da Cunha (UK) 5,633
## 232 – Montserrat (UK) 4,922
## 233 – Falkland Islands (UK) 2,563
## 234 – Christmas Island (Australia) 1,843
## 235 – Norfolk Island (Australia) 1,748
## 236 – Niue (NZ) 1,611
## 237 – Tokelau (NZ) 1,499
## 238 196 Vatican City 800
## 239 – Cocos (Keeling) Islands (Australia) 544
## 240 – Pitcairn Islands (UK) 50
## Date % of worldpopulation
## 1 August 22, 2018 18.2%
## 2 August 22, 2018 17.5%
## 3 August 22, 2018 4.29%
## 4 July 1, 2018 3.47%
## 5 August 22, 2018 2.74%
## 6 August 22, 2018 2.64%
## 7 August 22, 2018 2.58%
## 8 August 22, 2018 2.16%
## 9 January 1, 2018 1.92%
## 10 August 1, 2018 1.65%
## 11 July 1, 2018 1.63%
## 12 July 1, 2018 1.41%
## 13 August 22, 2018 1.39%
## 14 August 22, 2018 1.27%
## 15 July 1, 2018 1.24%
## 16 July 1, 2018 1.1%
## 17 September 30, 2017 1.08%
## 18 July 1, 2018 1.07%
## 19 August 22, 2018 1.07%
## 20 July 1, 2018 0.9%
## 21 July 1, 2018 0.88%
## 22 June 30, 2017 0.86%
## 23 March 31, 2018 0.79%
## 24 July 1, 2018 0.76%
## 25 July 1, 2018 0.71%
## 26 July 1, 2018 0.7%
## 27 July 1, 2018 0.68%
## 28 July 1, 2018 0.67%
## 29 August 22, 2018 0.653%
## 30 January 1, 2018 0.61%
## 31 July 1, 2018 0.58%
## 32 July 1, 2018 0.56%
## 33 June 1, 2018 0.55%
## 34 August 22, 2018 0.53%
## 35 July 1, 2018 0.51%
## 36 July 1, 2018 0.51%
## 37 December 31, 2017 0.5%
## 38 August 22, 2018 0.487%
## 39 August 22, 2018 0.455%
## 40 January 1, 2018 0.44%
## 41 January 1, 2018 0.43%
## 42 August 22, 2018 0.427%
## 43 July 1, 2018 0.42%
## 44 July 1, 2018 0.41%
## 45 October 22, 2017 0.41%
## 46 January 1, 2018 0.39%
## 47 January 1, 2018 0.38%
## 48 July 1, 2018 0.38%
## 49 July 1, 2018 0.38%
## 50 August 1, 2017 0.38%
## 51 July 1, 2018 0.34%
## 52 July 1, 2018 0.33%
## 53 August 22, 2018 0.327%
## 54 July 1, 2017 0.32%
## 55 January 1, 2018 0.31%
## 56 July 1, 2018 0.31%
## 57 July 1, 2018 0.28%
## 58 July 1, 2017 0.28%
## 59 July 1, 2018 0.26%
## 60 January 1, 2017 0.26%
## 61 July 1, 2018 0.25%
## 62 July 1, 2018 0.24%
## 63 July 1, 2018 0.24%
## 64 July 1, 2018 0.23%
## 65 April 19, 2017 0.23%
## 66 July 1, 2018 0.23%
## 67 August 22, 2018 0.226%
## 68 August 22, 2018 0.223%
## 69 July 1, 2018 0.22%
## 70 July 1, 2018 0.21%
## 71 July 1, 2018 0.21%
## 72 July 1, 2018 0.2%
## 73 July 1, 2018 0.2%
## 74 July 1, 2018 0.19%
## 75 July 1, 2018 0.16%
## 76 July 1, 2018 0.16%
## 77 July 1, 2018 0.16%
## 78 July 1, 2017 0.15%
## 79 June 1, 2018 0.15%
## 80 July 1, 2018 0.15%
## 81 July 1, 2018 0.15%
## 82 December 31, 2017 0.15%
## 83 July 1, 2018 0.15%
## 84 January 1, 2017 0.14%
## 85 July 1, 2018 0.14%
## 86 March 31, 2018 0.14%
## 87 December 31, 2017 0.13%
## 88 July 1, 2018 0.13%
## 89 August 22, 2018 0.134%
## 90 June 30, 2018 0.13%
## 91 January 1, 2018 0.13%
## 92 January 1, 2018 0.13%
## 93 July 1, 2018 0.12%
## 94 July 1, 2018 0.12%
## 95 July 1, 2018 0.12%
## 96 January 1, 2018 0.12%
## 97 August 22, 2018 0.116%
## 98 July 1, 2018 0.12%
## 99 July 1, 2018 0.11%
## 100 March 31, 2018 0.11%
## 101 July 1, 2018 0.101%
## 102 July 1, 2018 0.097%
## 103 July 1, 2018 0.096%
## 104 January 1, 2018 0.092%
## 105 December 31, 2017 0.092%
## 106 January 1, 2018 0.092%
## 107 July 1, 2018 0.091%
## 108 July 1, 2018 0.087%
## 109 July 1, 2018 0.085%
## 110 July 1, 2018 0.082%
## 111 June 1, 2018 0.083%
## 112 July 1, 2018 0.08%
## 113 July 1, 2018 0.077%
## 114 July 1, 2018 0.076%
## 115 June 30, 2017 0.073%
## 116 June 30, 2018 0.072%
## 117 January 1, 2018 0.071%
## 118 July 1, 2018 0.071%
## 119 April 1, 2018 0.069%
## 120 July 1, 2018 0.068%
## 121 August 22, 2018 0.065%
## 122 June 30, 2018 0.065%
## 123 August 22, 2018 0.0641%
## 124 April 1, 2017 0.063%
## 125 December 1, 2017 0.063%
## 126 July 1, 2018 0.062%
## 127 July 1, 2018 0.057%
## 128 January 1, 2018 0.055%
## 129 August 22, 2018 0.055%
## 130 July 1, 2018 0.054%
## 131 July 1, 2018 0.052%
## 132 August 22, 2018 0.05%
## 133 January 1, 2018 0.049%
## 134 January 1, 2017 0.046%
## 135 June 30, 2018 0.046%
## 136 July 1, 2017 0.044%
## 137 August 22, 2018 0.042%
## 138 June 30, 2018 0.039%
## 139 January 1, 2018 0.038%
## 140 July 1, 2018 0.037%
## 141 December 31, 2017 0.036%
## 142 July 1, 2018 0.032%
## 143 July 1, 2018 0.032%
## 144 July 1, 2018 0.03%
## 145 July 1, 2018 0.03%
## 146 July 1, 2018 0.028%
## 147 December 31, 2017 0.027%
## 148 July 1, 2018 0.027%
## 149 January 1, 2018 0.027%
## 150 July 1, 2018 0.025%
## 151 December 31, 2017 0.024%
## 152 July 1, 2018 0.021%
## 153 July 1, 2018 0.02%
## 154 July 1, 2017 0.018%
## 155 January 1, 2018 0.017%
## 156 July 1, 2017 0.017%
## 157 July 1, 2018 0.016%
## 158 July 4, 2015 0.016%
## 159 July 1, 2018 0.015%
## 160 July 1, 2018 0.014%
## 161 September 17, 2017 0.012%
## 162 December 31, 2016 0.011%
## 163 July 1, 2018 0.011%
## 164 July 1, 2018 0.0102%
## 165 May 30, 2017 0.01%
## 166 July 1, 2018 0.0087%
## 167 June 30, 2018 0.0086%
## 168 January 1, 2018 0.0081%
## 169 January 1, 2018 0.0079%
## 170 July 1, 2018 0.0074%
## 171 July 1, 2018 0.0074%
## 172 July 1, 2018 0.0071%
## 173 December 31, 2017 0.0062%
## 174 July 1, 2016 0.0062%
## 175 July 1, 2016 0.0055%
## 176 April 1, 2018 0.0052%
## 177 July 1, 2018 0.005%
## 178 December 31, 2017 0.0049%
## 179 June 30, 2018 0.0046%
## 180 July 1, 2016 0.0044%
## 181 July 1, 2018 0.004%
## 182 July 1, 2018 0.0037%
## 183 January 1, 2017 0.0036%
## 184 August 17, 2017 0.0036%
## 185 February 28, 2011 0.0031%
## 186 July 1, 2018 0.0026%
## 187 July 1, 2017 0.0026%
## 188 July 1, 2018 0.0023%
## 189 July 1, 2017 0.0023%
## 190 January 1, 2017 0.0021%
## 191 December 1, 2015 0.0019%
## 192 July 1, 2018 0.0016%
## 193 June 30, 2017 0.0015%
## 194 July 1, 2015 0.0014%
## 195 July 1, 2018 0.0014%
## 196 July 1, 2018 0.0014%
## 197 December 31, 2016 0.0014%
## 198 May 12, 2011 0.0014%
## 199 November 30, 2016 0.0013%
## 200 December 31, 2016 0.0012%
## 201 May 27, 2011 0.0011%
## 202 April 24, 2016 0.0011%
## 203 December 31, 2016 0.001%
## 204 May 14, 2011 0.00093%
## 205 May 21, 2016 0.00083%
## 206 March 31, 2016 0.00082%
## 207 December 31, 2015 0.00079%
## 208 July 1, 2018 0.00074%
## 209 July 1, 2018 0.00074%
## 210 July 1, 2018 0.00073%
## 211 July 1, 2018 0.00073%
## 212 October 15, 2015 0.0007%
## 213 July 1, 2018 0.00067%
## 214 May 15, 2011 0.0006%
## 215 January 1, 2016 0.00052%
## 216 December 31, 2017 0.0005%
## 217 December 31, 2017 0.0005%
## 218 July 1, 2016 0.0005%
## 219 January 1, 2015 0.00048%
## 220 December 31, 2015 0.00044%
## 221 May 31, 2018 0.00044%
## 222 July 1, 2013 0.00037%
## 223 December 1, 2016 0.00024%
## 224 July 1, 2018 0.00023%
## 225 May 11, 2011 0.00018%
## 226 July 1, 2018 0.00015%
## 227 November 4, 2012 0.00014%
## 228 October 30, 2011 0.00013%
## 229 January 1, 2015 0.00012%
## 230 January 1, 2015 0.000082%
## 231 February 7, 2016 0.000074%
## 232 May 12, 2011 0.000064%
## 233 April 15, 2012 0.000034%
## 234 August 9, 2016 0.000024%
## 235 August 9, 2016 0.000023%
## 236 September 10, 2011 0.000021%
## 237 October 18, 2016 0.000020%
## 238 January 1, 2014 0.000010%
## 239 August 9, 2016 0.0000071%
## 240 January 1, 2018 0.00000065%
## Source
## 1 Official population clock
## 2 Official population clock
## 3 Official population clock
## 4 Official annual projection
## 5 Official population clock
## 6 Official population clock
## 7 Official population clock
## 8 Official population clock
## 9 Official estimate
## 10 Monthly provisional estimate
## 11 Official annual projection
## 12 UN Projection
## 13 Official population clock
## 14 Official population clock
## 15 Official annual estimate
## 16 UN Projection
## 17 Official annual data
## 18 UN Projection
## 19 Official population clock
## 20 UN Projection
## 21 Monthly official estimate
## 22 Official annual estimate
## 23 Monthly official estimate
## 24 Annual official estimate
## 25 Official annual projection
## 26 Official annual projection
## 27 Annual official estimate
## 28 UN projection
## 29 Official population clock
## 30 Official estimate
## 31 Official annual projection
## 32 Official annual projection
## 33 Monthly official estimate
## 34 Official population clock
## 35 UN projection
## 36 Official annual projection
## 37 Official estimate
## 38 Official population clock
## 39 Official population clock
## 40 Official estimate
## 41 Annual official estimate
## 42 Official population clock
## 43 Official annual projection
## 44 Annual official estimate
## 45 Official census result
## 46 Official projection
## 47 Official projection
## 48 Official annual projection
## 49 UN projection
## 50 Official census result
## 51 UN projection
## 52 UN projection
## 53 Official population clock
## 54 Official estimate
## 55 Annual official projection
## 56 Monthly official estimate
## 57 Annual official projection
## 58 Official estimate
## 59 Annual official projection
## 60 Annual official estimate
## 61 UN projection
## 62 UN projection
## 63 Official estimate
## 64 Annual official projection
## 65 Final or definitive 2017 census result
## 66 Annual official projection
## 67 Official population clock
## 68 Official population clock
## 69 Official annual projection
## 70 Official annual projection
## 71 Official annual projection
## 72 UN projection
## 73 UN projection
## 74 Official annual projection
## 75 Official annual projection
## 76 Official projection annual
## 77 Official projection
## 78 Official estimate
## 79 Monthly official estimate
## 80 Official projection
## 81 Official projection annual
## 82 Annual official estimate
## 83 UN projection
## 84 Official estimate
## 85 Official annual projection
## 86 Official quarterly estimate
## 87 Annual official estimate
## 88 Official projection
## 89 Official population clock
## 90 Official monthly estimate
## 91 Official estimate
## 92 Annual official estimate
## 93 UN projection
## 94 Official quarterly estimate
## 95 Official annual projection
## 96 Official estimate
## 97 Official population clock
## 98 Quarterly provisional figure
## 99 Annual official estimate
## 100 Official provisional figure
## 101 UN projection
## 102 Official estimate
## 103 Official annual projection
## 104 Official estimate
## 105 Official estimate
## 106 Annual official estimate
## 107 UN projection
## 108 Official annual projection
## 109 UN projection
## 110 UN projection
## 111 Official annual estimate
## 112 UN projection
## 113 UN projection
## 114 Official quarterly estimate
## 115 Official annual estimate
## 116 Official monthly estimate
## 117 Official estimate
## 118 UN projection
## 119 Official quarterly estimate
## 120 UN projection
## 121 Official population clock
## 122 Official annual projection
## 123 Official population clock
## 124 Official estimate 2017 census result
## 125 Official census result
## 126 UN projection
## 127 Official projection[Note 14]
## 128 Official annual estimate
## 129 Official population clock
## 130 Annual official projection
## 131 Annual official projection
## 132 Official population clock
## 133 Annual official estimate
## 134 Official estimate
## 135 Official annual projection
## 136 Official estimate
## 137 Official population clock
## 138 Official quarterly estimate
## 139 Annual official estimate
## 140 Monthly official estimate
## 141 Official estimate
## 142 Monthly official estimate
## 143 Official projection
## 144 Official annual projection
## 145 UN projection
## 146 UN projection
## 147 Official estimate
## 148 UN projection
## 149 Official estimate
## 150 Monthly official estimate
## 151 Official annual estimate
## 152 Official annual projection
## 153 Official annual projection
## 154 Official estimate
## 155 Official estimate
## 156 Official estimate
## 157 Official projection
## 158 Preliminary 2015 census result
## 159 Official projection
## 160 Official annual projection
## 161 Official census result
## 162 Official estimate
## 163 Official estimate
## 164 UN projection
## 165 Official census result
## 166 Official annual projection
## 167 Official quarterly estimate
## 168 Official estimate
## 169 Official estimate
## 170 UN projection
## 171 UN projection
## 172 Official annual projection
## 173 Official estimate
## 174 Official estimate
## 175 Official estimate
## 176 Official estimate
## 177 Official annual projection
## 178 Official annual estimate
## 179 Official quarterly estimate
## 180 Official annual estimate
## 181 Annual official estimate
## 182 UN projection
## 183 Annual official estimate
## 184 2017 census results
## 185 2011 census result
## 186 Official projection
## 187 Official estimate
## 188 Annual official estimate
## 189 UN projection
## 190 Annual official estimate
## 191 2015 census result
## 192 Annual official estimate
## 193 Official quarterly estimate
## 194 Official estimate
## 195 Annual official estimate
## 196 UN projection
## 197 Annual official estimate
## 198 2011 census result
## 199 2016 census result
## 200 Official estimate
## 201 Preliminary 2011 census result
## 202 2016 census result
## 203 Annual official estimate
## 204 Preliminary 2011 census result
## 205 2016 Census Preliminary Report
## 206 Official estimate
## 207 Official estimate
## 208 Annual official estimate
## 209 Annual official estimate
## 210 Official estimate
## 211 Annual official estimate
## 212 Preliminary 2015 census result
## 213 Monthly official estimate
## 214 2011 census result
## 215 Official estimate
## 216 Annual official estimate
## 217 Semi annual official estimate
## 218 Official estimate
## 219 Annual official estimate
## 220 Official estimate
## 221 Monthly official estimate
## 222 Official estimate
## 223 2016 Census Preliminary Report
## 224 Annual official estimate
## 225 Preliminary 2011 census result
## 226 Annual official estimate
## 227 2012 census result
## 228 2011 census result
## 229 Annual official estimate
## 230 Annual official estimate
## 231 2016 census result
## 232 2011 census result
## 233 2012 census result
## 234 2016 census result
## 235 2016 census result
## 236 2011 census result
## 237 2016 census result
## 238 Official estimate
## 239 2016 census result
## 240 Official estimate
##
## [[3]]
## vteLists of countries by population statistics
## 1 Global
## 2 (Sub-)continents
## 3 Intercontinental
## 4 Cities/urban regions
## 5 Past and future
## 6 Population density
## 7 Growth indicators
## 8 Other demographics
## 9 Health
## 10 Education and innovation
## 11 Economic
## 12 List of international rankings\nList of top international rankings by country\nLists by country
## vteLists of countries by population statistics
## 1 Current population\nCurrent population (United Nations)
## 2 Africa\nAsia\nEurope\nNorth America\nCaribbean\nOceania\nSouth America
## 3 Americas\nArab world\nCommonwealth of Nations\nEurasia\nEuropean Union\nIslands\nLatin America\nMiddle East
## 4 National capitals\nCities proper\nMetropolitan areas\nUrban areas\nMegacities\nMegalopolises
## 5 Past population (United Nations estimates)\nPast and future population\n1\n1000\n1500\n1600\n1700\n1800\n1900\n1907\n1939\n1989\n2000\n2005\n2010\nFuture population
## 6 Current density\nCurrent real density based on food growing capacity
## 7 Population growth rate\nNatural increase\nBirth rate\nMortality rate\nFertility rate
## 8 Age at first marriage\nDivorce rate\nEthnic and cultural diversity level\nImmigrant population\nLinguistic diversity\nMedian age\nNet migration rate\nNumber of households\nSex ratio\nUrban population\nUrbanization
## 9 Antiviral medications for pandemic influenza\nHIV/AIDS adult prevalence rate\nInfant and under-five mortality rates\nLife expectancy\nPercentage suffering from undernourishment\nHealth expenditure covered by government\nSuicide rate\nTotal health expenditure per capita\nBody Mass Index (BMI)
## 10 Bloomberg Innovation Index\nEducation Index\nInternational Innovation Index\nInnovation Union Scoreboard\nLiteracy rate\nProgramme for the International Assessment of Adult Competencies\nProgress in International Reading Literacy Study\nStudent skills\nTertiary education attainment\nTrends in International Mathematics and Science Study\nWomen's average years in school\nWorld Intellectual Property Indicators
## 11 Development aid given\nOfficial Development Assistance received\nEmployment rate\nIrrigated land area\nHuman Development Index\nby country\ninequality-adjusted\nHuman Poverty Index\nImports\nIncome equality\nJob security (OECD)\nLabour force\nNumber of millionaires (US dollars)\nNumber of billionaires (US dollars)\nPercentage living in poverty\nPublic sector\nSen social welfare function\nUnemployment rate
## 12 List of international rankings\nList of top international rankings by country\nLists by country
The table provided is a simple list of all the countries and dependent territories based on the population size.