I am trying to download and extract a .csv file from a webpage using R.
This question is a duplicate of Using R to download zipped data file, extrac
The Word Bank Developmet Indictors can be obtained using the WDI package. For example,
library(WDI) inds <- WDIsearch(field = "indicator")[, 1] GB <- WDI("GB", indicator = inds)
See WDIsearch and WDI functions and the rerference manual for more info.