This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

library(XML)

theURL <- "http://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population"
bowlPool <- readHTMLTable(theURL, which = 1, header = FALSE, stringsAsFactors = FALSE)
bowlPool
##       V1                                                V2            V3
## 1   Rank                  Country (or dependent territory)    Population
## 2      1                                     China[Note 2] 1,369,370,000
## 3      2                                             India 1,269,960,000
## 4      3                                     United States   320,825,000
## 5      4                                         Indonesia   255,461,700
## 6      5                                            Brazil   204,186,000
## 7      6                                          Pakistan   189,552,000
## 8      7                                           Nigeria   183,523,000
## 9      8                                        Bangladesh   158,189,000
## 10     9                                    Russia[Note 3]   146,267,288
## 11    10                                             Japan   126,910,000
## 12    11                                            Mexico   121,005,815
## 13    12                                       Philippines   101,316,100
## 14    13                                           Vietnam    91,583,000
## 15    14                                          Ethiopia    90,076,012
## 16    15                                             Egypt    88,370,600
## 17    16                                           Germany    80,925,000
## 18    17                                              Iran    78,273,100
## 19    18                                            Turkey    77,695,904
## 20    19                  Democratic Republic of the Congo    71,246,000
## 21    20                                    France[Note 4]    66,109,000
## 22    21                                          Thailand    65,104,000
## 23    22                                    United Kingdom    64,800,000
## 24    23                                             Italy    60,788,845
## 25    24                                      South Africa    54,002,000
## 26    25                                             Burma    51,419,420
## 27    26                                       South Korea    51,342,881
## 28    27                                          Colombia    48,089,400
## 29    28                                          Tanzania    47,421,786
## 30    29                                             Kenya    46,749,000
## 31    30                                             Spain    46,464,053
## 32    31                                         Argentina    43,131,966
## 33    32                                   Ukraine[Note 5]    42,910,885
## 34    33                                           Algeria    39,500,000
## 35    34                                            Poland    38,484,000
## 36    35                                             Sudan    38,435,252
## 37    36                                              Iraq    36,004,552
## 38    37                                            Canada    35,702,707
## 39    38                                            Uganda    34,856,813
## 40    39                                        Morocco[7]    33,848,242
## 41    40                                      Saudi Arabia    31,521,418
## 42    41                                              Peru    31,151,643
## 43    42                                         Venezuela    30,620,404
## 44    43                                          Malaysia    30,556,200
## 45    44                                        Uzbekistan    30,492,800
## 46    45                                             Nepal    28,037,904
## 47    46                                             Ghana    27,043,093
## 48    47                                       Afghanistan    26,556,800
## 49    48                                             Yemen    25,956,000
## 50    49                                        Mozambique    25,727,911
## 51    50                                       North Korea    25,155,000
## 52    51                                            Angola    24,383,301
## 53    52                                         Australia    23,815,300
## 54    53                                    Taiwan[Note 6]    23,449,287
## 55    54                                             Syria    23,154,199
## 56    55                                       Ivory Coast    22,671,331
## 57    56                                        Madagascar    21,842,167
## 58    57                                          Cameroon    21,143,237
## 59    58                                         Sri Lanka    20,675,000
## 60    59                                           Romania    19,942,642
## 61    60                                             Niger    19,268,000
## 62    61                                      Burkina Faso    18,450,494
## 63    62                                             Chile    18,006,407
## 64    63                                        Kazakhstan    17,458,500
## 65    64                                       Netherlands    16,898,700
## 66    65                                            Malawi    16,310,431
## 67    66                                              Mali    16,259,000
## 68    67                                         Guatemala    15,806,675
## 69    68                                            Zambia    15,473,905
## 70    69                                           Ecuador    15,466,000
## 71    70                                          Cambodia    15,405,157
## 72    71                                              Chad    13,606,000
## 73    72                                           Senegal    13,508,715
## 74    73                                          Zimbabwe    13,061,239
## 75    74                                       South Sudan    11,892,934
## 76    75                                           Bolivia    11,410,651
## 77    76                                           Belgium    11,239,755
## 78    77                                              Cuba    11,210,064
## 79    78                                   Somalia[Note 8]    11,123,000
## 80    79                                            Rwanda    10,996,891
## 81    80                                            Greece    10,992,589
## 82    81                                           Tunisia    10,982,754
## 83    82                                             Haiti    10,911,819
## 84    83                                            Guinea    10,628,972
## 85    84                                    Czech Republic    10,538,275
## 86    85                                          Portugal    10,477,800
## 87    86                                Dominican Republic    10,378,267
## 88    87                                             Benin    10,315,244
## 89    88                                           Hungary     9,849,000
## 90    89                                           Burundi     9,823,827
## 91    90                                            Sweden     9,760,142
## 92    91                                        Azerbaijan     9,611,700
## 93    92                              United Arab Emirates     9,577,000
## 94    93                                           Belarus     9,481,000
## 95    94                                          Honduras     8,725,111
## 96    95                                           Austria     8,579,747
## 97    96                                        Tajikistan     8,354,000
## 98    97                                            Israel     8,320,100
## 99    98                                       Switzerland     8,211,700
## 100   99                                  Papua New Guinea     7,398,500
## 101  100                                 Hong Kong (China)     7,264,100
## 102  101                                          Bulgaria     7,202,198
## 103  102                                              Togo     7,171,000
## 104  103                                    Serbia[Note 9]     7,146,759
## 105  104                                          Paraguay     7,003,406
## 106  105                                              Laos     6,802,000
## 107  106                                           Eritrea     6,738,000
## 108  107                                            Jordan     6,719,410
## 109  108                                       El Salvador     6,401,240
## 110  109                                      Sierra Leone     6,319,000
## 111  110                                             Libya     6,317,000
## 112  111                                         Nicaragua     6,134,270
## 113  112                                        Kyrgyzstan     5,895,100
## 114  113                                           Denmark     5,659,715
## 115  114                                           Finland     5,478,002
## 116  115                                         Singapore     5,469,700
## 117  116                                          Slovakia     5,421,349
## 118  117                                            Norway     5,165,802
## 119  118                          Central African Republic     4,803,000
## 120  119                                        Costa Rica     4,773,130
## 121  120                                      Turkmenistan     4,751,120
## 122  121                                         Palestine     4,682,467
## 123  122                             Republic of the Congo     4,671,000
## 124  123                                           Ireland     4,609,600
## 125  124                                       New Zealand     4,576,170
## 126  125                                           Liberia     4,503,000
## 127  126                                  Georgia[Note 10]     4,490,500
## 128  127                                           Croatia     4,267,558
## 129  128                                              Oman     4,161,705
## 130  129                                           Lebanon     4,104,000
## 131  130                            Bosnia and Herzegovina     3,791,622
## 132  131                                            Panama     3,764,166
## 133  132                                        Mauritania     3,631,775
## 134  133                                  Moldova[Note 11]     3,555,200
## 135  134                                Puerto Rico (U.S.)     3,548,397
## 136  135                                           Uruguay     3,404,189
## 137  136                                            Kuwait     3,268,431
## 138  137                                          Mongolia     3,014,385
## 139  138                                           Armenia     3,013,900
## 140  139                                         Lithuania     2,916,443
## 141  140                                           Albania     2,893,005
## 142  141                                           Jamaica     2,717,991
## 143  142                                             Qatar     2,334,029
## 144  143                                           Namibia     2,280,700
## 145  144                                           Lesotho     2,120,000
## 146  145                                          Slovenia     2,066,341
## 147  146                                         Macedonia     2,065,769
## 148  147                                          Botswana     2,056,000
## 149  148                                            Latvia     1,985,600
## 150  149                                        The Gambia     1,882,450
## 151  150                                   Kosovo[Note 12]     1,827,231
## 152  151                                     Guinea-Bissau     1,788,000
## 153  152                                             Gabon     1,751,000
## 154  153                                 Equatorial Guinea     1,430,000
## 155  154                               Trinidad and Tobago     1,328,019
## 156  155                                           Bahrain     1,316,500
## 157  156                                           Estonia     1,312,252
## 158  157                                         Mauritius     1,261,208
## 159  158                                        East Timor     1,212,107
## 160  159                                         Swaziland     1,119,375
## 161  160                                          Djibouti       900,000
## 162  161                                              Fiji       859,178
## 163  162                                   Cyprus[Note 13]       858,000
## 164  163                                  Réunion (France)       844,994
## 165  164                                           Comoros       763,952
## 166  165                                            Bhutan       759,530
## 167  166                                            Guyana       746,900
## 168  167                                     Macau (China)       636,200
## 169  168                                        Montenegro       621,521
## 170  169                                   Solomon Islands       581,344
## 171  170                                        Luxembourg       562,958
## 172  171                                          Suriname       534,189
## 173  172                                        Cape Verde       518,467
## 174  173                           Western Sahara[Note 14]       510,713
## 175  174                             Transnistria[Note 15]       505,153
## 176  175                                             Malta       425,384
## 177  176                               Guadeloupe (France)       405,739
## 178  177                                            Brunei       422,675
## 179  178                               Martinique (France)       381,326
## 180  179                                       The Bahamas       368,390
## 181  180                                            Belize       358,899
## 182  181                                          Maldives       341,256
## 183  182                                           Iceland       329,100
## 184  183                          Northern Cyprus[Note 16]       294,906
## 185  184                                          Barbados       285,000
## 186  185                            New Caledonia (France)       268,767
## 187  186                         French Polynesia (France)       268,270
## 188  187                                           Vanuatu       264,652
## 189  188                                 Abkhazia[Note 17]       240,705
## 190  189                            French Guiana (France)       239,648
## 191  190                                  Mayotte (France)       212,645
## 192  191                                             Samoa       187,820
## 193  192                             São Tomé and Príncipe       187,356
## 194  193                                       Saint Lucia       185,000
## 195  194                                       Guam (U.S.)       163,000
## 196  195                             Curaçao (Netherlands)       154,843
## 197  196                  Saint Vincent and the Grenadines       109,000
## 198  197                               Aruba (Netherlands)       107,394
## 199  198                                          Kiribati       106,461
## 200  199               United States Virgin Islands (U.S.)       106,405
## 201  200                                           Grenada       103,328
## 202  201                                             Tonga       103,252
## 203  202                    Federated States of Micronesia       101,351
## 204  203                                       Jersey (UK)        99,000
## 205  204                                        Seychelles        89,949
## 206  205                               Antigua and Barbuda        86,295
## 207  206                                  Isle of Man (UK)        84,497
## 208  207                                           Andorra        76,949
## 209  208                                          Dominica        71,293
## 210  209                                      Bermuda (UK)        64,237
## 211  210                                     Guernsey (UK)        65,150
## 212  211                                  Marshall Islands        56,086
## 213  212                               Greenland (Denmark)        55,984
## 214  213                               Cayman Islands (UK)        55,691
## 215  214                             American Samoa (U.S.)        55,519
## 216  215                             Saint Kitts and Nevis        55,000
## 217  216                   Northern Mariana Islands (U.S.)        53,883
## 218  217                            South Ossetia[Note 18]        51,547
## 219  218                           Faroe Islands (Denmark)        48,724
## 220  219                        Sint Maarten (Netherlands)        37,429
## 221  220                                     Liechtenstein        37,370
## 222  221                                            Monaco        36,950
## 223  222             Collectivity of Saint Martin (France)        35,742
## 224  223                                        San Marino        32,789
## 225  224                     Turks and Caicos Islands (UK)        31,458
## 226  225                                    Gibraltar (UK)        30,001
## 227  226                           Ã…land Islands (Finland)        28,875
## 228  227                       British Virgin Islands (UK)        28,054
## 229  228               Caribbean Netherlands (Netherlands)        23,296
## 230  229                                             Palau        20,901
## 231  230                        Cook Islands (New Zealand)        14,974
## 232  231                                     Anguilla (UK)        13,452
## 233  232                        Wallis and Futuna (France)        13,135
## 234  233                                            Tuvalu        11,323
## 235  234                                             Nauru        10,084
## 236  235                         Saint Barthélemy (France)         9,131
## 237  236                Saint Pierre and Miquelon (France)         6,069
## 238  237                                   Montserrat (UK)         4,922
## 239  238 Saint Helena, Ascension and Tristan da Cunha (UK)         4,000
## 240  239                             Falkland Islands (UK)         3,000
## 241  240                   Svalbard and Jan Mayen (Norway)         2,562
## 242  241                        Norfolk Island (Australia)         2,302
## 243  242                      Christmas Island (Australia)         2,072
## 244  243                                Niue (New Zealand)         1,613
## 245  244                                      Tokelau (NZ)         1,411
## 246  245                                      Vatican City           839
## 247  246               Cocos (Keeling) Islands (Australia)           550
## 248  247                             Pitcairn Islands (UK)            56
##                     V4                     V5
## 1                 Date % of world\npopulation
## 2       April 19, 2015                  18.9%
## 3       April 19, 2015                  17.5%
## 4       April 19, 2015                  4.43%
## 5         July 1, 2015                  3.53%
## 6       April 19, 2015                  2.82%
## 7       April 19, 2015                  2.62%
## 8         July 1, 2015                  2.54%
## 9       April 19, 2015                  2.19%
## 10     January 1, 2015                  2.02%
## 11       March 1, 2015                  1.75%
## 12        July 1, 2015                  1.67%
## 13      April 19, 2015                   1.4%
## 14        July 1, 2015                  1.25%
## 15        July 1, 2015                  1.24%
## 16      April 19, 2015                  1.22%
## 17       June 30, 2014                  1.12%
## 18      April 19, 2015                  1.08%
## 19   December 31, 2014                  1.07%
## 20        July 1, 2015                  0.98%
## 21       March 1, 2015                  0.91%
## 22        July 1, 2015                   0.9%
## 23        July 1, 2015                   0.9%
## 24   November 30, 2014                  0.84%
## 25        July 1, 2014                  0.75%
## 26      March 29, 2014                  0.71%
## 27     January 1, 2015                  0.71%
## 28      April 19, 2015                 0.664%
## 29        July 1, 2014                  0.66%
## 30        July 1, 2015                  0.65%
## 31        July 1, 2014                  0.64%
## 32        July 1, 2015                   0.6%
## 33    February 1, 2015                  0.59%
## 34     January 1, 2015                  0.55%
## 35   December 31, 2014                  0.53%
## 36        July 1, 2015                  0.53%
## 37        July 1, 2014                   0.5%
## 38     January 1, 2015                  0.49%
## 39     August 28, 2014                  0.48%
## 40   September 1, 2014                  0.47%
## 41        July 1, 2015                  0.44%
## 42        July 1, 2015                  0.43%
## 43        July 1, 2015                  0.42%
## 44      April 19, 2015                 0.422%
## 45     January 1, 2014                  0.42%
## 46        July 1, 2015                  0.39%
## 47        July 1, 2014                  0.37%
## 48        July 1, 2014                  0.37%
## 49        July 1, 2014                  0.36%
## 50        July 1, 2015                  0.36%
## 51        July 1, 2015                  0.35%
## 52        May 16, 2014                  0.34%
## 53      April 19, 2015                 0.329%
## 54      March 31, 2015                  0.32%
## 55      April 19, 2015                  0.32%
## 56        May 15, 2014                  0.31%
## 57        July 1, 2013                   0.3%
## 58        July 1, 2013                  0.29%
## 59        July 1, 2014                  0.29%
## 60     January 1, 2014                  0.28%
## 61        July 1, 2015                  0.27%
## 62        July 1, 2015                  0.25%
## 63        July 1, 2015                  0.25%
## 64       March 1, 2015                  0.24%
## 65      April 19, 2015                 0.233%
## 66        July 1, 2015                  0.23%
## 67        July 1, 2015                  0.22%
## 68        July 1, 2014                  0.22%
## 69        July 1, 2015                  0.21%
## 70      April 15, 2015                  0.21%
## 71        July 1, 2015                  0.21%
## 72        July 1, 2015                  0.19%
## 73   November 19, 2013                  0.19%
## 74     August 17, 2012                  0.18%
## 75        July 1, 2015                  0.16%
## 76        July 1, 2015                  0.16%
## 77    February 1, 2015                  0.16%
## 78   December 31, 2013                  0.15%
## 79        July 1, 2015                  0.15%
## 80        July 1, 2014                  0.15%
## 81     January 1, 2014                  0.15%
## 82      April 23, 2014                  0.15%
## 83        July 1, 2015                  0.15%
## 84       April 2, 2014                  0.15%
## 85   December 31, 2014                  0.15%
## 86   December 31, 2013                  0.14%
## 87        July 1, 2014                  0.14%
## 88        July 1, 2015                  0.14%
## 89   December 31, 2014                  0.14%
## 90        July 1, 2015                  0.14%
## 91   28 February, 2015                  0.13%
## 92       March 1, 2015                  0.13%
## 93        July 1, 2015                  0.13%
## 94     January 1, 2015                  0.13%
## 95        July 1, 2014                  0.12%
## 96     January 1, 2015                  0.12%
## 97     January 1, 2015                  0.12%
## 98   February 28, 2015                  0.11%
## 99  September 30, 2014                  0.11%
## 100       July 1, 2013                 0.102%
## 101  December 31, 2014                   0.1%
## 102  December 31, 2014                 0.099%
## 103       July 1, 2015                 0.099%
## 104    January 1, 2014                 0.099%
## 105               2015                 0.097%
## 106       July 1, 2015                 0.094%
## 107       July 1, 2015                 0.093%
## 108     April 19, 2015                0.0928%
## 109               2014                 0.088%
## 110       July 1, 2015                 0.087%
## 111       July 1, 2015                 0.087%
## 112               2013                 0.085%
## 113    January 1, 2015                 0.081%
## 114    January 1, 2015                 0.078%
## 115     April 15, 2015                 0.757%
## 116       July 1, 2014                 0.076%
## 117  December 31, 2014                 0.075%
## 118    January 1, 2015                 0.071%
## 119       July 1, 2015                 0.066%
## 120      June 30, 2014                 0.066%
## 121  December 26, 2012                 0.066%
## 122      April 2, 2015                 0.065%
## 123       July 1, 2014                 0.065%
## 124      April 1, 2014                 0.064%
## 125     April 19, 2015                0.0632%
## 126       July 1, 2015                 0.062%
## 127    January 1, 2014                 0.062%
## 128       July 1, 2012                 0.059%
## 129      April 8, 2015                 0.057%
## 130       July 1, 2012                 0.057%
## 131   October 15, 2013                 0.052%
## 132       July 1, 2015                  0.05%
## 133       July 1, 2015                  0.05%
## 134    January 1, 2015                 0.049%
## 135       July 1, 2014                 0.049%
## 136      June 30, 2014                 0.047%
## 137       July 1, 2012                 0.045%
## 138     April 19, 2015                 0.042%
## 139 September 30, 2014                 0.042%
## 140      March 1, 2015                  0.04%
## 141    January 1, 2015                  0.04%
## 142  December 31, 2013                 0.038%
## 143  February 28, 2015                 0.032%
## 144       July 1, 2015                 0.032%
## 145       July 1, 2015                 0.029%
## 146     April 19, 2015                 0.029%
## 147  December 31, 2013                 0.029%
## 148      July, 1, 2015                 0.028%
## 149      March 1, 2015                 0.027%
## 150     April 15, 2013                 0.026%
## 151               2015                 0.025%
## 152       July 1, 2015                 0.025%
## 153       July 1, 2015                 0.024%
## 154       July 1, 2013                  0.02%
## 155    January 9, 2011                 0.018%
## 156       July 1, 2014                 0.018%
## 157    January 1, 2015                 0.018%
## 158       July 1, 2014                 0.017%
## 159       July 1, 2014                 0.017%
## 160       July 1, 2015                 0.015%
## 161       July 1, 2015                 0.012%
## 162       July 1, 2013                0.0119%
## 163    January 1, 2014                 0.012%
## 164    January 1, 2014                 0.012%
## 165       July 1, 2014                 0.011%
## 166     April 19, 2015                0.0105%
## 167       July 1, 2013                  0.01%
## 168  December 31, 2014                0.0088%
## 169    January 1, 2013                0.0086%
## 170       July 1, 2013                 0.008%
## 171  December 31, 2014                0.0078%
## 172    August 13, 2012                0.0074%
## 173       July 1, 2014                0.0072%
## 174  September 2, 2014                0.0071%
## 175    January 1, 2014                 0.007%
## 176  December 31, 2013                0.0059%
## 177    January 1, 2013                0.0056%
## 178       July 1, 2014                0.0054%
## 179    January 1, 2014                0.0053%
## 180       July 1, 2013                0.0051%
## 181       July 1, 2014                 0.005%
## 182 September 20, 2014                0.0047%
## 183    January 1, 2015                0.0045%
## 184     April 30, 2006                 0.004%
## 185       July 1, 2013                0.0039%
## 186    August 26, 2014                0.0037%
## 187    August 22, 2012                0.0037%
## 188       July 1, 2013                0.0037%
## 189               2011                0.0033%
## 190    January 1, 2012                0.0033%
## 191    August 21, 2012                0.0029%
## 192   November 7, 2011                0.0026%
## 193       May 13, 2012                0.0026%
## 194       July 1, 2015                0.0026%
## 195    January 1, 2012                0.0022%
## 196    January 1, 2014                0.0021%
## 197       July 1, 2015                0.0015%
## 198   October 31, 2014                0.0015%
## 199       July 1, 2013                0.0015%
## 200      April 1, 2010                0.0015%
## 201       May 12, 2011                0.0014%
## 202  November 30, 2011                0.0014%
## 203       July 1, 2013                0.0014%
## 204  December 31, 2012                0.0014%
## 205       July 1, 2013                0.0012%
## 206       May 27, 2011                0.0012%
## 207     March 27, 2011                0.0012%
## 208       July 1, 2014                0.0011%
## 209       May 14, 2011               0.00098%
## 210       May 20, 2010               0.00089%
## 211     March 31, 2014                0.0009%
## 212       July 1, 2013               0.00077%
## 213    January 1, 2015               0.00077%
## 214               2013               0.00077%
## 215      April 1, 2010               0.00077%
## 216       July 1, 2015               0.00076%
## 217      April 1, 2010               0.00074%
## 218      January, 2013               0.00071%
## 219    January 1, 2015               0.00067%
## 220    January 1, 2010               0.00052%
## 221  December 31, 2014               0.00052%
## 222  December 31, 2013               0.00051%
## 223    January 1, 2012               0.00049%
## 224  December 31, 2014               0.00045%
## 225   January 25, 2012               0.00043%
## 226  December 31, 2012               0.00041%
## 227 September 30, 2014                0.0004%
## 228      July 12, 2010               0.00039%
## 229    January 1, 2013               0.00032%
## 230       July 1, 2013               0.00029%
## 231   December 1, 2011               0.00021%
## 232       May 11, 2011               0.00019%
## 233       July 1, 2013               0.00018%
## 234       July 1, 2013               0.00016%
## 235   October 30, 2011               0.00014%
## 236    January 1, 2012               0.00013%
## 237    January 1, 2012              0.000084%
## 238       May 12, 2011              0.000068%
## 239       July 1, 2015              0.000055%
## 240       July 1, 2015              0.000041%
## 241       July 1, 2014              0.000037%
## 242     August 9, 2011              0.000032%
## 243     August 9, 2011              0.000029%
## 244 September 10, 2011              0.000022%
## 245   October 18, 2011              0.000019%
## 246       July 1, 2012              0.000012%
## 247     August 9, 2011             0.0000076%
## 248               2013            0.00000077%
##                                    V6
## 1                              Source
## 2           Official population clock
## 3           Official population clock
## 4           Official population clock
## 5                 Official projection
## 6           Official population clock
## 7           Official population clock
## 8                       UN projection
## 9           Official population clock
## 10                  Official estimate
## 11          Monthly official estimate
## 12                Official projection
## 13          Official population clock
## 14                Official Projection
## 15                Official projection
## 16          Official population clock
## 17                  Official estimate
## 18          Official population clock
## 19           Annual official estimate
## 20                      UN projection
## 21          Monthly official estimate
## 22         Official annual projection
## 23                Official Projection
## 24          Monthly official estimate
## 25                  Official estimate
## 26     Preliminary 2014 census result
## 27                Official projection
## 28          Official population clock
## 29                Official Projection
## 30                      UN projection
## 31                  Official estimate
## 32         Official annual projection
## 33          Monthly official estimate
## 34                  Official estimate
## 35                  Official estimate
## 36         Official annual projection
## 37         Official annual projection
## 38                  Official estimate
## 39     Preliminary 2014 census result
## 40     Preliminary 2014 census result
## 41         Official annual projection
## 42         Official annual projection
## 43         Official annual projection
## 44          Official population clock
## 45                  Official estimate
## 46         Official annual projection
## 47         Official annual projection
## 48                  Official estimate
## 49                  Official estimate
## 50         Annual official projection
## 51                      UN projection
## 52     Preliminary 2014 census result
## 53          Official population clock
## 54          Monthly official estimate
## 55  Official population clock[Note 7]
## 56     Preliminary 2014 Census Result
## 57           Annual official estimate
## 58                  Official estimate
## 59                  Official Estimate
## 60           Annual official estimate
## 61                      UN projection
## 62                  Official estimate
## 63         Official annual projection
## 64          Monthly official estimate
## 65          Official Population Clock
## 66         Official annual projection
## 67                      UN projection
## 68                  Official estimate
## 69         Official annual projection
## 70          Official population clock
## 71         Official annual projection
## 72                      UN projection
## 73                 2013 census result
## 74                 2012 Census Result
## 75         Official annual projection
## 76                Official projection
## 77          Monthly official estimate
## 78           Annual official estimate
## 79                      UN projection
## 80           Annual official estimate
## 81                  Official estimate
## 82     Preliminary 2014 census result
## 83                Official projection
## 84     Preliminary 2014 census result
## 85        Official quarterly estimate
## 86           Annual official estimate
## 87                  Official estimate
## 88                Official projection
## 89           Annual official estimate
## 90         Official annual projection
## 91          Monthly official estimate
## 92                  Official estimate
## 93                      UN projection
## 94        Quarterly official estimate
## 95           Annual official estimate
## 96       Quarterly provisional figure
## 97                  Official estimate
## 98          Official monthly estimate
## 99       Quarterly provisional figure
## 100          Annual official estimate
## 101                 Official estimate
## 102                 Official estimate
## 103                     UN projection
## 104          Annual official estimate
## 105                 Official estimate
## 106        Annual official projection
## 107                     UN projection
## 108         Official population clock
## 109                 Official estimate
## 110                     UN projection
## 111                     UN projection
## 112                 Official estimate
## 113                 Official estimate
## 114       Quarterly official estimate
## 115         Official population clock
## 116                 Official estimate
## 117                 Official estimate
## 118       Quarterly official estimate
## 119                     UN projection
## 120                 Official estimate
## 121    Preliminary 2012 census result
## 122                 Official estimate
## 123                     UN projection
## 124          Annual official estimate
## 125         Official population clock
## 126                     UN projection
## 127          Annual official estimate
## 128          Annual official estimate
## 129          Weekly official estimate
## 130                 Official estimate
## 131    Preliminary 2013 census result
## 132                 Official estimate
## 133          Annual official estimate
## 134                 Official estimate
## 135                 Official estimate
## 136          Annual official estimate
## 137                 Official estimate
## 138         Official population clock
## 139       Quarterly official estimate
## 140         Monthly official estimate
## 141          Annual official estimate
## 142          Annual official estimate
## 143         Monthly official estimate
## 144          Final 2011 census result
## 145                     UN projection
## 146         Official population clock
## 147                 Official estimate
## 148                     UN Projection
## 149         Monthly official estimate
## 150    Preliminary 2013 census result
## 151        Official annual projection
## 152                     UN projection
## 153                     UN projection
## 154          Annual official estimate
## 155                 Official Estimate
## 156        Official annual projection
## 157                 Official estimate
## 158                 Official estimate
## 159                 Official estimate
## 160               Official projection
## 161                     UN projection
## 162          Annual official estimate
## 163                 Official estimate
## 164          Official annual estimate
## 165                 Official estimate
## 166         Official population clock
## 167                 Official estimate
## 168       Official quarterly estimate
## 169                          Eurostat
## 170          Annual official estimate
## 171          Annual official estimate
## 172    Preliminary 2012 census result
## 173        Official annual projection
## 174    Preliminary 2014 census result
## 175                 Official estimate
## 176          Official annual estimate
## 177          Official annual estimate
## 178                      CIA Factbook
## 179          Official annual estimate
## 180          Annual official estimate
## 181                 Official estimate
## 182    Preliminary 2014 census result
## 183          Annual official estimate
## 184                   Official census
## 185                 Official estimate
## 186    Preliminary 2014 census result
## 187    Preliminary 2012 census result
## 188          Annual official estimate
## 189                   Official census
## 190          Annual official estimate
## 191                2012 census result
## 192          Final 2011 census result
## 193                2012 census result
## 194                     UN projection
## 195                            UNdata
## 196          Annual official estimate
## 197                     UN projection
## 198       Official quarterly estimate
## 199          Annual official estimate
## 200          Final 2010 census result
## 201                2011 census result
## 202                2011 census result
## 203          Annual official estimate
## 204          Annual official estimate
## 205          Annual official estimate
## 206    Preliminary 2011 census result
## 207                2011 census result
## 208          Annual official estimate
## 209    Preliminary 2011 census result
## 210          Final 2010 census result
## 211          Annual official estimate
## 212          Annual official estimate
## 213          Annual official estimate
## 214                 Official estimate
## 215          Final 2010 census result
## 216                     UN projection
## 217          Final 2010 census result
## 218                          Estimate
## 219         Monthly official estimate
## 220                 Official estimate
## 221     Semi annual official estimate
## 222          Annual official estimate
## 223          Annual official estimate
## 224         Monthly official estimate
## 225                2012 census result
## 226          Annual official estimate
## 227                 Official estimate
## 228                2010 census result
## 229                 Official estimate
## 230          Annual official estimate
## 231          Final 2011 census result
## 232    Preliminary 2011 census result
## 233          Annual official estimate
## 234          Annual official estimate
## 235                2011 census result
## 236          Annual official estimate
## 237          Annual official estimate
## 238                2011 census result
## 239                     UN projection
## 240                     UN projection
## 241                 Official estimate
## 242                2011 census result
## 243                2011 census result
## 244          Final 2011 census result
## 245          Final 2011 census result
## 246                 Official estimate
## 247                2011 census result
## 248                 Official estimate
theURL <- "http://en.wikipedia.org/wiki/List_of_countries_and_dependencies_by_population"
hvalues <- readHTMLTable(theURL)

hvalues
## $`NULL`
##     Rank                  Country (or dependent territory)    Population
## 1      1                                     China[Note 2] 1,369,370,000
## 2      2                                             India 1,269,960,000
## 3      3                                     United States   320,825,000
## 4      4                                         Indonesia   255,461,700
## 5      5                                            Brazil   204,186,000
## 6      6                                          Pakistan   189,552,000
## 7      7                                           Nigeria   183,523,000
## 8      8                                        Bangladesh   158,189,000
## 9      9                                    Russia[Note 3]   146,267,288
## 10    10                                             Japan   126,910,000
## 11    11                                            Mexico   121,005,815
## 12    12                                       Philippines   101,316,100
## 13    13                                           Vietnam    91,583,000
## 14    14                                          Ethiopia    90,076,012
## 15    15                                             Egypt    88,370,600
## 16    16                                           Germany    80,925,000
## 17    17                                              Iran    78,273,100
## 18    18                                            Turkey    77,695,904
## 19    19                  Democratic Republic of the Congo    71,246,000
## 20    20                                    France[Note 4]    66,109,000
## 21    21                                          Thailand    65,104,000
## 22    22                                    United Kingdom    64,800,000
## 23    23                                             Italy    60,788,845
## 24    24                                      South Africa    54,002,000
## 25    25                                             Burma    51,419,420
## 26    26                                       South Korea    51,342,881
## 27    27                                          Colombia    48,089,400
## 28    28                                          Tanzania    47,421,786
## 29    29                                             Kenya    46,749,000
## 30    30                                             Spain    46,464,053
## 31    31                                         Argentina    43,131,966
## 32    32                                   Ukraine[Note 5]    42,910,885
## 33    33                                           Algeria    39,500,000
## 34    34                                            Poland    38,484,000
## 35    35                                             Sudan    38,435,252
## 36    36                                              Iraq    36,004,552
## 37    37                                            Canada    35,702,707
## 38    38                                            Uganda    34,856,813
## 39    39                                        Morocco[7]    33,848,242
## 40    40                                      Saudi Arabia    31,521,418
## 41    41                                              Peru    31,151,643
## 42    42                                         Venezuela    30,620,404
## 43    43                                          Malaysia    30,556,200
## 44    44                                        Uzbekistan    30,492,800
## 45    45                                             Nepal    28,037,904
## 46    46                                             Ghana    27,043,093
## 47    47                                       Afghanistan    26,556,800
## 48    48                                             Yemen    25,956,000
## 49    49                                        Mozambique    25,727,911
## 50    50                                       North Korea    25,155,000
## 51    51                                            Angola    24,383,301
## 52    52                                         Australia    23,815,300
## 53    53                                    Taiwan[Note 6]    23,449,287
## 54    54                                             Syria    23,154,199
## 55    55                                       Ivory Coast    22,671,331
## 56    56                                        Madagascar    21,842,167
## 57    57                                          Cameroon    21,143,237
## 58    58                                         Sri Lanka    20,675,000
## 59    59                                           Romania    19,942,642
## 60    60                                             Niger    19,268,000
## 61    61                                      Burkina Faso    18,450,494
## 62    62                                             Chile    18,006,407
## 63    63                                        Kazakhstan    17,458,500
## 64    64                                       Netherlands    16,898,700
## 65    65                                            Malawi    16,310,431
## 66    66                                              Mali    16,259,000
## 67    67                                         Guatemala    15,806,675
## 68    68                                            Zambia    15,473,905
## 69    69                                           Ecuador    15,466,000
## 70    70                                          Cambodia    15,405,157
## 71    71                                              Chad    13,606,000
## 72    72                                           Senegal    13,508,715
## 73    73                                          Zimbabwe    13,061,239
## 74    74                                       South Sudan    11,892,934
## 75    75                                           Bolivia    11,410,651
## 76    76                                           Belgium    11,239,755
## 77    77                                              Cuba    11,210,064
## 78    78                                   Somalia[Note 8]    11,123,000
## 79    79                                            Rwanda    10,996,891
## 80    80                                            Greece    10,992,589
## 81    81                                           Tunisia    10,982,754
## 82    82                                             Haiti    10,911,819
## 83    83                                            Guinea    10,628,972
## 84    84                                    Czech Republic    10,538,275
## 85    85                                          Portugal    10,477,800
## 86    86                                Dominican Republic    10,378,267
## 87    87                                             Benin    10,315,244
## 88    88                                           Hungary     9,849,000
## 89    89                                           Burundi     9,823,827
## 90    90                                            Sweden     9,760,142
## 91    91                                        Azerbaijan     9,611,700
## 92    92                              United Arab Emirates     9,577,000
## 93    93                                           Belarus     9,481,000
## 94    94                                          Honduras     8,725,111
## 95    95                                           Austria     8,579,747
## 96    96                                        Tajikistan     8,354,000
## 97    97                                            Israel     8,320,100
## 98    98                                       Switzerland     8,211,700
## 99    99                                  Papua New Guinea     7,398,500
## 100  100                                 Hong Kong (China)     7,264,100
## 101  101                                          Bulgaria     7,202,198
## 102  102                                              Togo     7,171,000
## 103  103                                    Serbia[Note 9]     7,146,759
## 104  104                                          Paraguay     7,003,406
## 105  105                                              Laos     6,802,000
## 106  106                                           Eritrea     6,738,000
## 107  107                                            Jordan     6,719,410
## 108  108                                       El Salvador     6,401,240
## 109  109                                      Sierra Leone     6,319,000
## 110  110                                             Libya     6,317,000
## 111  111                                         Nicaragua     6,134,270
## 112  112                                        Kyrgyzstan     5,895,100
## 113  113                                           Denmark     5,659,715
## 114  114                                           Finland     5,478,002
## 115  115                                         Singapore     5,469,700
## 116  116                                          Slovakia     5,421,349
## 117  117                                            Norway     5,165,802
## 118  118                          Central African Republic     4,803,000
## 119  119                                        Costa Rica     4,773,130
## 120  120                                      Turkmenistan     4,751,120
## 121  121                                         Palestine     4,682,467
## 122  122                             Republic of the Congo     4,671,000
## 123  123                                           Ireland     4,609,600
## 124  124                                       New Zealand     4,576,170
## 125  125                                           Liberia     4,503,000
## 126  126                                  Georgia[Note 10]     4,490,500
## 127  127                                           Croatia     4,267,558
## 128  128                                              Oman     4,161,705
## 129  129                                           Lebanon     4,104,000
## 130  130                            Bosnia and Herzegovina     3,791,622
## 131  131                                            Panama     3,764,166
## 132  132                                        Mauritania     3,631,775
## 133  133                                  Moldova[Note 11]     3,555,200
## 134  134                                Puerto Rico (U.S.)     3,548,397
## 135  135                                           Uruguay     3,404,189
## 136  136                                            Kuwait     3,268,431
## 137  137                                          Mongolia     3,014,385
## 138  138                                           Armenia     3,013,900
## 139  139                                         Lithuania     2,916,443
## 140  140                                           Albania     2,893,005
## 141  141                                           Jamaica     2,717,991
## 142  142                                             Qatar     2,334,029
## 143  143                                           Namibia     2,280,700
## 144  144                                           Lesotho     2,120,000
## 145  145                                          Slovenia     2,066,341
## 146  146                                         Macedonia     2,065,769
## 147  147                                          Botswana     2,056,000
## 148  148                                            Latvia     1,985,600
## 149  149                                        The Gambia     1,882,450
## 150  150                                   Kosovo[Note 12]     1,827,231
## 151  151                                     Guinea-Bissau     1,788,000
## 152  152                                             Gabon     1,751,000
## 153  153                                 Equatorial Guinea     1,430,000
## 154  154                               Trinidad and Tobago     1,328,019
## 155  155                                           Bahrain     1,316,500
## 156  156                                           Estonia     1,312,252
## 157  157                                         Mauritius     1,261,208
## 158  158                                        East Timor     1,212,107
## 159  159                                         Swaziland     1,119,375
## 160  160                                          Djibouti       900,000
## 161  161                                              Fiji       859,178
## 162  162                                   Cyprus[Note 13]       858,000
## 163  163                                  Réunion (France)       844,994
## 164  164                                           Comoros       763,952
## 165  165                                            Bhutan       759,530
## 166  166                                            Guyana       746,900
## 167  167                                     Macau (China)       636,200
## 168  168                                        Montenegro       621,521
## 169  169                                   Solomon Islands       581,344
## 170  170                                        Luxembourg       562,958
## 171  171                                          Suriname       534,189
## 172  172                                        Cape Verde       518,467
## 173  173                           Western Sahara[Note 14]       510,713
## 174  174                             Transnistria[Note 15]       505,153
## 175  175                                             Malta       425,384
## 176  176                               Guadeloupe (France)       405,739
## 177  177                                            Brunei       422,675
## 178  178                               Martinique (France)       381,326
## 179  179                                       The Bahamas       368,390
## 180  180                                            Belize       358,899
## 181  181                                          Maldives       341,256
## 182  182                                           Iceland       329,100
## 183  183                          Northern Cyprus[Note 16]       294,906
## 184  184                                          Barbados       285,000
## 185  185                            New Caledonia (France)       268,767
## 186  186                         French Polynesia (France)       268,270
## 187  187                                           Vanuatu       264,652
## 188  188                                 Abkhazia[Note 17]       240,705
## 189  189                            French Guiana (France)       239,648
## 190  190                                  Mayotte (France)       212,645
## 191  191                                             Samoa       187,820
## 192  192                             São Tomé and Príncipe       187,356
## 193  193                                       Saint Lucia       185,000
## 194  194                                       Guam (U.S.)       163,000
## 195  195                             Curaçao (Netherlands)       154,843
## 196  196                  Saint Vincent and the Grenadines       109,000
## 197  197                               Aruba (Netherlands)       107,394
## 198  198                                          Kiribati       106,461
## 199  199               United States Virgin Islands (U.S.)       106,405
## 200  200                                           Grenada       103,328
## 201  201                                             Tonga       103,252
## 202  202                    Federated States of Micronesia       101,351
## 203  203                                       Jersey (UK)        99,000
## 204  204                                        Seychelles        89,949
## 205  205                               Antigua and Barbuda        86,295
## 206  206                                  Isle of Man (UK)        84,497
## 207  207                                           Andorra        76,949
## 208  208                                          Dominica        71,293
## 209  209                                      Bermuda (UK)        64,237
## 210  210                                     Guernsey (UK)        65,150
## 211  211                                  Marshall Islands        56,086
## 212  212                               Greenland (Denmark)        55,984
## 213  213                               Cayman Islands (UK)        55,691
## 214  214                             American Samoa (U.S.)        55,519
## 215  215                             Saint Kitts and Nevis        55,000
## 216  216                   Northern Mariana Islands (U.S.)        53,883
## 217  217                            South Ossetia[Note 18]        51,547
## 218  218                           Faroe Islands (Denmark)        48,724
## 219  219                        Sint Maarten (Netherlands)        37,429
## 220  220                                     Liechtenstein        37,370
## 221  221                                            Monaco        36,950
## 222  222             Collectivity of Saint Martin (France)        35,742
## 223  223                                        San Marino        32,789
## 224  224                     Turks and Caicos Islands (UK)        31,458
## 225  225                                    Gibraltar (UK)        30,001
## 226  226                           Ã…land Islands (Finland)        28,875
## 227  227                       British Virgin Islands (UK)        28,054
## 228  228               Caribbean Netherlands (Netherlands)        23,296
## 229  229                                             Palau        20,901
## 230  230                        Cook Islands (New Zealand)        14,974
## 231  231                                     Anguilla (UK)        13,452
## 232  232                        Wallis and Futuna (France)        13,135
## 233  233                                            Tuvalu        11,323
## 234  234                                             Nauru        10,084
## 235  235                         Saint Barthélemy (France)         9,131
## 236  236                Saint Pierre and Miquelon (France)         6,069
## 237  237                                   Montserrat (UK)         4,922
## 238  238 Saint Helena, Ascension and Tristan da Cunha (UK)         4,000
## 239  239                             Falkland Islands (UK)         3,000
## 240  240                   Svalbard and Jan Mayen (Norway)         2,562
## 241  241                        Norfolk Island (Australia)         2,302
## 242  242                      Christmas Island (Australia)         2,072
## 243  243                                Niue (New Zealand)         1,613
## 244  244                                      Tokelau (NZ)         1,411
## 245  245                                      Vatican City           839
## 246  246               Cocos (Keeling) Islands (Australia)           550
## 247  247                             Pitcairn Islands (UK)            56
##                   Date % of world\npopulation
## 1       April 19, 2015                  18.9%
## 2       April 19, 2015                  17.5%
## 3       April 19, 2015                  4.43%
## 4         July 1, 2015                  3.53%
## 5       April 19, 2015                  2.82%
## 6       April 19, 2015                  2.62%
## 7         July 1, 2015                  2.54%
## 8       April 19, 2015                  2.19%
## 9      January 1, 2015                  2.02%
## 10       March 1, 2015                  1.75%
## 11        July 1, 2015                  1.67%
## 12      April 19, 2015                   1.4%
## 13        July 1, 2015                  1.25%
## 14        July 1, 2015                  1.24%
## 15      April 19, 2015                  1.22%
## 16       June 30, 2014                  1.12%
## 17      April 19, 2015                  1.08%
## 18   December 31, 2014                  1.07%
## 19        July 1, 2015                  0.98%
## 20       March 1, 2015                  0.91%
## 21        July 1, 2015                   0.9%
## 22        July 1, 2015                   0.9%
## 23   November 30, 2014                  0.84%
## 24        July 1, 2014                  0.75%
## 25      March 29, 2014                  0.71%
## 26     January 1, 2015                  0.71%
## 27      April 19, 2015                 0.664%
## 28        July 1, 2014                  0.66%
## 29        July 1, 2015                  0.65%
## 30        July 1, 2014                  0.64%
## 31        July 1, 2015                   0.6%
## 32    February 1, 2015                  0.59%
## 33     January 1, 2015                  0.55%
## 34   December 31, 2014                  0.53%
## 35        July 1, 2015                  0.53%
## 36        July 1, 2014                   0.5%
## 37     January 1, 2015                  0.49%
## 38     August 28, 2014                  0.48%
## 39   September 1, 2014                  0.47%
## 40        July 1, 2015                  0.44%
## 41        July 1, 2015                  0.43%
## 42        July 1, 2015                  0.42%
## 43      April 19, 2015                 0.422%
## 44     January 1, 2014                  0.42%
## 45        July 1, 2015                  0.39%
## 46        July 1, 2014                  0.37%
## 47        July 1, 2014                  0.37%
## 48        July 1, 2014                  0.36%
## 49        July 1, 2015                  0.36%
## 50        July 1, 2015                  0.35%
## 51        May 16, 2014                  0.34%
## 52      April 19, 2015                 0.329%
## 53      March 31, 2015                  0.32%
## 54      April 19, 2015                  0.32%
## 55        May 15, 2014                  0.31%
## 56        July 1, 2013                   0.3%
## 57        July 1, 2013                  0.29%
## 58        July 1, 2014                  0.29%
## 59     January 1, 2014                  0.28%
## 60        July 1, 2015                  0.27%
## 61        July 1, 2015                  0.25%
## 62        July 1, 2015                  0.25%
## 63       March 1, 2015                  0.24%
## 64      April 19, 2015                 0.233%
## 65        July 1, 2015                  0.23%
## 66        July 1, 2015                  0.22%
## 67        July 1, 2014                  0.22%
## 68        July 1, 2015                  0.21%
## 69      April 15, 2015                  0.21%
## 70        July 1, 2015                  0.21%
## 71        July 1, 2015                  0.19%
## 72   November 19, 2013                  0.19%
## 73     August 17, 2012                  0.18%
## 74        July 1, 2015                  0.16%
## 75        July 1, 2015                  0.16%
## 76    February 1, 2015                  0.16%
## 77   December 31, 2013                  0.15%
## 78        July 1, 2015                  0.15%
## 79        July 1, 2014                  0.15%
## 80     January 1, 2014                  0.15%
## 81      April 23, 2014                  0.15%
## 82        July 1, 2015                  0.15%
## 83       April 2, 2014                  0.15%
## 84   December 31, 2014                  0.15%
## 85   December 31, 2013                  0.14%
## 86        July 1, 2014                  0.14%
## 87        July 1, 2015                  0.14%
## 88   December 31, 2014                  0.14%
## 89        July 1, 2015                  0.14%
## 90   28 February, 2015                  0.13%
## 91       March 1, 2015                  0.13%
## 92        July 1, 2015                  0.13%
## 93     January 1, 2015                  0.13%
## 94        July 1, 2014                  0.12%
## 95     January 1, 2015                  0.12%
## 96     January 1, 2015                  0.12%
## 97   February 28, 2015                  0.11%
## 98  September 30, 2014                  0.11%
## 99        July 1, 2013                 0.102%
## 100  December 31, 2014                   0.1%
## 101  December 31, 2014                 0.099%
## 102       July 1, 2015                 0.099%
## 103    January 1, 2014                 0.099%
## 104               2015                 0.097%
## 105       July 1, 2015                 0.094%
## 106       July 1, 2015                 0.093%
## 107     April 19, 2015                0.0928%
## 108               2014                 0.088%
## 109       July 1, 2015                 0.087%
## 110       July 1, 2015                 0.087%
## 111               2013                 0.085%
## 112    January 1, 2015                 0.081%
## 113    January 1, 2015                 0.078%
## 114     April 15, 2015                 0.757%
## 115       July 1, 2014                 0.076%
## 116  December 31, 2014                 0.075%
## 117    January 1, 2015                 0.071%
## 118       July 1, 2015                 0.066%
## 119      June 30, 2014                 0.066%
## 120  December 26, 2012                 0.066%
## 121      April 2, 2015                 0.065%
## 122       July 1, 2014                 0.065%
## 123      April 1, 2014                 0.064%
## 124     April 19, 2015                0.0632%
## 125       July 1, 2015                 0.062%
## 126    January 1, 2014                 0.062%
## 127       July 1, 2012                 0.059%
## 128      April 8, 2015                 0.057%
## 129       July 1, 2012                 0.057%
## 130   October 15, 2013                 0.052%
## 131       July 1, 2015                  0.05%
## 132       July 1, 2015                  0.05%
## 133    January 1, 2015                 0.049%
## 134       July 1, 2014                 0.049%
## 135      June 30, 2014                 0.047%
## 136       July 1, 2012                 0.045%
## 137     April 19, 2015                 0.042%
## 138 September 30, 2014                 0.042%
## 139      March 1, 2015                  0.04%
## 140    January 1, 2015                  0.04%
## 141  December 31, 2013                 0.038%
## 142  February 28, 2015                 0.032%
## 143       July 1, 2015                 0.032%
## 144       July 1, 2015                 0.029%
## 145     April 19, 2015                 0.029%
## 146  December 31, 2013                 0.029%
## 147      July, 1, 2015                 0.028%
## 148      March 1, 2015                 0.027%
## 149     April 15, 2013                 0.026%
## 150               2015                 0.025%
## 151       July 1, 2015                 0.025%
## 152       July 1, 2015                 0.024%
## 153       July 1, 2013                  0.02%
## 154    January 9, 2011                 0.018%
## 155       July 1, 2014                 0.018%
## 156    January 1, 2015                 0.018%
## 157       July 1, 2014                 0.017%
## 158       July 1, 2014                 0.017%
## 159       July 1, 2015                 0.015%
## 160       July 1, 2015                 0.012%
## 161       July 1, 2013                0.0119%
## 162    January 1, 2014                 0.012%
## 163    January 1, 2014                 0.012%
## 164       July 1, 2014                 0.011%
## 165     April 19, 2015                0.0105%
## 166       July 1, 2013                  0.01%
## 167  December 31, 2014                0.0088%
## 168    January 1, 2013                0.0086%
## 169       July 1, 2013                 0.008%
## 170  December 31, 2014                0.0078%
## 171    August 13, 2012                0.0074%
## 172       July 1, 2014                0.0072%
## 173  September 2, 2014                0.0071%
## 174    January 1, 2014                 0.007%
## 175  December 31, 2013                0.0059%
## 176    January 1, 2013                0.0056%
## 177       July 1, 2014                0.0054%
## 178    January 1, 2014                0.0053%
## 179       July 1, 2013                0.0051%
## 180       July 1, 2014                 0.005%
## 181 September 20, 2014                0.0047%
## 182    January 1, 2015                0.0045%
## 183     April 30, 2006                 0.004%
## 184       July 1, 2013                0.0039%
## 185    August 26, 2014                0.0037%
## 186    August 22, 2012                0.0037%
## 187       July 1, 2013                0.0037%
## 188               2011                0.0033%
## 189    January 1, 2012                0.0033%
## 190    August 21, 2012                0.0029%
## 191   November 7, 2011                0.0026%
## 192       May 13, 2012                0.0026%
## 193       July 1, 2015                0.0026%
## 194    January 1, 2012                0.0022%
## 195    January 1, 2014                0.0021%
## 196       July 1, 2015                0.0015%
## 197   October 31, 2014                0.0015%
## 198       July 1, 2013                0.0015%
## 199      April 1, 2010                0.0015%
## 200       May 12, 2011                0.0014%
## 201  November 30, 2011                0.0014%
## 202       July 1, 2013                0.0014%
## 203  December 31, 2012                0.0014%
## 204       July 1, 2013                0.0012%
## 205       May 27, 2011                0.0012%
## 206     March 27, 2011                0.0012%
## 207       July 1, 2014                0.0011%
## 208       May 14, 2011               0.00098%
## 209       May 20, 2010               0.00089%
## 210     March 31, 2014                0.0009%
## 211       July 1, 2013               0.00077%
## 212    January 1, 2015               0.00077%
## 213               2013               0.00077%
## 214      April 1, 2010               0.00077%
## 215       July 1, 2015               0.00076%
## 216      April 1, 2010               0.00074%
## 217      January, 2013               0.00071%
## 218    January 1, 2015               0.00067%
## 219    January 1, 2010               0.00052%
## 220  December 31, 2014               0.00052%
## 221  December 31, 2013               0.00051%
## 222    January 1, 2012               0.00049%
## 223  December 31, 2014               0.00045%
## 224   January 25, 2012               0.00043%
## 225  December 31, 2012               0.00041%
## 226 September 30, 2014                0.0004%
## 227      July 12, 2010               0.00039%
## 228    January 1, 2013               0.00032%
## 229       July 1, 2013               0.00029%
## 230   December 1, 2011               0.00021%
## 231       May 11, 2011               0.00019%
## 232       July 1, 2013               0.00018%
## 233       July 1, 2013               0.00016%
## 234   October 30, 2011               0.00014%
## 235    January 1, 2012               0.00013%
## 236    January 1, 2012              0.000084%
## 237       May 12, 2011              0.000068%
## 238       July 1, 2015              0.000055%
## 239       July 1, 2015              0.000041%
## 240       July 1, 2014              0.000037%
## 241     August 9, 2011              0.000032%
## 242     August 9, 2011              0.000029%
## 243 September 10, 2011              0.000022%
## 244   October 18, 2011              0.000019%
## 245       July 1, 2012              0.000012%
## 246     August 9, 2011             0.0000076%
## 247               2013            0.00000077%
##                                Source
## 1           Official population clock
## 2           Official population clock
## 3           Official population clock
## 4                 Official projection
## 5           Official population clock
## 6           Official population clock
## 7                       UN projection
## 8           Official population clock
## 9                   Official estimate
## 10          Monthly official estimate
## 11                Official projection
## 12          Official population clock
## 13                Official Projection
## 14                Official projection
## 15          Official population clock
## 16                  Official estimate
## 17          Official population clock
## 18           Annual official estimate
## 19                      UN projection
## 20          Monthly official estimate
## 21         Official annual projection
## 22                Official Projection
## 23          Monthly official estimate
## 24                  Official estimate
## 25     Preliminary 2014 census result
## 26                Official projection
## 27          Official population clock
## 28                Official Projection
## 29                      UN projection
## 30                  Official estimate
## 31         Official annual projection
## 32          Monthly official estimate
## 33                  Official estimate
## 34                  Official estimate
## 35         Official annual projection
## 36         Official annual projection
## 37                  Official estimate
## 38     Preliminary 2014 census result
## 39     Preliminary 2014 census result
## 40         Official annual projection
## 41         Official annual projection
## 42         Official annual projection
## 43          Official population clock
## 44                  Official estimate
## 45         Official annual projection
## 46         Official annual projection
## 47                  Official estimate
## 48                  Official estimate
## 49         Annual official projection
## 50                      UN projection
## 51     Preliminary 2014 census result
## 52          Official population clock
## 53          Monthly official estimate
## 54  Official population clock[Note 7]
## 55     Preliminary 2014 Census Result
## 56           Annual official estimate
## 57                  Official estimate
## 58                  Official Estimate
## 59           Annual official estimate
## 60                      UN projection
## 61                  Official estimate
## 62         Official annual projection
## 63          Monthly official estimate
## 64          Official Population Clock
## 65         Official annual projection
## 66                      UN projection
## 67                  Official estimate
## 68         Official annual projection
## 69          Official population clock
## 70         Official annual projection
## 71                      UN projection
## 72                 2013 census result
## 73                 2012 Census Result
## 74         Official annual projection
## 75                Official projection
## 76          Monthly official estimate
## 77           Annual official estimate
## 78                      UN projection
## 79           Annual official estimate
## 80                  Official estimate
## 81     Preliminary 2014 census result
## 82                Official projection
## 83     Preliminary 2014 census result
## 84        Official quarterly estimate
## 85           Annual official estimate
## 86                  Official estimate
## 87                Official projection
## 88           Annual official estimate
## 89         Official annual projection
## 90          Monthly official estimate
## 91                  Official estimate
## 92                      UN projection
## 93        Quarterly official estimate
## 94           Annual official estimate
## 95       Quarterly provisional figure
## 96                  Official estimate
## 97          Official monthly estimate
## 98       Quarterly provisional figure
## 99           Annual official estimate
## 100                 Official estimate
## 101                 Official estimate
## 102                     UN projection
## 103          Annual official estimate
## 104                 Official estimate
## 105        Annual official projection
## 106                     UN projection
## 107         Official population clock
## 108                 Official estimate
## 109                     UN projection
## 110                     UN projection
## 111                 Official estimate
## 112                 Official estimate
## 113       Quarterly official estimate
## 114         Official population clock
## 115                 Official estimate
## 116                 Official estimate
## 117       Quarterly official estimate
## 118                     UN projection
## 119                 Official estimate
## 120    Preliminary 2012 census result
## 121                 Official estimate
## 122                     UN projection
## 123          Annual official estimate
## 124         Official population clock
## 125                     UN projection
## 126          Annual official estimate
## 127          Annual official estimate
## 128          Weekly official estimate
## 129                 Official estimate
## 130    Preliminary 2013 census result
## 131                 Official estimate
## 132          Annual official estimate
## 133                 Official estimate
## 134                 Official estimate
## 135          Annual official estimate
## 136                 Official estimate
## 137         Official population clock
## 138       Quarterly official estimate
## 139         Monthly official estimate
## 140          Annual official estimate
## 141          Annual official estimate
## 142         Monthly official estimate
## 143          Final 2011 census result
## 144                     UN projection
## 145         Official population clock
## 146                 Official estimate
## 147                     UN Projection
## 148         Monthly official estimate
## 149    Preliminary 2013 census result
## 150        Official annual projection
## 151                     UN projection
## 152                     UN projection
## 153          Annual official estimate
## 154                 Official Estimate
## 155        Official annual projection
## 156                 Official estimate
## 157                 Official estimate
## 158                 Official estimate
## 159               Official projection
## 160                     UN projection
## 161          Annual official estimate
## 162                 Official estimate
## 163          Official annual estimate
## 164                 Official estimate
## 165         Official population clock
## 166                 Official estimate
## 167       Official quarterly estimate
## 168                          Eurostat
## 169          Annual official estimate
## 170          Annual official estimate
## 171    Preliminary 2012 census result
## 172        Official annual projection
## 173    Preliminary 2014 census result
## 174                 Official estimate
## 175          Official annual estimate
## 176          Official annual estimate
## 177                      CIA Factbook
## 178          Official annual estimate
## 179          Annual official estimate
## 180                 Official estimate
## 181    Preliminary 2014 census result
## 182          Annual official estimate
## 183                   Official census
## 184                 Official estimate
## 185    Preliminary 2014 census result
## 186    Preliminary 2012 census result
## 187          Annual official estimate
## 188                   Official census
## 189          Annual official estimate
## 190                2012 census result
## 191          Final 2011 census result
## 192                2012 census result
## 193                     UN projection
## 194                            UNdata
## 195          Annual official estimate
## 196                     UN projection
## 197       Official quarterly estimate
## 198          Annual official estimate
## 199          Final 2010 census result
## 200                2011 census result
## 201                2011 census result
## 202          Annual official estimate
## 203          Annual official estimate
## 204          Annual official estimate
## 205    Preliminary 2011 census result
## 206                2011 census result
## 207          Annual official estimate
## 208    Preliminary 2011 census result
## 209          Final 2010 census result
## 210          Annual official estimate
## 211          Annual official estimate
## 212          Annual official estimate
## 213                 Official estimate
## 214          Final 2010 census result
## 215                     UN projection
## 216          Final 2010 census result
## 217                          Estimate
## 218         Monthly official estimate
## 219                 Official estimate
## 220     Semi annual official estimate
## 221          Annual official estimate
## 222          Annual official estimate
## 223         Monthly official estimate
## 224                2012 census result
## 225          Annual official estimate
## 226                 Official estimate
## 227                2010 census result
## 228                 Official estimate
## 229          Annual official estimate
## 230          Final 2011 census result
## 231    Preliminary 2011 census result
## 232          Annual official estimate
## 233          Annual official estimate
## 234                2011 census result
## 235          Annual official estimate
## 236          Annual official estimate
## 237                2011 census result
## 238                     UN projection
## 239                     UN projection
## 240                 Official estimate
## 241                2011 census result
## 242                2011 census result
## 243          Final 2011 census result
## 244          Final 2011 census result
## 245                 Official estimate
## 246                2011 census result
## 247                 Official estimate
## 
## $`NULL`
##   List of countries by population (United Nations)\nList of sovereign states and dependent territories by population density\nList of sovereign states and dependent territories by fertility rate\nList of countries by population growth rate\nList of contine ...
## 1                                                                                                                                                                                                                                                                   
##   Geography portal\n\nLists of countries by population\nContinental\n\nAfrica\nAsia\nEurope\nNorth America\nOceania\nSouth America\n\nIntercontinental\n\nArab states\nAmericas\nEurasia\nLatin America\nCommonwealth of Nations\nMiddle East\n\nSubcontinental\n\nCaribbean island ...
## 1                                                                                                                                                                                                                                                                      Geography portal
## 
## $`NULL`
## NULL
## 
## $`NULL`
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          V1
## 1  v\nt\ne\n\nLists of countries by population statistics\n\n\nPopulation\n\n\nCurrent population\nCurrent population (inc. dependent territories)\nCurrent population (graphical)\nPopulation in 1900\nPopulation in 1907\nPopulation in 2000\nPopulation in 2010\nPopulation (United Nations statistics)\nPopulation growth rate\nnatural increase\npast and future population\npopulation milestones\ncitizen population (domestic)\n\n\n\nPopulation density\n\n\nCurrent density\nCurrent real density based on food growing capacity\n\n\n\n(Regional)\n\n\n\nPopulation of national capitals\nPopulation of cities proper\nPopulation of urban areas\n\n\n\n\nOther Demographics\n\n\nAge at first marriage\nDivorce rate\nEthnic and cultural diversity level\nForeign-born population\nImmigrant population\nMedian age\nNet migration rate\nNumber of households\nSex ratio\nUrban population\nUrbanization\n\n\n\nHealth\n\n\nAntiviral medications for pandemic influenza\nBirth rate\nMortality rate\nFertility rate\nHIV/AIDS adult prevalence rate\nInfant mortality rate\nLife expectancy\nObesity\nPercentage suffering from undernourishment\nHealth expenditure covered by government\nSuicide rate\nTotal health expenditure (PPP) per capita\n\n\n\nEducation and innovation\n\n\n25–34 year olds having a tertiary education degree\nBloomberg Innovation Index\nEducation Index\nInternational Innovation Index\nInnovation Union Scoreboard\nLiteracy rate\nProgramme for the International Assessment of Adult Competencies\nProgramme for International Student Assessment\nProgress in International Reading Literacy Study\nTrends in International Mathematics and Science Study\nWomen's average years in school\nWorld Intellectual Property Indicators\n\n\n\nEconomic\n\n\nDevelopment aid given\nForeign aid received\n\nEmployment rate\nIrrigated land area\nHuman Development Index\nby country\ninequality-adjusted\n\nHuman Poverty Index\nImports\nIncome equality\nJob security\nLabour force\nNumber of millionaires (US dollars)\nNumber of billionaires (US dollars)\nPercentage living in poverty\nSen social welfare function\nUnemployment rate\n\n\n\n\n\n\nList of international rankings\nList of top international rankings by country\nLists by country
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    v\nt\ne\n\nLists of countries by population statistics
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## 4                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                Population
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## 6                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        Population density
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## 8                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                (Regional)
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
## 10                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       Other Demographics
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 12                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   Health
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 14                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Education and innovation
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 Economic
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                         
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          List of international rankings\nList of top international rankings by country\nLists by country
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 V2
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 2                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 4                                                                                                                          Current population\nCurrent population (inc. dependent territories)\nCurrent population (graphical)\nPopulation in 1900\nPopulation in 1907\nPopulation in 2000\nPopulation in 2010\nPopulation (United Nations statistics)\nPopulation growth rate\nnatural increase\npast and future population\npopulation milestones\ncitizen population (domestic)
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 6                                                                                                                                                                                                                                                                                                                                                                                                             Current density\nCurrent real density based on food growing capacity
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 8                                                                                                                                                                                                                                                                                                                                                                                          Population of national capitals\nPopulation of cities proper\nPopulation of urban areas
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 10                                                                                                                                                                                                                                                        Age at first marriage\nDivorce rate\nEthnic and cultural diversity level\nForeign-born population\nImmigrant population\nMedian age\nNet migration rate\nNumber of households\nSex ratio\nUrban population\nUrbanization
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 12                                                                                                                                                        Antiviral medications for pandemic influenza\nBirth rate\nMortality rate\nFertility rate\nHIV/AIDS adult prevalence rate\nInfant mortality rate\nLife expectancy\nObesity\nPercentage suffering from undernourishment\nHealth expenditure covered by government\nSuicide rate\nTotal health expenditure (PPP) per capita
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 14 25–34 year olds having a tertiary education degree\nBloomberg Innovation Index\nEducation Index\nInternational Innovation Index\nInnovation Union Scoreboard\nLiteracy rate\nProgramme for the International Assessment of Adult Competencies\nProgramme for International Student Assessment\nProgress in International Reading Literacy Study\nTrends in International Mathematics and Science Study\nWomen's average years in school\nWorld Intellectual Property Indicators
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 16                                                                                              Development aid given\nForeign aid received\n\nEmployment rate\nIrrigated land area\nHuman Development Index\nby country\ninequality-adjusted\n\nHuman Poverty Index\nImports\nIncome equality\nJob security\nLabour force\nNumber of millionaires (US dollars)\nNumber of billionaires (US dollars)\nPercentage living in poverty\nSen social welfare function\nUnemployment rate
## 17                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 18                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 
## $`NULL`
##                                                                                                 V1
## 1                                                                                                 
## 2                                                                                       Population
## 3                                                                                                 
## 4                                                                               Population density
## 5                                                                                                 
## 6                                                                                       (Regional)
## 7                                                                                                 
## 8                                                                               Other Demographics
## 9                                                                                                 
## 10                                                                                          Health
## 11                                                                                                
## 12                                                                        Education and innovation
## 13                                                                                                
## 14                                                                                        Economic
## 15                                                                                                
## 16 List of international rankings\nList of top international rankings by country\nLists by country
##                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 V2
## 1                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 2                                                                                                                          Current population\nCurrent population (inc. dependent territories)\nCurrent population (graphical)\nPopulation in 1900\nPopulation in 1907\nPopulation in 2000\nPopulation in 2010\nPopulation (United Nations statistics)\nPopulation growth rate\nnatural increase\npast and future population\npopulation milestones\ncitizen population (domestic)
## 3                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 4                                                                                                                                                                                                                                                                                                                                                                                                             Current density\nCurrent real density based on food growing capacity
## 5                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 6                                                                                                                                                                                                                                                                                                                                                                                          Population of national capitals\nPopulation of cities proper\nPopulation of urban areas
## 7                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 8                                                                                                                                                                                                                                                         Age at first marriage\nDivorce rate\nEthnic and cultural diversity level\nForeign-born population\nImmigrant population\nMedian age\nNet migration rate\nNumber of households\nSex ratio\nUrban population\nUrbanization
## 9                                                                                                                                                                                                                                                                                                                                                                                                                                                                             <NA>
## 10                                                                                                                                                        Antiviral medications for pandemic influenza\nBirth rate\nMortality rate\nFertility rate\nHIV/AIDS adult prevalence rate\nInfant mortality rate\nLife expectancy\nObesity\nPercentage suffering from undernourishment\nHealth expenditure covered by government\nSuicide rate\nTotal health expenditure (PPP) per capita
## 11                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 12 25–34 year olds having a tertiary education degree\nBloomberg Innovation Index\nEducation Index\nInternational Innovation Index\nInnovation Union Scoreboard\nLiteracy rate\nProgramme for the International Assessment of Adult Competencies\nProgramme for International Student Assessment\nProgress in International Reading Literacy Study\nTrends in International Mathematics and Science Study\nWomen's average years in school\nWorld Intellectual Property Indicators
## 13                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 14                                                                                              Development aid given\nForeign aid received\n\nEmployment rate\nIrrigated land area\nHuman Development Index\nby country\ninequality-adjusted\n\nHuman Poverty Index\nImports\nIncome equality\nJob security\nLabour force\nNumber of millionaires (US dollars)\nNumber of billionaires (US dollars)\nPercentage living in poverty\nSen social welfare function\nUnemployment rate
## 15                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
## 16                                                                                                                                                                                                                                                                                                                                                                                                                                                                            <NA>
library(XML)

theURL <- "http://en.wikipedia.org/wiki/List_of_countries_by_number_of_military_and_paramilitary_personnel"
bowlPool <- readHTMLTable(theURL, which = 1, header = FALSE, stringsAsFactors = FALSE)
bowlPool
##       V1                                                V2              V3
## 1   Flag                                             State Active military
## 2                                           Afghanistan[1]         170,700
## 3                                               Albania[2]          14,250
## 4                                               Algeria[3]         130,000
## 5                                                Angola[4]         107,000
## 6                                   Antigua and Barbuda[5]             170
## 7                                             Argentina[6]          73,100
## 8                                       Armenia[7][Note 1]          48,834
## 9                                             Australia[8]          56,552
## 10                                              Austria[9]          22,800
## 11                                          Azerbaijan[10]          66,950
## 12                                             Bahamas[11]             860
## 13                                             Bahrain[12]           8,200
## 14                                          Bangladesh[13]         157,053
## 15                                            Barbados[11]             610
## 16                                             Belarus[14]          48,000
## 17                                             Belgium[15]          34,336
## 18                                              Belize[16]           1,050
## 19                                               Benin[17]           4,750
## 20                                                  Bhutan           8,000
## 21                                             Bolivia[18]          46,100
## 22                              Bosnia and Herzegovina[19]          10,500
## 23                                            Botswana[20]           9,000
## 24                                              Brazil[21]         318,480
## 25                                              Brunei[22]           7,000
## 26                                            Bulgaria[23]          31,300
## 27                                        Burkina Faso[24]          11,200
## 28                                               Burma[25]         406,000
## 29                                             Burundi[26]          20,000
## 30                                            Cambodia[27]         124,300
## 31                                            Cameroon[28]          14,100
## 32                                      Canada[29][Note 2]          92,000
## 33                                          Cape Verde[30]           1,200
## 34                            Central African Republic[31]           2,150
## 35                                                Chad[32]          25,350
## 36                                               Chile[33]          59,059
## 37                  People's Republic of China[34][Note 3]       2,285,000
## 38                                            Colombia[35]         449,415
## 39                                          Costa Rica[36]               0
## 40                                             Croatia[37]          16,550
## 41                                        Cuba[38][Note 4]          49,000
## 42                                              Cyprus[39]          12,000
## 43                                      Czech Republic[40]          23,650
## 44                                       Côte d'Ivoire[41]          17,050
## 45                    Democratic Republic of the Congo[42]         144,000
## 46       Democratic People's Republic of Korea[43][Note 5]       1,190,000
## 47                                             Denmark[44]          18,628
## 48                                            Djibouti[45]          10,450
## 49                                  Dominican Republic[46]          24,500
## 50                                             Ecuador[47]          58,483
## 51                                               Egypt[48]         438,500
## 52                                         El Salvador[49]          15,500
## 53                                   Equatorial Guinea[50]           1,320
## 54                                             Eritrea[51]         201,750
## 55                                             Estonia[52]           5,750
## 56                                            Ethiopia[53]         138,000
## 57                                                Fiji[54]           3,500
## 58                                             Finland[55]          22,200
## 59                                              France[56]         215,019
## 60                                               Gabon[57]           4,700
## 61                                              Gambia[58]             800
## 62                                     Georgia[59][60][61]          37,825
## 63                                         Germany[62][63]         186,450
## 64                                               Ghana[64]          15,500
## 65                                              Greece[65]         143,350
## 66                                           Guatemala[66]          15,212
## 67                                              Guinea[67]          12,300
## 68                                       Guinea-Bissau[68]           4,450
## 69                                              Guyana[69]           1,100
## 70                                               Haiti[70]               0
## 71                                            Honduras[71]          12,000
## 72                                             Hungary[72]          22,587
## 73                                             Iceland[73]               0
## 74                                       India[74][Note 6]       1,325,000
## 75                                           Indonesia[75]         302,000
## 76                                        Iran[76][Note 7]         523,000
## 77                                                Iraq[77]         271,400
## 78                                             Ireland[78]           9,350
## 79                                              Israel[79]         176,500
## 80                                   Italy[80][81][Note 8]         179,155
## 81                                             Jamaica[82]           2,830
## 82                                               Japan[83]         247,764
## 83                                              Jordan[84]         100,500
## 84                                          Kazakhstan[85]          49,000
## 85                                               Kenya[86]          24,120
## 86                                      Kosovo[87][88][89]           2,500
## 87                                              Kuwait[90]          15,500
## 88                                          Kyrgyzstan[91]          10,900
## 89                                                Laos[92]          29,100
## 90                                              Latvia[93]           4,600
## 91                                             Lebanon[94]          60,000
## 92                                             Lesotho[95]           2,000
## 93                                             Liberia[96]           2,400
## 94                                               Libya[97]           7,000
## 95                                           Lithuania[98]          10,640
## 96                                          Luxembourg[99]             900
## 97                                         Madagascar[100]          13,500
## 98                                             Malawi[101]           5,300
## 99                                   Malaysia[102][Note 9]         109,000
## 100                                              Mali[103]           7,350
## 101                                             Malta[104]           1,954
## 102                                        Mauritania[105]          15,870
## 103                                         Mauritius[106]               0
## 104                                            Mexico[107]         280,000
## 105                                           Moldova[108]           5,354
## 106                                          Mongolia[109]          10,000
## 107                                        Montenegro[110]           2,984
## 108                                           Morocco[111]         195,800
## 109                                        Mozambique[112]          11,200
## 110                                           Namibia[113]           9,200
## 111                                             Nepal[114]          95,753
## 112                                       Netherlands[115]          37,400
## 113                                       New Zealand[116]           9,637
## 114                                         Nicaragua[117]          12,000
## 115                                             Niger[118]           5,300
## 116                                           Nigeria[119]          80,000
## 117                                            Norway[120]          24,450
## 118                                              Oman[121]          42,600
## 119                                          Pakistan[122]         643,800
## 120                                Palestine[123][Note 10]               0
## 121                                            Panama[124]               0
## 122                                  Papua New Guinea[125]           3,100
## 123                                          Paraguay[126]          10,650
## 124                                              Peru[127]         115,000
## 125                                       Philippines[128]         125,000
## 126                                            Poland[129]          99,300
## 127                                          Portugal[130]          42,634
## 128                                             Qatar[131]          11,800
## 129                             Republic of Macedonia[132]           8,000
## 130                             Republic of the Congo[133]          10,000
## 131                                           Romania[134]          73,900
## 132                  Russian Federation[135][136][Note 11]         766,000
## 133                                            Rwanda[137]          33,000
## 134                                      Saudi Arabia[138]         233,500
## 135                                           Senegal[139]          13,620
## 136                                            Serbia[140]          28,184
## 137                                        Seychelles[141]             200
## 138                                      Sierra Leone[142]          10,500
## 139                                         Singapore[143]          72,500
## 140                                          Slovakia[144]          15,799
## 141                                          Slovenia[145]           7,600
## 142                                           Somalia[146]           2,000
## 143                                      South Africa[147]          62,082
## 144                        Republic of Korea[148][Note 12]         630,000
## 145                                             Spain[149]         123,300
## 146                                         Sri Lanka[150]         280,000
## 147                                             Sudan[151]         109,300
## 148                                       South Sudan[152]         140,000
## 149                                          Suriname[153]           1,840
## 150                                   Sweden[154][Note 13]          20,363
## 151                                       Switzerland[155]          22,650
## 152                                             Syria[156]         178,000
## 153                                 Republic of China[157]         290,000
## 154                                        Tajikistan[158]           8,800
## 155                                          Tanzania[159]          27,000
## 156                                 Thailand[160][Note 14]         305,860
## 157                                       Timor Leste[161]           1,332
## 158                                              Togo[162]           8,550
## 159                               Trinidad and Tobago[163]           4,063
## 160                                           Tunisia[164]          35,800
## 161                                            Turkey[165]         510,600
## 162                                      Turkmenistan[166]          22,000
## 163                                            Uganda[167]          45,000
## 164                                           Ukraine[168]         232,000
## 165                              United Arab Emirates[169]          51,000
## 166                      United Kingdom[170][171][Note 15]         162,550
## 167                          United States of America[173]       1,492,000
## 168                                           Uruguay[174]          24,621
## 169                                        Uzbekistan[175]          48,000
## 170                                         Venezuela[176]         115,000
## 171                                  Vietnam[177][Note 16]         482,000
## 172                                             Yemen[178]          66,700
## 173                                            Zambia[179]          15,100
## 174                                          Zimbabwe[180]          29,000
##                   V4           V5        V6                    V7
## 1   Reserve military Paramilitary     Total Total per 1000 capita
## 2                  0      136,100   306,800                   9.9
## 3                  0          500    14,750                   4.1
## 4            150,000      187,200   467,200                  13.7
## 5                  0       10,000   117,000                   9.1
## 6                 75            0       245                   2.9
## 7                  0       31,240   104,340                   2.6
## 8            210,000        6,964   265,798                  89.6
## 9             20,440            0    76,992                   3.6
## 10           171,400            0   194,200                  23.7
## 11           300,000       15,000   381,950                  40.2
## 12                 0            0       860                   2.8
## 13                 0       11,260    19,460                  14.5
## 14            63,900                220,953                   1.4
## 15               430            0     1,040                   3.7
## 16           289,500      110,000   447,500                  46.4
## 17             1,400            0    35,736                   3.4
## 18               700            0     1,750                   5.7
## 19                 0        2,500     7,250                   0.8
## 20                 0        1,000     9,000                  12.1
## 21                 0       37,100    83,200                   8.5
## 22                 0            0    10,500                   2.3
## 23                 0        1,500    10,500                   5.3
## 24         1,340,000      395,000 2,053,480                  10.3
## 25               700        2,250     9,950                  23.9
## 26           303,000       16,000   350,300                  47.6
## 27                 0          250    11,450                   0.7
## 28                 0      107,250   513,250                  10.7
## 29                 0       31,050    51,050                   5.4
## 30                 0       67,000   191,300                  13.2
## 31                 0        9,000    23,100                   1.2
## 32            51,000        4,500   147,500                   4.1
## 33                 0            0     1,200                   2.8
## 34                 0        1,000     3,150                   0.7
## 35                 0        9,500    34,850                   3.4
## 36            40,000       44,712   143,771                   8.7
## 37           510,000    4,132,000 6,927,000                   5.1
## 38           790,000      144,097 1,383,512                  29.2
## 39                 0        9,800     9,800                   2.1
## 40            21,000        3,000    40,550                     9
## 41            39,000       26,500   114,500                    10
## 42            50,000          750    62,750                  57.8
## 43                 0        3,100    26,750                   2.5
## 44            10,000        1,500    28,550                   1.4
## 45                 0        1,400   145,400                   2.1
## 46         6,300,000      189,000 7,679,000                 308.5
## 47            53,507            0    72,135                  13.1
## 48                 0        2,500    12,950                    14
## 49                 0       15,000    39,500                   4.1
## 50           118,000          500   176,983                  12.1
## 51           479,000      397,000 1,314,500                  14.9
## 52             9,900       17,000    42,400                   5.9
## 53                 0        2,000     3,320                   5.2
## 54           120,000            0   321,750                  50.4
## 55            30,000       12,000    47,750                  36.3
## 56                 0            0   138,000                   1.6
## 57             6,000            0     9,500                  10.1
## 58           340,000        2,800   365,000                  66.7
## 59            27,680       98,155   340,854                   5.3
## 60                          2,000     6,700                   4.4
## 61                 0            0       800                   0.4
## 62           140,000       11,700   189,525                  42.2
## 63            40,320            0   226,770                   2.8
## 64                 0            0    15,500                   0.6
## 65           216,650        4,000   364,000                  33.8
## 66            63,863       19,000    98,075                   7.4
## 67                 0        7,000    19,300                   1.9
## 68                 0        2,000     6,450                   4.2
## 69               670        1,500     3,270                   4.3
## 70                 0        2,000     2,000                   0.2
## 71            60,000        8,000    80,000                  10.2
## 72            44,000       12,000    78,587                   7.9
## 73                 0          130       130                   0.4
## 74         1,155,000    2,288,407 4,768,407                   3.9
## 75           400,000      280,000   982,000                   4.1
## 76           350,000       40,000   913,000                  11.4
## 77                 0      531,000   802,400                  27.7
## 78             4,630            0    13,980                     3
## 79           465,000        8,000   649,500                  78.8
## 80            41,867      186,007   407,029                   6.8
## 81               953            0     3,783                   1.3
## 82            56,378       12,250   316,392                   2.5
## 83            65,000       15,000   180,500                  27.1
## 84                 0       31,500    80,500                   5.2
## 85                 0        5,000    29,120                   0.7
## 86               800            0     3,300                   1.9
## 87            23,700        7,100    46,300                  17.2
## 88                 0        9,500    20,400                   3.8
## 89                 0      100,000   129,100                  18.9
## 90            10,666            0    15,266                   6.8
## 91           200,000       20,000   280,000                  56.4
## 92                 0            0     2,000                   0.9
## 93                 0            0     2,400                   0.7
## 94            40,000            0    47,000                   7.4
## 95             6,700       14,600    31,940                     9
## 96                 0          612     1,512                   3.1
## 97                 0        8,100    21,600                     1
## 98                 0        1,500     6,800                   0.5
## 99            51,600      269,300   429,900                  16.7
## 100                0        7,800    15,150                   1.1
## 101              173            0     2,127                   5.2
## 102                0        5,000    20,870                   6.7
## 103                0        2,000     2,000                   1.6
## 104           87,344       51,500   418,844                   3.8
## 105           57,971        2,379    65,704                  15.2
## 106          137,000        7,200   154,200                  50.7
## 107                0       10,100    13,084                  19.5
## 108          150,000       50,000   395,800                  12.7
## 109                0            0    11,200                   0.5
## 110                0        6,000    15,200                   7.2
## 111                0       62,000   157,753                   5.5
## 112            3,200        5,900    46,500                   2.7
## 113            2,314            0    11,951                   2.8
## 114                0            0    12,000                     2
## 115                0        5,400    10,700                   0.7
## 116                0       82,000   162,000                     1
## 117           45,250            0    69,700                    15
## 118                0        4,400    47,000                  13.8
## 119          500,000      304,000 1,447,800                   8.3
## 120                0       56,000    56,000                    14
## 121                0       12,000    12,000                   3.6
## 122                0            0     3,100                   0.5
## 123          164,500       14,800   189,950                  27.2
## 124          188,000       77,000   380,000                  12.9
## 125          131,000       40,500   296,500                     3
## 126           20,000       73,400   192,700                     5
## 127          211,957       47,700   302,291                  28.2
## 128                0            0    11,800                   5.5
## 129            4,850            0    12,850                   6.2
## 130                0        2,000    12,000                     3
## 131           45,000       79,900   198,800                   8.9
## 132        2,035,000      474,000 3,275,000                  22.4
## 133                0        2,000    35,000                   3.3
## 134                0       15,500   249,000                   8.7
## 135                0        5,000    18,620                   1.4
## 136           50,171       10,000    88,355                    12
## 137                0          450       650                   7.4
## 138                0            0    10,500                     2
## 139          312,500       75,100   460,100                  84.1
## 140                0            0    15,799                   2.9
## 141            1,700        4,500    13,800                   6.9
## 142                0            0     2,000                   0.2
## 143           15,071       12,382    89,535                   1.8
## 144        2,970,000      130,000 3,730,000                  72.7
## 145           16,000       80,210   219,510                   4.7
## 146            5,500       92,600   378,100                  17.7
## 147           85,000       17,500   211,800                   5.2
## 148                0            0   140,000                   3.4
## 149                0            0     1,840                   3.8
## 150          200,000          800   221,163                  24.4
## 151          161,250       74,000   257,900                  31.5
## 152          314,000      108,000   600,000                  26.7
## 153        1,657,000       17,000 1,964,000                    84
## 154                0        7,500    16,300                   2.2
## 155           80,000        1,400   108,400                   2.6
## 156          200,000      158,700   664,560                  10.1
## 157                0            0     1,332                   1.3
## 158                0          750     9,300                   1.5
## 159                0            0     4,063                   3.3
## 160                0       12,000    47,800                   4.6
## 161          378,700      102,200   991,500                  12.3
## 162                0            0    22,000                   4.5
## 163                0        1,800    46,800                   1.4
## 164          700,000       84,900 1,016,900                  22.3
## 165                0            0    51,000                   5.5
## 166           73,970            0   236,520                   3.7
## 167          843,750       14,000 2,349,750                   7.3
## 168                0          818    25,439                   7.3
## 169                0       20,000    68,000                   2.5
## 170            8,000            0   123,000                   4.6
## 171        5,000,000       40,000 5,522,000                  60.9
## 172                0       71,200   137,900                     6
## 173            3,000        1,400    19,500                   1.6
## 174                0       21,800    50,800                   3.9
##                         V8
## 1   Active per 1000 capita
## 2                      5.5
## 3                      3.9
## 4                      3.8
## 5                      8.4
## 6                        2
## 7                      1.8
## 8                     16.5
## 9                      2.7
## 10                     2.8
## 11                     7.1
## 12                     2.8
## 13                     6.1
## 14                       1
## 15                     2.1
## 16                       5
## 17                     3.3
## 18                     3.4
## 19                     0.5
## 20                    10.8
## 21                     4.7
## 22                     2.3
## 23                     4.5
## 24                     1.6
## 25                    16.8
## 26                     4.3
## 27                     0.7
## 28                     8.4
## 29                     2.1
## 30                     8.6
## 31                     0.7
## 32                     2.6
## 33                     2.8
## 34                     0.5
## 35                     2.5
## 36                     3.6
## 37                     1.7
## 38                     9.5
## 39                       0
## 40                     3.7
## 41                     4.3
## 42                    11.1
## 43                     2.2
## 44                     0.8
## 45                     2.1
## 46                    47.8
## 47                     3.4
## 48                    11.3
## 49                     2.5
## 50                       4
## 51                       5
## 52                     2.2
## 53                     2.1
## 54                    31.6
## 55                     4.4
## 56                     1.6
## 57                     3.7
## 58                     4.1
## 59                     3.3
## 60                     3.1
## 61                     0.4
## 62                     8.4
## 63                     2.3
## 64                     0.6
## 65                    13.3
## 66                     1.1
## 67                     1.2
## 68                     2.9
## 69                     1.5
## 70                       0
## 71                     1.5
## 72                     2.3
## 73                       0
## 74                     1.1
## 75                     1.2
## 76                     6.5
## 77                     9.4
## 78                       2
## 79                    21.4
## 80                       3
## 81                       1
## 82                     1.9
## 83                    15.1
## 84                     3.2
## 85                     0.6
## 86                     1.4
## 87                     5.8
## 88                       2
## 89                     4.3
## 90                     2.1
## 91                    12.1
## 92                     0.9
## 93                     0.7
## 94                     1.1
## 95                       3
## 96                     1.8
## 97                     0.7
## 98                     0.4
## 99                     4.2
## 100                    0.5
## 101                    4.8
## 102                    5.1
## 103                      0
## 104                    2.5
## 105                    1.2
## 106                    3.3
## 107                    4.4
## 108                    6.3
## 109                    0.5
## 110                    4.4
## 111                    3.4
## 112                    2.2
## 113                    2.3
## 114                      2
## 115                    0.3
## 116                    0.5
## 117                    5.2
## 118                   12.5
## 119                    3.7
## 120                      0
## 121                      0
## 122                    0.5
## 123                    1.5
## 124                    3.9
## 125                    1.3
## 126                    2.6
## 127                      4
## 128                    5.5
## 129                    3.9
## 130                    2.5
## 131                    3.3
## 132                    5.2
## 133                    3.1
## 134                    8.1
## 135                      1
## 136                    3.8
## 137                    2.3
## 138                      2
## 139                   13.3
## 140                    2.9
## 141                    3.8
## 142                    0.2
## 143                    1.3
## 144                   12.3
## 145                    2.6
## 146                   13.1
## 147                    2.7
## 148                    3.4
## 149                    3.8
## 150                    2.2
## 151                    2.8
## 152                    7.9
## 153                   12.4
## 154                    1.2
## 155                    0.7
## 156                    4.6
## 157                    1.3
## 158                    1.4
## 159                    3.3
## 160                    3.4
## 161                    6.3
## 162                    4.5
## 163                    1.4
## 164                    5.1
## 165                    5.5
## 166                    2.6
## 167                    4.7
## 168                      7
## 169                    1.7
## 170                    4.3
## 171                    5.3
## 172                    2.9
## 173                    1.3
## 174                    2.2
theURL <- "http://en.wikipedia.org/wiki/List_of_countries_by_number_of_military_and_paramilitary_personnel"
hvalues <- readHTMLTable(theURL)

hvalues
## $`NULL`
##     Flag                                             State Active military
## 1                                           Afghanistan[1]         170,700
## 2                                               Albania[2]          14,250
## 3                                               Algeria[3]         130,000
## 4                                                Angola[4]         107,000
## 5                                   Antigua and Barbuda[5]             170
## 6                                             Argentina[6]          73,100
## 7                                       Armenia[7][Note 1]          48,834
## 8                                             Australia[8]          56,552
## 9                                               Austria[9]          22,800
## 10                                          Azerbaijan[10]          66,950
## 11                                             Bahamas[11]             860
## 12                                             Bahrain[12]           8,200
## 13                                          Bangladesh[13]         157,053
## 14                                            Barbados[11]             610
## 15                                             Belarus[14]          48,000
## 16                                             Belgium[15]          34,336
## 17                                              Belize[16]           1,050
## 18                                               Benin[17]           4,750
## 19                                                  Bhutan           8,000
## 20                                             Bolivia[18]          46,100
## 21                              Bosnia and Herzegovina[19]          10,500
## 22                                            Botswana[20]           9,000
## 23                                              Brazil[21]         318,480
## 24                                              Brunei[22]           7,000
## 25                                            Bulgaria[23]          31,300
## 26                                        Burkina Faso[24]          11,200
## 27                                               Burma[25]         406,000
## 28                                             Burundi[26]          20,000
## 29                                            Cambodia[27]         124,300
## 30                                            Cameroon[28]          14,100
## 31                                      Canada[29][Note 2]          92,000
## 32                                          Cape Verde[30]           1,200
## 33                            Central African Republic[31]           2,150
## 34                                                Chad[32]          25,350
## 35                                               Chile[33]          59,059
## 36                  People's Republic of China[34][Note 3]       2,285,000
## 37                                            Colombia[35]         449,415
## 38                                          Costa Rica[36]               0
## 39                                             Croatia[37]          16,550
## 40                                        Cuba[38][Note 4]          49,000
## 41                                              Cyprus[39]          12,000
## 42                                      Czech Republic[40]          23,650
## 43                                       Côte d'Ivoire[41]          17,050
## 44                    Democratic Republic of the Congo[42]         144,000
## 45       Democratic People's Republic of Korea[43][Note 5]       1,190,000
## 46                                             Denmark[44]          18,628
## 47                                            Djibouti[45]          10,450
## 48                                  Dominican Republic[46]          24,500
## 49                                             Ecuador[47]          58,483
## 50                                               Egypt[48]         438,500
## 51                                         El Salvador[49]          15,500
## 52                                   Equatorial Guinea[50]           1,320
## 53                                             Eritrea[51]         201,750
## 54                                             Estonia[52]           5,750
## 55                                            Ethiopia[53]         138,000
## 56                                                Fiji[54]           3,500
## 57                                             Finland[55]          22,200
## 58                                              France[56]         215,019
## 59                                               Gabon[57]           4,700
## 60                                              Gambia[58]             800
## 61                                     Georgia[59][60][61]          37,825
## 62                                         Germany[62][63]         186,450
## 63                                               Ghana[64]          15,500
## 64                                              Greece[65]         143,350
## 65                                           Guatemala[66]          15,212
## 66                                              Guinea[67]          12,300
## 67                                       Guinea-Bissau[68]           4,450
## 68                                              Guyana[69]           1,100
## 69                                               Haiti[70]               0
## 70                                            Honduras[71]          12,000
## 71                                             Hungary[72]          22,587
## 72                                             Iceland[73]               0
## 73                                       India[74][Note 6]       1,325,000
## 74                                           Indonesia[75]         302,000
## 75                                        Iran[76][Note 7]         523,000
## 76                                                Iraq[77]         271,400
## 77                                             Ireland[78]           9,350
## 78                                              Israel[79]         176,500
## 79                                   Italy[80][81][Note 8]         179,155
## 80                                             Jamaica[82]           2,830
## 81                                               Japan[83]         247,764
## 82                                              Jordan[84]         100,500
## 83                                          Kazakhstan[85]          49,000
## 84                                               Kenya[86]          24,120
## 85                                      Kosovo[87][88][89]           2,500
## 86                                              Kuwait[90]          15,500
## 87                                          Kyrgyzstan[91]          10,900
## 88                                                Laos[92]          29,100
## 89                                              Latvia[93]           4,600
## 90                                             Lebanon[94]          60,000
## 91                                             Lesotho[95]           2,000
## 92                                             Liberia[96]           2,400
## 93                                               Libya[97]           7,000
## 94                                           Lithuania[98]          10,640
## 95                                          Luxembourg[99]             900
## 96                                         Madagascar[100]          13,500
## 97                                             Malawi[101]           5,300
## 98                                   Malaysia[102][Note 9]         109,000
## 99                                               Mali[103]           7,350
## 100                                             Malta[104]           1,954
## 101                                        Mauritania[105]          15,870
## 102                                         Mauritius[106]               0
## 103                                            Mexico[107]         280,000
## 104                                           Moldova[108]           5,354
## 105                                          Mongolia[109]          10,000
## 106                                        Montenegro[110]           2,984
## 107                                           Morocco[111]         195,800
## 108                                        Mozambique[112]          11,200
## 109                                           Namibia[113]           9,200
## 110                                             Nepal[114]          95,753
## 111                                       Netherlands[115]          37,400
## 112                                       New Zealand[116]           9,637
## 113                                         Nicaragua[117]          12,000
## 114                                             Niger[118]           5,300
## 115                                           Nigeria[119]          80,000
## 116                                            Norway[120]          24,450
## 117                                              Oman[121]          42,600
## 118                                          Pakistan[122]         643,800
## 119                                Palestine[123][Note 10]               0
## 120                                            Panama[124]               0
## 121                                  Papua New Guinea[125]           3,100
## 122                                          Paraguay[126]          10,650
## 123                                              Peru[127]         115,000
## 124                                       Philippines[128]         125,000
## 125                                            Poland[129]          99,300
## 126                                          Portugal[130]          42,634
## 127                                             Qatar[131]          11,800
## 128                             Republic of Macedonia[132]           8,000
## 129                             Republic of the Congo[133]          10,000
## 130                                           Romania[134]          73,900
## 131                  Russian Federation[135][136][Note 11]         766,000
## 132                                            Rwanda[137]          33,000
## 133                                      Saudi Arabia[138]         233,500
## 134                                           Senegal[139]          13,620
## 135                                            Serbia[140]          28,184
## 136                                        Seychelles[141]             200
## 137                                      Sierra Leone[142]          10,500
## 138                                         Singapore[143]          72,500
## 139                                          Slovakia[144]          15,799
## 140                                          Slovenia[145]           7,600
## 141                                           Somalia[146]           2,000
## 142                                      South Africa[147]          62,082
## 143                        Republic of Korea[148][Note 12]         630,000
## 144                                             Spain[149]         123,300
## 145                                         Sri Lanka[150]         280,000
## 146                                             Sudan[151]         109,300
## 147                                       South Sudan[152]         140,000
## 148                                          Suriname[153]           1,840
## 149                                   Sweden[154][Note 13]          20,363
## 150                                       Switzerland[155]          22,650
## 151                                             Syria[156]         178,000
## 152                                 Republic of China[157]         290,000
## 153                                        Tajikistan[158]           8,800
## 154                                          Tanzania[159]          27,000
## 155                                 Thailand[160][Note 14]         305,860
## 156                                       Timor Leste[161]           1,332
## 157                                              Togo[162]           8,550
## 158                               Trinidad and Tobago[163]           4,063
## 159                                           Tunisia[164]          35,800
## 160                                            Turkey[165]         510,600
## 161                                      Turkmenistan[166]          22,000
## 162                                            Uganda[167]          45,000
## 163                                           Ukraine[168]         232,000
## 164                              United Arab Emirates[169]          51,000
## 165                      United Kingdom[170][171][Note 15]         162,550
## 166                          United States of America[173]       1,492,000
## 167                                           Uruguay[174]          24,621
## 168                                        Uzbekistan[175]          48,000
## 169                                         Venezuela[176]         115,000
## 170                                  Vietnam[177][Note 16]         482,000
## 171                                             Yemen[178]          66,700
## 172                                            Zambia[179]          15,100
## 173                                          Zimbabwe[180]          29,000
##     Reserve military Paramilitary     Total Total per 1000 capita
## 1                  0      136,100   306,800                   9.9
## 2                  0          500    14,750                   4.1
## 3            150,000      187,200   467,200                  13.7
## 4                  0       10,000   117,000                   9.1
## 5                 75            0       245                   2.9
## 6                  0       31,240   104,340                   2.6
## 7            210,000        6,964   265,798                  89.6
## 8             20,440            0    76,992                   3.6
## 9            171,400            0   194,200                  23.7
## 10           300,000       15,000   381,950                  40.2
## 11                 0            0       860                   2.8
## 12                 0       11,260    19,460                  14.5
## 13            63,900                220,953                   1.4
## 14               430            0     1,040                   3.7
## 15           289,500      110,000   447,500                  46.4
## 16             1,400            0    35,736                   3.4
## 17               700            0     1,750                   5.7
## 18                 0        2,500     7,250                   0.8
## 19                 0        1,000     9,000                  12.1
## 20                 0       37,100    83,200                   8.5
## 21                 0            0    10,500                   2.3
## 22                 0        1,500    10,500                   5.3
## 23         1,340,000      395,000 2,053,480                  10.3
## 24               700        2,250     9,950                  23.9
## 25           303,000       16,000   350,300                  47.6
## 26                 0          250    11,450                   0.7
## 27                 0      107,250   513,250                  10.7
## 28                 0       31,050    51,050                   5.4
## 29                 0       67,000   191,300                  13.2
## 30                 0        9,000    23,100                   1.2
## 31            51,000        4,500   147,500                   4.1
## 32                 0            0     1,200                   2.8
## 33                 0        1,000     3,150                   0.7
## 34                 0        9,500    34,850                   3.4
## 35            40,000       44,712   143,771                   8.7
## 36           510,000    4,132,000 6,927,000                   5.1
## 37           790,000      144,097 1,383,512                  29.2
## 38                 0        9,800     9,800                   2.1
## 39            21,000        3,000    40,550                     9
## 40            39,000       26,500   114,500                    10
## 41            50,000          750    62,750                  57.8
## 42                 0        3,100    26,750                   2.5
## 43            10,000        1,500    28,550                   1.4
## 44                 0        1,400   145,400                   2.1
## 45         6,300,000      189,000 7,679,000                 308.5
## 46            53,507            0    72,135                  13.1
## 47                 0        2,500    12,950                    14
## 48                 0       15,000    39,500                   4.1
## 49           118,000          500   176,983                  12.1
## 50           479,000      397,000 1,314,500                  14.9
## 51             9,900       17,000    42,400                   5.9
## 52                 0        2,000     3,320                   5.2
## 53           120,000            0   321,750                  50.4
## 54            30,000       12,000    47,750                  36.3
## 55                 0            0   138,000                   1.6
## 56             6,000            0     9,500                  10.1
## 57           340,000        2,800   365,000                  66.7
## 58            27,680       98,155   340,854                   5.3
## 59                          2,000     6,700                   4.4
## 60                 0            0       800                   0.4
## 61           140,000       11,700   189,525                  42.2
## 62            40,320            0   226,770                   2.8
## 63                 0            0    15,500                   0.6
## 64           216,650        4,000   364,000                  33.8
## 65            63,863       19,000    98,075                   7.4
## 66                 0        7,000    19,300                   1.9
## 67                 0        2,000     6,450                   4.2
## 68               670        1,500     3,270                   4.3
## 69                 0        2,000     2,000                   0.2
## 70            60,000        8,000    80,000                  10.2
## 71            44,000       12,000    78,587                   7.9
## 72                 0          130       130                   0.4
## 73         1,155,000    2,288,407 4,768,407                   3.9
## 74           400,000      280,000   982,000                   4.1
## 75           350,000       40,000   913,000                  11.4
## 76                 0      531,000   802,400                  27.7
## 77             4,630            0    13,980                     3
## 78           465,000        8,000   649,500                  78.8
## 79            41,867      186,007   407,029                   6.8
## 80               953            0     3,783                   1.3
## 81            56,378       12,250   316,392                   2.5
## 82            65,000       15,000   180,500                  27.1
## 83                 0       31,500    80,500                   5.2
## 84                 0        5,000    29,120                   0.7
## 85               800            0     3,300                   1.9
## 86            23,700        7,100    46,300                  17.2
## 87                 0        9,500    20,400                   3.8
## 88                 0      100,000   129,100                  18.9
## 89            10,666            0    15,266                   6.8
## 90           200,000       20,000   280,000                  56.4
## 91                 0            0     2,000                   0.9
## 92                 0            0     2,400                   0.7
## 93            40,000            0    47,000                   7.4
## 94             6,700       14,600    31,940                     9
## 95                 0          612     1,512                   3.1
## 96                 0        8,100    21,600                     1
## 97                 0        1,500     6,800                   0.5
## 98            51,600      269,300   429,900                  16.7
## 99                 0        7,800    15,150                   1.1
## 100              173            0     2,127                   5.2
## 101                0        5,000    20,870                   6.7
## 102                0        2,000     2,000                   1.6
## 103           87,344       51,500   418,844                   3.8
## 104           57,971        2,379    65,704                  15.2
## 105          137,000        7,200   154,200                  50.7
## 106                0       10,100    13,084                  19.5
## 107          150,000       50,000   395,800                  12.7
## 108                0            0    11,200                   0.5
## 109                0        6,000    15,200                   7.2
## 110                0       62,000   157,753                   5.5
## 111            3,200        5,900    46,500                   2.7
## 112            2,314            0    11,951                   2.8
## 113                0            0    12,000                     2
## 114                0        5,400    10,700                   0.7
## 115                0       82,000   162,000                     1
## 116           45,250            0    69,700                    15
## 117                0        4,400    47,000                  13.8
## 118          500,000      304,000 1,447,800                   8.3
## 119                0       56,000    56,000                    14
## 120                0       12,000    12,000                   3.6
## 121                0            0     3,100                   0.5
## 122          164,500       14,800   189,950                  27.2
## 123          188,000       77,000   380,000                  12.9
## 124          131,000       40,500   296,500                     3
## 125           20,000       73,400   192,700                     5
## 126          211,957       47,700   302,291                  28.2
## 127                0            0    11,800                   5.5
## 128            4,850            0    12,850                   6.2
## 129                0        2,000    12,000                     3
## 130           45,000       79,900   198,800                   8.9
## 131        2,035,000      474,000 3,275,000                  22.4
## 132                0        2,000    35,000                   3.3
## 133                0       15,500   249,000                   8.7
## 134                0        5,000    18,620                   1.4
## 135           50,171       10,000    88,355                    12
## 136                0          450       650                   7.4
## 137                0            0    10,500                     2
## 138          312,500       75,100   460,100                  84.1
## 139                0            0    15,799                   2.9
## 140            1,700        4,500    13,800                   6.9
## 141                0            0     2,000                   0.2
## 142           15,071       12,382    89,535                   1.8
## 143        2,970,000      130,000 3,730,000                  72.7
## 144           16,000       80,210   219,510                   4.7
## 145            5,500       92,600   378,100                  17.7
## 146           85,000       17,500   211,800                   5.2
## 147                0            0   140,000                   3.4
## 148                0            0     1,840                   3.8
## 149          200,000          800   221,163                  24.4
## 150          161,250       74,000   257,900                  31.5
## 151          314,000      108,000   600,000                  26.7
## 152        1,657,000       17,000 1,964,000                    84
## 153                0        7,500    16,300                   2.2
## 154           80,000        1,400   108,400                   2.6
## 155          200,000      158,700   664,560                  10.1
## 156                0            0     1,332                   1.3
## 157                0          750     9,300                   1.5
## 158                0            0     4,063                   3.3
## 159                0       12,000    47,800                   4.6
## 160          378,700      102,200   991,500                  12.3
## 161                0            0    22,000                   4.5
## 162                0        1,800    46,800                   1.4
## 163          700,000       84,900 1,016,900                  22.3
## 164                0            0    51,000                   5.5
## 165           73,970            0   236,520                   3.7
## 166          843,750       14,000 2,349,750                   7.3
## 167                0          818    25,439                   7.3
## 168                0       20,000    68,000                   2.5
## 169            8,000            0   123,000                   4.6
## 170        5,000,000       40,000 5,522,000                  60.9
## 171                0       71,200   137,900                     6
## 172            3,000        1,400    19,500                   1.6
## 173                0       21,800    50,800                   3.9
##     Active per 1000 capita
## 1                      5.5
## 2                      3.9
## 3                      3.8
## 4                      8.4
## 5                        2
## 6                      1.8
## 7                     16.5
## 8                      2.7
## 9                      2.8
## 10                     7.1
## 11                     2.8
## 12                     6.1
## 13                       1
## 14                     2.1
## 15                       5
## 16                     3.3
## 17                     3.4
## 18                     0.5
## 19                    10.8
## 20                     4.7
## 21                     2.3
## 22                     4.5
## 23                     1.6
## 24                    16.8
## 25                     4.3
## 26                     0.7
## 27                     8.4
## 28                     2.1
## 29                     8.6
## 30                     0.7
## 31                     2.6
## 32                     2.8
## 33                     0.5
## 34                     2.5
## 35                     3.6
## 36                     1.7
## 37                     9.5
## 38                       0
## 39                     3.7
## 40                     4.3
## 41                    11.1
## 42                     2.2
## 43                     0.8
## 44                     2.1
## 45                    47.8
## 46                     3.4
## 47                    11.3
## 48                     2.5
## 49                       4
## 50                       5
## 51                     2.2
## 52                     2.1
## 53                    31.6
## 54                     4.4
## 55                     1.6
## 56                     3.7
## 57                     4.1
## 58                     3.3
## 59                     3.1
## 60                     0.4
## 61                     8.4
## 62                     2.3
## 63                     0.6
## 64                    13.3
## 65                     1.1
## 66                     1.2
## 67                     2.9
## 68                     1.5
## 69                       0
## 70                     1.5
## 71                     2.3
## 72                       0
## 73                     1.1
## 74                     1.2
## 75                     6.5
## 76                     9.4
## 77                       2
## 78                    21.4
## 79                       3
## 80                       1
## 81                     1.9
## 82                    15.1
## 83                     3.2
## 84                     0.6
## 85                     1.4
## 86                     5.8
## 87                       2
## 88                     4.3
## 89                     2.1
## 90                    12.1
## 91                     0.9
## 92                     0.7
## 93                     1.1
## 94                       3
## 95                     1.8
## 96                     0.7
## 97                     0.4
## 98                     4.2
## 99                     0.5
## 100                    4.8
## 101                    5.1
## 102                      0
## 103                    2.5
## 104                    1.2
## 105                    3.3
## 106                    4.4
## 107                    6.3
## 108                    0.5
## 109                    4.4
## 110                    3.4
## 111                    2.2
## 112                    2.3
## 113                      2
## 114                    0.3
## 115                    0.5
## 116                    5.2
## 117                   12.5
## 118                    3.7
## 119                      0
## 120                      0
## 121                    0.5
## 122                    1.5
## 123                    3.9
## 124                    1.3
## 125                    2.6
## 126                      4
## 127                    5.5
## 128                    3.9
## 129                    2.5
## 130                    3.3
## 131                    5.2
## 132                    3.1
## 133                    8.1
## 134                      1
## 135                    3.8
## 136                    2.3
## 137                      2
## 138                   13.3
## 139                    2.9
## 140                    3.8
## 141                    0.2
## 142                    1.3
## 143                   12.3
## 144                    2.6
## 145                   13.1
## 146                    2.7
## 147                    3.4
## 148                    3.8
## 149                    2.2
## 150                    2.8
## 151                    7.9
## 152                   12.4
## 153                    1.2
## 154                    0.7
## 155                    4.6
## 156                    1.3
## 157                    1.4
## 158                    3.3
## 159                    3.4
## 160                    6.3
## 161                    4.5
## 162                    1.4
## 163                    5.1
## 164                    5.5
## 165                    2.6
## 166                    4.7
## 167                      7
## 168                    1.7
## 169                    4.3
## 170                    5.3
## 171                    2.9
## 172                    1.3
## 173                    2.2
## 
## $`NULL`
##                                                                                                V1
## 1                                              v\nt\ne\n\nLists of countries by military rankings
## 2                                                                                                
## 3                                                                                        Strength
## 4                                                                                                
## 5                                                                                         Finance
## 6                                                                                                
## 7                                                                                    Peacekeeping
## 8                                                                                                
## 9 List of international rankings\nList of top international rankings by country\nLists by country
##                                                                                                      V2
## 1                                                                                                  <NA>
## 2                                                                                                  <NA>
## 3 Military and paramilitary personnel\nMilitary equipment\nAircraft carriers\nWarships\nNuclear weapons
## 4                                                                                                  <NA>
## 5                        Arms exports\nArms imports\nMilitary budget (per capita)\nMilitarization index
## 6                                                                                                  <NA>
## 7                                           Global Peace Index\nGlobal Terrorism Index\nUN peacekeepers
## 8                                                                                                  <NA>
## 9                                                                                                  <NA>
## 
## $`NULL`
##                                                                                                V1
## 1                                                                                                
## 2                                                                                        Strength
## 3                                                                                                
## 4                                                                                         Finance
## 5                                                                                                
## 6                                                                                    Peacekeeping
## 7                                                                                                
## 8 List of international rankings\nList of top international rankings by country\nLists by country
##                                                                                                      V2
## 1                                                                                                  <NA>
## 2 Military and paramilitary personnel\nMilitary equipment\nAircraft carriers\nWarships\nNuclear weapons
## 3                                                                                                  <NA>
## 4                        Arms exports\nArms imports\nMilitary budget (per capita)\nMilitarization index
## 5                                                                                                  <NA>
## 6                                           Global Peace Index\nGlobal Terrorism Index\nUN peacekeepers
## 7                                                                                                  <NA>
## 8                                                                                                  <NA>
library(XML)

theURL <- "http://en.wikipedia.org/wiki/List_of_countries_by_level_of_military_equipment"
bowlPool <- readHTMLTable(theURL, which = 1, header = FALSE, stringsAsFactors = FALSE)
bowlPool
##   V1
## 1   
##                                                                                                                                                                               V2
## 1 This article's factual accuracy is disputed. Please help to ensure that disputed statements are reliably sourced. See the relevant discussion on the talk page. (January 2011)
theURL <- "http://en.wikipedia.org/wiki/List_of_countries_by_level_of_military_equipment"
hvalues <- readHTMLTable(theURL)

hvalues
## $`NULL`
## NULL
## 
## $`NULL`
##                                               Country
## 1                                         Total[1][2]
## 2                                      Afghanistan[3]
## 3                                       Albania[3][4]
## 4                                             Algeria
## 5                                              Angola
## 6                                 Antigua and Barbuda
## 7                                           Argentina
## 8                                          Armenia[6]
## 9                                           Australia
## 10                                         Austria[4]
## 11                                         Azerbaijan
## 12                           Bangladesh[8][9][10][11]
## 13                                         Bahrain[4]
## 14                                         Belarus[4]
## 15                                         Belgium[4]
## 16                                              Benin
## 17                                            Bolivia
## 18                             Bosnia and Herzegovina
## 19                                           Botswana
## 20                     Brazil[14][15][16][17][18][19]
## 21                                             Brunei
## 22                                        Bulgaria[4]
## 23                                       Burkina Faso
## 24                                        Myanmar[21]
## 25                                            Burundi
## 26                                           Cambodia
## 27                                           Cameroon
## 28                                      Canada[23][4]
## 29                                         Cape Verde
## 30                           Central African Republic
## 31                                               Chad
## 32                                              Chile
## 33                                       Colombia[26]
## 34                                      Cote d'Ivoire
## 35                                         Croatia[4]
## 36                                               Cuba
## 37                                             Cyprus
## 38                                  Czech Republic[4]
## 39                   Democratic Republic of the Congo
## 40                                         Denmark[4]
## 41                                           Djibouti
## 42                                 Dominican Republic
## 43                                            Ecuador
## 44                              Egypt[30][31][32][33]
## 45                                        El Salvador
## 46                                  Equatorial Guinea
## 47                                            Eritrea
## 48                                            Estonia
## 49                                           Ethiopia
## 50                                         Finland[4]
## 51                                      France[2][3]A
## 52                                         Georgia[6]
## 53                                         Germany[3]
## 54                                          Greece[4]
## 55                                          Guatemala
## 56                                              Haiti
## 57                                           Honduras
## 58                                         Hungary[4]
## 59                                            Iceland
## 60                       India[2][8][42][43][44][45]A
## 61                                          Indonesia
## 62                                       Iran[48][49]
## 63                                               Iraq
## 64                                            Ireland
## 65                                  Israel[2][51][52]
## 66                                Italy[3][4][53][54]
## 67                               Japan[4][56][57][58]
## 68                                             Jordan
## 69                                         Kazakhstan
## 70                                              Kenya
## 71                                               Laos
## 72                                             Latvia
## 73                                            Lebanon
## 74                                              Libya
## 75                                          Lithuania
## 76                                          Macedonia
## 77                                           Malaysia
## 78                                               Mali
## 79                                              Malta
## 80                                         Mauritania
## 81                                             Mexico
## 82                                           Mongolia
## 83                                    Morocco[66][67]
## 84                                              Nepal
## 85                            Netherlands[note 2][68]
## 86                                        New Zealand
## 87                                              Niger
## 88                                            Nigeria
## 89                               North Korea[71][72]A
## 90                                         Norway[75]
## 91                                               Oman
## 92              Pakistan[42][77][78][79][80][81][82]A
## 93                                           Paraguay
## 94                       People's Republic of China A
## 95                                               Peru
## 96                                        Philippines
## 97                                             Poland
## 98                                           Portugal
## 99                                           Qatar[4]
## 100                                           Romania
## 101 Russia[2][8][90][91][92][93][94][95][96][97][98]A
## 102                                            Rwanda
## 103                                 Saudi Arabia[100]
## 104                                            Serbia
## 105                                         Singapore
## 106                                          Slovakia
## 107                                          Slovenia
## 108                                      South Africa
## 109                    South Korea[42][102][103][104]
## 110                                             Spain
## 111                               Sri Lanka[107][108]
## 112                                             Sudan
## 113                                            Sweden
## 114                                       Switzerland
## 115                                        Syria[110]
## 116                                    Taiwan[note 3]
## 117                                          Tanzania
## 118                                          Thailand
## 119                                           Tunisia
## 120                                            Turkey
## 121                                      Turkmenistan
## 122                                            Uganda
## 123                                 Ukraine[114][115]
## 124                              United Arab Emirates
## 125                           United Kingdom[3][117]A
## 126               United States[2][8][119][120][121]A
## 127                                           Uruguay
## 128                                        Uzbekistan
## 129                                         Venezuela
## 130                                           Vietnam
## 131                                             Yemen
## 132                                            Zambia
## 133                                          Zimbabwe
##     Military budget (US$ BN) Main battle tanks Aircraft carriersC AWSD CrE
## 1                      1,531            88,603                 20  260  28
## 2                       11.5               600                  0    0   0
## 3                        0.5                                    0    0   0
## 4                       4.99             1,105                  0        0
## 5                          2               300                  0         
## 6                                                                         
## 7                        5.6            213[5]                  0        0
## 8                      0.405               110                  0        0
## 9                       26.9                59                  0    6   0
## 10                       1.8             56[7]                  0        0
## 11                       7.5               320                  0        0
## 12                      3.91               408                  0    0   0
## 13                                                                        
## 14                      0.47           515[12]                  0        0
## 15                       3.4            16[13]                  0        0
## 16                                                                        
## 17                      0.15                                    0        0
## 18                                                                        
## 19                                                                        
## 20                        27               581                  1    5   0
## 21                                                                        
## 22                       1.4            80[20]                  0         
## 23                                                                        
## 24                      7.07               800                  0         
## 25                                           0                  0        0
## 26                      0.11               100                  0        0
## 27                                       0[22]                  0        0
## 28                        21           181[24]                  0        0
## 29                                                                        
## 30                                                                        
## 31                                          60                  0         
## 32                      5.19           260[25]                  0    3   0
## 33                       3.3                                    0         
## 34                                                                        
## 35                      1.09                78                  0    2   0
## 36                       0.2           900[27]                  0        0
## 37                                     164[28]                            
## 38                      1.16           123[29]                  0         
## 39                       0.1                                    0         
## 40                       2.7                57                  0         
## 41                                                                        
## 42                                                              0         
## 43                      0.91               140                  0         
## 44                         5         2,497[34]                  0   11   0
## 45                                                                        
## 46                                                                        
## 47                      0.46               700                  0         
## 48                      0.44                                              
## 49                      0.29               400                  0         
## 50                      1.93           100[35]                  0         
## 51                   62.7465           254[36]                  1    8   0
## 52                     0.905               220                  0    0   0
## 53                        49           322[37]                  0        0
## 54                     10.39         1,462[38]                  0   15    
## 55                      0.12                                    0         
## 56                                           0                  0    0    
## 57                                                                        
## 58                      0.75           128[41]                  0         
## 59                    0.0037                 0                  0    0   0
## 60                     42.84         3274+[46]                  2   15   0
## 61                      8.01             0[47]                  0   87   0
## 62                        10         1663+[50]                  0   25   0
## 63                      17.9               357                  0    0   0
## 64                       1.6                 0                  0        0
## 65                        16             1,680                  0        0
## 66                      38.2           200[55]                  2    3   0
## 67                      51.4           777[59]                  0    6   0
## 68                      1.39         1,182[61]                  0         
## 69                                     300[62]                  0         
## 70                                     154[63]                  0         
## 71                      0.55                30                  0        0
## 72                      0.29                                              
## 73                      0.54               310                  0         
## 74                       1.3              1085                  0         
## 75                      0.65                                    0         
## 76                      0.23                31                  0    0   0
## 77                      4.69                64                  0         
## 78                                                                        
## 79                      0.05                 0                  0    0   0
## 80                                                                        
## 81                     10.07             0[64]                  0        0
## 82                      0.79           420[65]                  0        0
## 83                       4.1               871                  0         
## 84                       0.1                                    0         
## 85                      12.6         0(15)[69]                  0    3   0
## 86                     1.457                                         1    
## 87                                                                        
## 88                      0.73           276[70]                  0         
## 89                     6[73]         3,500[74]                  0    0    
## 90                       6.2            52[76]                  0         
## 91                                          93                  0         
## 92                       7.8         2,501[83]                  0        0
## 93                      0.13                                    0        0
## 94                     166.0         6,840[84]                  1   27   0
## 95                      0.82           240[86]                  0        1
## 96                       2.9                 0                  0   11   0
## 97                        12           893[87]                  0    5   0
## 98                       5.2           113[88]                  0    0   0
## 99                                                                        
## 100                      2.9           437[89]                  0         
## 101                    93.76        20,550[99]                  1   15   5
## 102                                                             0         
## 103                     39.2          918[101]                  0         
## 104                      1.4               272                  0         
## 105                     7.87               100                  0         
## 106                     0.91                20                  0    0    
## 107                     0.55                20                  0        0
## 108                      3.9               167                  0        0
## 109                     41.1        2,414[105]                  0   18   0
## 110                     25.5          327[106]                  1    2   0
## 111                     1.64               250                  0    0   0
## 112                     0.58               200                  0         
## 113                      6.7          132[109]                  0         
## 114                      4.1               224                  0        0
## 115                     1.85             3,500                  0         
## 116                     19.2          565[111]                  0         
## 117                                         96                  0         
## 118                     12.2          283[112]                  1    6   0
## 119                                                             0         
## 120                       25        2,504[113]                  0   34   0
## 121                                                             0         
## 122                      0.1                                    0         
## 123                     2.07         1110[116]                  0    1 (1)
## 124                                        436                  0         
## 125                     62.7          227[118]                  1    7   0
## 126                      682        5,838[122]                 10   30  22
## 127                     0.25                85                  0         
## 128                                                             0        0
## 129                        4          173[123]                  0        0
## 130                      6.2        1,270[124]                  0         
## 131                                   880[125]                  0         
## 132                     0.04                30                  0        0
## 133                     0.06                40                  0        0
##     DestroyersF FrigateG CorvetteH Missile boat/GunboatI0 Patrol boatI
## 1           180      562       320                  19/10          468
## 2             0        0         0                      0            0
## 3             0        0         0                      0           26
## 4             0        3         8                      0            0
## 5                                                       0             
## 6                                                       0             
## 7             0        4         9                      0             
## 8             0        0         0                      0             
## 9             3       12         0                      0           20
## 10            0        0         0                      0             
## 11            0        1         7                      0           40
## 12            0        6         4                      0           18
## 13                                                      0             
## 14            0        0         0                      0             
## 15            0        2         0                      0             
## 16                                                      0             
## 17            0        0         0                      0             
## 18                                                      0             
## 19                                                      0             
## 20            0        9         5                      0           35
## 21                                                      0             
## 22                     4         3                      0             
## 23                                                      0             
## 24                     5         2                      0             
## 25            0        0         0                      0             
## 26            0        0         0                      0             
## 27            0        0         0                      0             
## 28            3       12         5                      0           12
## 29                                                      0             
## 30                                                      0             
## 31                                                      0             
## 32            0        8         2                      0           32
## 33                     4                                             0
## 34                                                      0             
## 35            0        0         5                      0            4
## 36            0        0         1                      0            5
## 37                                                      0            4
## 38                                                      0             
## 39                                                      0             
## 40            0        7         0                      0            8
## 41                                                      0             
## 42                                                      0             
## 43                     2         6                      0             
## 44            1        8         2                      0           48
## 45                                                      0            3
## 46                                                      0             
## 47                                                      0             
## 48                                                      0            3
## 49                                                      0             
## 50                                                      0             
## 51            1       23        15                  1,000             
## 52            0        0         0                      0             
## 53            3       15         2                      0             
## 54               14 [39]                            19/10            6
## 55                                                      0             
## 56            0        0         0                      0             
## 57                                                      0             
## 58                                                      0             
## 59            0        0         0                      0            3
## 60            9       15        25                      0           46
## 61           25        7         6                     26           21
## 62            0        5         2                      0          127
## 63            0        0         0                      0           20
## 64            0        0         7                      0             
## 65            0        0         3                     11           50
## 66            4       12         8                      0             
## 67           10       36        24                      0             
## 68                                                      0             
## 69                                                      0             
## 70                                                      0             
## 71            0        0         0                      0            0
## 72                                                      0             
## 73                                                      0             
## 74                     1         3                      0             
## 75                               3                      0             
## 76            0        0         0                      0            0
## 77                     4         4                      0           26
## 78                                                      0             
## 79            0        0         0                      0            7
## 80                                                      0             
## 81            2        6         7                      0             
## 82            0        0         0                      0             
## 83            2        3         8                      0             
## 84                                                      0             
## 85            0        6         4                      0             
## 86                     2                                0            6
## 87                                                      0             
## 88                     3         2                      0             
## 89            0       13                                             0
## 90                     3                                0             
## 91                               2                      0             
## 92                    14         8                      0           28
## 93            0        0         0                      0             
## 94       20[85]       28        10                      0             
## 95            1        8                                0             
## 96            0        3        11                      0           59
## 97            0        2         4                      0             
## 98            0        5         7                      0           17
## 99                                                      0             
## 100                    3         4                      0             
## 101          14        5        70                      0             
## 102                                                     0             
## 103                    7         4                      0             
## 104                                                     0           15
## 105                    6         6                      0             
## 106                                                     0             
## 107           0        0         0                      0             
## 108           0        4         0                      0             
## 109          12       10        28                      0           83
## 110           0       10         0                      0             
## 111           0        0         3                      0             
## 112                                                     0             
## 113                              9                      0           22
## 114           0        0         0                      0             
## 115                    5         7                      0             
## 116           4       21                                0             
## 117                                                     0             
## 118           0       12         5                      0          209
## 119                                                     0             
## 120           0       25         9                      0           33
## 121                                                     0             
## 122                                                     0             
## 123                    2         1                      0             
## 124                                                     0             
## 125           6       13         4                      0           11
## 126          62       26         2                      0             
## 127                    3                                0             
## 128           0        0         0                      0             
## 129           0        6         0                      0             
## 130                    6         5                      0             
## 131                              2                      0             
## 132           0        0         0                      0            0
## 133           0        0         0                      0            0
##     Nuclear submarineJ SubmarineK Combat aircraftL Attack helicopterM
## 1                  134        356           28,600             10,588
## 2                    0          0                0                 65
## 3                    0          0               33                  0
## 4                    0          4              213                134
## 5                                               68                   
## 6                                                                    
## 7                    0          3               86                  5
## 8                    0          0               16                 33
## 9                    0          6               96                 22
## 10                   0          0               15                   
## 11                              0               57                 72
## 12                   0          0               63                  0
## 13                                                                   
## 14                   0          0              213                   
## 15                   0          0               69                   
## 16                                                                   
## 17                   0          0               20                   
## 18                                                                   
## 19                                                                   
## 20                   0          7              223                 13
## 21                                                                   
## 22                              1               88                   
## 23                                                                   
## 24                                             128                100
## 25                   0          0                0                   
## 26                   0          0                                    
## 27                   0          0               56                   
## 28                   0          1              100                  0
## 29                                                                   
## 30                                                                   
## 31                                               6                   
## 32                   0          4               68                   
## 33                              4               42                   
## 34                                                                   
## 35                   0          0               10                  0
## 36                   0          0              230                 18
## 37                                                                 15
## 38                                              31                   
## 39                                                                   
## 40                                              48                   
## 41                                                                   
## 42                                                                   
## 43                              2                                    
## 44                   0          4              900                150
## 45                                                                  0
## 46                                                                   
## 47                                              60                 21
## 48                                                                   
## 49                                              48                   
## 50                                              63                   
## 51                  10          0              306                 36
## 52                   0          0               55                 41
## 53                   0          4              423                 80
## 54                             11              308             31[40]
## 55                                              10                   
## 56                   0          0                0                  0
## 57                                                                   
## 58                                              34                 49
## 59                   0          0                0                  0
## 60                   2         13            1,080                140
## 61                   0          5               89                 50
## 62                             28              407                100
## 63                   0          0               15                 30
## 64                   0          0                0                   
## 65                   0          6              420                 80
## 66                   0          6              320                 60
## 67                   0         16              374                   
## 68                                             101                   
## 69                                             181                   
## 70                                              15                   
## 71                   0          0               25                 10
## 72                                                                   
## 73                                              15                   
## 74                              3              385                235
## 75                                               2                   
## 76                   0          0                0                  8
## 77                              2               44                   
## 78                                                                   
## 79                   0          0                0                  0
## 80                                                                   
## 81                   0          0               58                   
## 82                   0          0               84                 52
## 83                                             102                   
## 84                                               0                   
## 85                   0          4              113                 29
## 86                                                                   
## 87                                                                   
## 88                                              33                   
## 89                             70              661                   
## 90                              6               57                   
## 91                                              34                   
## 92                   0          8              502                 73
## 93                   0          0                                    
## 94                   8         35            1,500                150
## 95                              6               67                   
## 96                   0          0               55                 33
## 97                   0          5              112                 61
## 98                   0          2               36                  0
## 99                                                                   
## 100                             1               48                 23
## 101                 33         17            1,900              1,655
## 102                                                                  
## 103                                            287                  0
## 104                                             80                 30
## 105                             4              119                 28
## 106                                             12                   
## 107                  0          0                0                   
## 108                  0          3               43                 11
## 109                  0         18              458                  0
## 110                  0          4              151                   
## 111                  0          0               32                   
## 112                                             72                   
## 113                             5              138                   
## 114                  0          0               87                   
## 115                             3              335                   
## 116                             4              360                   
## 117                             0                                    
## 118                  0          0              543                154
## 119                                             56                   
## 120                  0         13              465                 36
## 121                                             83                   
## 122                                                                  
## 123                                            188                   
## 124                                             80                   
## 125                 11          0              222                153
## 126                 71          2            3,318              6,417
## 127                                             28                   
## 128                  0          0              119                   
## 129                  0          2               76                   
## 130                             3              189                   
## 131                                            168                   
## 132                  0          0               46                  6
## 133                  0          0               11                  8
##     Nuclear weaponsN
## 1             22,600
## 2                  0
## 3                  0
## 4                  0
## 5                  0
## 6                  0
## 7                 TC
## 8                  0
## 9                  0
## 10                 0
## 11                 0
## 12                 0
## 13                 0
## 14                 0
## 15       NATO shared
## 16                 0
## 17                 0
## 18                 0
## 19                 0
## 20                TC
## 21                  
## 22                 0
## 23                 0
## 24                TC
## 25                 0
## 26                 0
## 27                 0
## 28                 0
## 29                 0
## 30                 0
## 31                 0
## 32                 0
## 33                 0
## 34                 0
## 35                 0
## 36                 0
## 37                 0
## 38                 0
## 39                 0
## 40                 0
## 41                 0
## 42                 0
## 43                 0
## 44                 0
## 45                 0
## 46                 0
## 47                 0
## 48                 0
## 49                 0
## 50                 0
## 51               300
## 52                  
## 53       NATO shared
## 54                 0
## 55                 0
## 56                 0
## 57                 0
## 58                 0
## 59                 0
## 60            90-110
## 61                  
## 62                 0
## 63                 0
## 64                 0
## 65     50 +?[note 1]
## 66       NATO shared
## 67            TC[60]
## 68                 0
## 69                 0
## 70                 0
## 71                 0
## 72                 0
## 73                 0
## 74                  
## 75                 0
## 76                 0
## 77                 0
## 78                 0
## 79                 0
## 80                 0
## 81                TC
## 82                 0
## 83                 0
## 84                 0
## 85       NATO shared
## 86                 0
## 87                 0
## 88                 0
## 89               1-9
## 90                 0
## 91                 0
## 92        90-110[82]
## 93                 0
## 94               240
## 95                 0
## 96                 0
## 97                TC
## 98                 0
## 99                 0
## 100                0
## 101            8,500
## 102                0
## 103                 
## 104                0
## 105                0
## 106                0
## 107                0
## 108                0
## 109               TC
## 110                0
## 111                0
## 112                0
## 113                0
## 114                0
## 115                0
## 116                0
## 117                0
## 118                0
## 119                0
## 120      NATO shared
## 121                0
## 122                0
## 123                0
## 124                0
## 125              225
## 126            7,700
## 127                0
## 128                0
## 129                0
## 130                0
## 131                0
## 132                0
## 133                0
## 
## $`NULL`
##    Rank                                            Country   Fighters
## 1     1                      United States (USAF, US Navy) 2,407[132]
## 2     2 Russia (Russian Air Force, Russian Naval Aviation)   862[133]
## 3     3                              China (PLAAF, PLANAF)   922[134]
## 4     4     India (Indian Air Force, Indian Naval Air Arm)   646[135]
## 5     5                                        North Korea   484[136]
## 6     6                                              Egypt   450[137]
## 7     7                                        South Korea   468[139]
## 8     8                                           Pakistan   431[140]
## 9     9                                             Israel   426[141]
## 10   10                                              Japan   380[142]
##     Bombers   Attack Total
## 1  162[132] 343[132] 2,912
## 2  181[133] 548[133] 1,591
## 3  160[134] 276[134] 1,358
## 4           227[135]   873
## 5   40[136] 154[136]   678
## 6            26[138]   496
## 7                      488
## 8                      483
## 9                      426
## 10                     380
## 
## $`NULL`
## NULL
## 
## $`NULL`
##                                                                                                V1
## 1                                              v\nt\ne\n\nLists of countries by military rankings
## 2                                                                                                
## 3                                                                                        Strength
## 4                                                                                                
## 5                                                                                         Finance
## 6                                                                                                
## 7                                                                                    Peacekeeping
## 8                                                                                                
## 9 List of international rankings\nList of top international rankings by country\nLists by country
##                                                                                                      V2
## 1                                                                                                  <NA>
## 2                                                                                                  <NA>
## 3 Military and paramilitary personnel\nMilitary equipment\nAircraft carriers\nWarships\nNuclear weapons
## 4                                                                                                  <NA>
## 5                        Arms exports\nArms imports\nMilitary budget (per capita)\nMilitarization index
## 6                                                                                                  <NA>
## 7                                           Global Peace Index\nGlobal Terrorism Index\nUN peacekeepers
## 8                                                                                                  <NA>
## 9                                                                                                  <NA>
## 
## $`NULL`
##                                                                                                V1
## 1                                                                                                
## 2                                                                                        Strength
## 3                                                                                                
## 4                                                                                         Finance
## 5                                                                                                
## 6                                                                                    Peacekeeping
## 7                                                                                                
## 8 List of international rankings\nList of top international rankings by country\nLists by country
##                                                                                                      V2
## 1                                                                                                  <NA>
## 2 Military and paramilitary personnel\nMilitary equipment\nAircraft carriers\nWarships\nNuclear weapons
## 3                                                                                                  <NA>
## 4                        Arms exports\nArms imports\nMilitary budget (per capita)\nMilitarization index
## 5                                                                                                  <NA>
## 6                                           Global Peace Index\nGlobal Terrorism Index\nUN peacekeepers
## 7                                                                                                  <NA>
## 8                                                                                                  <NA>