Answers for "how to link world bank data into r"

R
0

how to link world bank data into r

WDI::WDI(country = "all", indicator = "FR.INR.DPST", start = 1960, end = 2025,
...)
#Country Argument takes ISO-2 char codes, e.g. "BR", "US", "CA")

#Use countrycode function to convert countrynames to ISO-2 char codes
countrycode::countrycode(sourcevar = c("United Kingdom", "Malaysia"),
                         origin = "country.name", destination = "iso2c")
Posted by: Guest on February-06-2022

Code answers related to "how to link world bank data into r"

Browse Popular Code Answers by Language