Returns a data frame with available entities (countries and country groups) in the WEO database.
Value
A data frame with columns:
- entity_id
ISO3 country code or country group ID
- entity_name
Full name of the country or country group
Examples
# \donttest{
# List all countries and regions
weo_get_entities()
#> # A tibble: 210 × 2
#> entity_id entity_name
#> <chr> <chr>
#> 1 510 ASEAN-5
#> 2 110 Advanced Economies
#> 3 AFG Afghanistan, Islamic Republic of
#> 4 ALB Albania
#> 5 DZA Algeria
#> 6 AND Andorra, Principality of
#> 7 AGO Angola
#> 8 ATG Antigua and Barbuda
#> 9 ARG Argentina
#> 10 ARM Armenia, Republic of
#> # ℹ 200 more rows
# }