Convert ISO3 country codes to country names
iso3_to_name.Rd
This function converts ISO3 country codes to country names in a specified language.
Details
The function uses a reference data frame country_ref
that contains ISO3
codes and their corresponding country names in multiple languages. The
data come from the countries
package.
Examples
iso3_to_name(c("USA", "FRA", "DEU"))
#> [1] "United States of America" "France"
#> [3] "Germany"